diff options
author | obrien <obrien@FreeBSD.org> | 2002-05-15 21:59:46 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-05-15 21:59:46 +0000 |
commit | ce1704f4f05da18f778e1feb459ebec6d3fa474a (patch) | |
tree | 49d74aae1de56c7757a7f36480607ee5ee45df70 | |
parent | c053d9aa3982855c2f4ddc9c4b1fc69f4c7909ba (diff) | |
download | FreeBSD-src-ce1704f4f05da18f778e1feb459ebec6d3fa474a.zip FreeBSD-src-ce1704f4f05da18f778e1feb459ebec6d3fa474a.tar.gz |
The IA-64 config needs to know that we are using GNU ld & as.
Submitted by: peter
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index b70baf2..9d1a9f6 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -142,6 +142,9 @@ tconfig.h: echo 'union tree_node;' >> ${.TARGET} echo 'typedef union tree_node *tree;' >> ${.TARGET} echo '' >> ${.TARGET} +.if ${TARGET_ARCH} == "ia64" + echo '#define TARGET_CPU_DEFAULT (MASK_GNU_AS|MASK_GNU_LD)' >>${.TARGET} +.endif echo '#include "ansidecl.h"' >> ${.TARGET} echo '#include "${GCC_CPU}/${GCC_CPU}.h"' >> ${.TARGET} .if ${TARGET_ARCH} == "i386" |