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.
This commit is contained in:
Ruslan Ermilov 2002-05-16 15:18:13 +00:00
parent f2603ec30c
commit 2898afe627
2 changed files with 7 additions and 0 deletions

View File

@ -19,6 +19,10 @@ CFLAGS+= -I.
CFLAGS+= -static -DGENERATOR_FILE
.if defined(BOOTSTRAPPING)
CFLAGS+= -DBOOTSTRAPPING
.endif
#-----------------------------------------------------------------------
# insn-* gunk

View File

@ -97,7 +97,10 @@
/* #undef HAVE___ARGZ_STRINGIFY */
/* Define if you have the atoll function. */
#ifndef BOOTSTRAPPING
/* FreeBSD didn't always have atoll(3). */
#define HAVE_ATOLL 1
#endif
/* Define if you have the atoq function. */
/* #undef HAVE_ATOQ */