Mercurial > emacs
changeset 61753:d555a0a5114c
(LD_SWITCH_MACHINE) [LINUX]: Don't define.
(START_FILES, LIB_STANDARD) [LINUX && _ARCH_PPC64]: Override to
use lib64 instead of lib.
(_LP64) [_ARCH_PPC64]: Define if not defined.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sat, 23 Apr 2005 15:58:32 +0000 |
parents | 46c54dc8b647 |
children | f42e4c7a924d |
files | src/m/macppc.h |
diffstat | 1 files changed, 12 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/m/macppc.h Sat Apr 23 15:50:24 2005 +0000 +++ b/src/m/macppc.h Sat Apr 23 15:58:32 2005 +0000 @@ -86,11 +86,16 @@ #ifdef LINUX #define LINKER $(CC) -nostdlib -#define LD_SWITCH_MACHINE -Xlinker -m -Xlinker elf32ppc /* s/gnu-linux.h defines this to `-z nocombreloc' which does not work here because prefix-args is not used. */ #undef LD_SWITCH_SYSTEM_TEMACS #define LD_SWITCH_MACHINE_TEMACS -Xlinker -znocombreloc +#ifdef _ARCH_PPC64 +#undef START_FILES +#define START_FILES pre-crt0.o /usr/lib64/crt1.o /usr/lib64/crti.o +#undef LIB_STANDARD +#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib64/crtn.o +#endif #endif #if 0 /* This breaks things on PPC GNU/Linux ecept for Yellowdog, @@ -105,5 +110,11 @@ #endif #endif /* 0 */ +#ifdef _ARCH_PPC64 +#ifndef _LP64 +#define _LP64 +#endif +#endif + /* arch-tag: 41913e4e-e7d1-4023-aadb-210cc31712ed (do not change this comment) */