xref: /haiku/src/system/kernel/arch/x86/arch_elf_compat.cpp (revision 17889a8c70dbb3d59c1412f6431968753c767bab)
1 /*
2  * Copyright 2018, Jérôme Duval, jerome.duval@gmail.com.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 /*!	Contains the ELF compat loader */
7 
8 
9 //#define TRACE_ARCH_ELF
10 #define ELF32_COMPAT 1
11 
12 
13 #define arch_elf_relocate_rel arch_elf32_relocate_rel
14 #define arch_elf_relocate_rela arch_elf32_relocate_rela
15 #define elf_resolve_symbol elf32_resolve_symbol
16 
17 
18 #include "arch_elf.cpp"
19