author | Camm Maguire <camm@debian.org> | 2014年09月03日 11:29:32 -0400 |
---|---|---|
committer | Camm Maguire <camm@debian.org> | 2014年09月03日 11:29:32 -0400 |
commit | 369fd3cdff3a5bfdc2432ea3a98dad25345fc45c (patch) | |
tree | 2f09c5dbdf77ccbdd5f19d7fc839ef845dd8fbdc | |
parent | 8640f8fb8a5f82b14004a17e6f5a46c7f42b8596 (diff) | |
download | gcl-369fd3cdff3a5bfdc2432ea3a98dad25345fc45c.tar.gz |
-rw-r--r-- | gcl/h/powerpc-linux.h | 5 |
diff --git a/gcl/h/powerpc-linux.h b/gcl/h/powerpc-linux.h index 467c5f737..3e2e4a4f5 100644 --- a/gcl/h/powerpc-linux.h +++ b/gcl/h/powerpc-linux.h @@ -19,8 +19,13 @@ #if SIZEOF_LONG == 4 #define RELOC_H "elf32_ppc_reloc.h" #else +#ifdef WORDS_BIGENDIAN #define RELOC_H "elf64_ppc_reloc.h" #define SPECIAL_RELOC_H "elf64_ppc_reloc_special.h" +#else +#define RELOC_H "elf64_ppcle_reloc.h" +#define SPECIAL_RELOC_H "elf64_ppcle_reloc_special.h" +#endif #define STATIC_FUNCTION_POINTERS #define C_GC_OFFSET 4 #endif |