diff options
author | ru <ru@FreeBSD.org> | 2002-05-16 15:18:13 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2002-05-16 15:18:13 +0000 |
commit | e55e9be036b7289cec34e3d9019c6c84bafc2632 (patch) | |
tree | 38291e4ff2f62dbf54aec664db53a45b58a4f2f0 /gnu/usr.bin/cc/cc_tools/Makefile | |
parent | 387caab142b0cffdca95f2e50becb797de13d91c (diff) | |
download | FreeBSD-src-e55e9be036b7289cec34e3d9019c6c84bafc2632.zip FreeBSD-src-e55e9be036b7289cec34e3d9019c6c84bafc2632.tar.gz |
Make it possible to build a cross compiler for alpha,
ia64 and sparc64 on systems that do not have atoll(3).
The "cross" here doesn't necessarily mean cross-arch.
Diffstat (limited to 'gnu/usr.bin/cc/cc_tools/Makefile')
-rw-r--r-- | gnu/usr.bin/cc/cc_tools/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/usr.bin/cc/cc_tools/Makefile b/gnu/usr.bin/cc/cc_tools/Makefile index 22bb6f9..5152220 100644 --- a/gnu/usr.bin/cc/cc_tools/Makefile +++ b/gnu/usr.bin/cc/cc_tools/Makefile @@ -19,6 +19,10 @@ CFLAGS+= -I. CFLAGS+= -static -DGENERATOR_FILE +.if defined(BOOTSTRAPPING) +CFLAGS+= -DBOOTSTRAPPING +.endif + #----------------------------------------------------------------------- # insn-* gunk |