diff options
author | tijl <tijl@FreeBSD.org> | 2011-01-07 22:57:31 +0000 |
---|---|---|
committer | tijl <tijl@FreeBSD.org> | 2011-01-07 22:57:31 +0000 |
commit | 69f949273755bd7b19128d343d3b8312d044a102 (patch) | |
tree | 78a50239e3dcb3a14e744207803113620dde2dc4 /gnu | |
parent | b7f688f9ee40cf29354333f91eb9a073ca07f786 (diff) | |
download | FreeBSD-src-69f949273755bd7b19128d343d3b8312d044a102.zip FreeBSD-src-69f949273755bd7b19128d343d3b8312d044a102.tar.gz |
Remove unused support for 64 bit long on 32 bit architectures.
It was used mainly to discover and fix some 64-bit portability problems
before 64-bit arches were widely available.
Discussed with: bde
Approved by: kib (mentor)
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/usr.bin/cc/Makefile.inc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/gnu/usr.bin/cc/Makefile.inc b/gnu/usr.bin/cc/Makefile.inc index a42609a..b97261a 100644 --- a/gnu/usr.bin/cc/Makefile.inc +++ b/gnu/usr.bin/cc/Makefile.inc @@ -22,12 +22,6 @@ CFLAGS+= -DPREFIX=\"${TOOLS_PREFIX}/usr\" #CFLAGS+= -DWANT_COMPILER_INVARIANTS CSTD?= gnu89 -# If building 64-bit longs for the i386, "_LARGE_LONG" should also be defined -# to get the proper sizes in limits.h -.if defined(LONG_TYPE_SIZE) -CFLAGS+= -DLONG_TYPE_SIZE=${LONG_TYPE_SIZE} -.endif - .if ${TARGET_ARCH} != ${MACHINE_ARCH} CFLAGS+= -DCROSS_COMPILE .endif |