summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/include/asm/elf.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sandbox/include/asm/elf.h')
-rw-r--r--arch/sandbox/include/asm/elf.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/arch/sandbox/include/asm/elf.h b/arch/sandbox/include/asm/elf.h
index b60d24890c..3939336ccb 100644
--- a/arch/sandbox/include/asm/elf.h
+++ b/arch/sandbox/include/asm/elf.h
@@ -1,2 +1,11 @@
+#ifndef __ASM_SANDBOX_ELF_H__
+#define __ASM_SANDBOX_ELF_H__
-/* nothing yet */
+#if __SIZEOF_POINTER__ == 8
+#define ELF_CLASS ELFCLASS64
+#define CONFIG_PHYS_ADDR_T_64BIT
+#else
+#define ELF_CLASS ELFCLASS32
+#endif
+
+#endif /* __ASM_SANDBOX_ELF_H__ */