summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/include/asm/elf.h
blob: 3939336ccba49f9f15d00e2c5c518b33f78f2f5e (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __ASM_SANDBOX_ELF_H__
#define __ASM_SANDBOX_ELF_H__

#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__ */