Do section relocation in architecture backend
This commit is contained in:
5
libtcc.c
5
libtcc.c
@ -41,18 +41,23 @@ ST_DATA struct TCCState *tcc_state;
|
||||
#include "tccrun.c"
|
||||
#ifdef TCC_TARGET_I386
|
||||
#include "i386-gen.c"
|
||||
#include "i386-link.c"
|
||||
#endif
|
||||
#ifdef TCC_TARGET_ARM
|
||||
#include "arm-gen.c"
|
||||
#include "arm-link.c"
|
||||
#endif
|
||||
#ifdef TCC_TARGET_ARM64
|
||||
#include "arm64-gen.c"
|
||||
#include "arm64-link.c"
|
||||
#endif
|
||||
#ifdef TCC_TARGET_C67
|
||||
#include "c67-gen.c"
|
||||
#include "c67-link.c"
|
||||
#endif
|
||||
#ifdef TCC_TARGET_X86_64
|
||||
#include "x86_64-gen.c"
|
||||
#include "x86_64-link.c"
|
||||
#endif
|
||||
#ifdef CONFIG_TCC_ASM
|
||||
#include "tccasm.c"
|
||||
|
||||
Reference in New Issue
Block a user