HACKS revision 1.82
11.82Schristos# $NetBSD: HACKS,v 1.82 2006/07/31 17:10:57 christos Exp $
21.1Slukem#
31.1Slukem# This file is intended to document workarounds for currently unsolved
41.1Slukem# (mostly) compiler bugs.
51.1Slukem#
61.1Slukem# Format:
71.1Slukem#   hack		title
81.1Slukem#   cdate		creation date
91.1Slukem#   mdate		mod date
101.1Slukem#   who			responsible developer
111.1Slukem#   port		...
121.1Slukem#  	  affected ports, space separated, if not "all"
131.1Slukem#   file		affected file : revision : line from : line to
141.1Slukem#  	  affected files and revision and line numbers describing hack
151.1Slukem#  	  multiple lines if necessary.
161.1Slukem#   pr			NNNN ...
171.1Slukem#  	  problem reports this hack works around, if known. Space
181.1Slukem#  	  separated.
191.1Slukem#   regress		src/regress/directory/where/test/found
201.1Slukem#  	  regression test directories, if available.
211.1Slukem#   descr
221.1Slukem#  	  insert short informal description (multi-line). (Longer ones
231.1Slukem#  	  should be in the PR database. More formal descriptions might
241.1Slukem#  	  be in the regress tree. See above).
251.1Slukem#   kcah
261.1Slukem#  	  closing bracket.
271.1Slukem#
281.1Slukem# this is a comment.
291.1Slukem
301.1Slukemhack	netstat ieee1394 address printing.
311.1Slukemmdate	14 Nov 2000
321.1Slukemwho	matt
331.1Slukemfile	lib/libc/net/getnameinfo.c	: 1.32 : 497 : 503
341.1Slukemdescr
351.1Slukem	Because the current implementation of IP over IEEE1394, the
361.1Slukem	fw device address contains more than just the IEEE1394 EUI-64.
371.1Slukem	So when printing out IEEE1394 addresses, ignore the extra stuff.
381.1Slukemkcah
391.1Slukem
401.1Slukemhack	xterm vs. libterm
411.1Slukemmdate	01 Aug 2000
421.1Slukemwho	jdc
431.1Slukemfile	xsrc/xc/programs/xterm/main.c	: 1.2 : 3609 : 3614
441.1Slukempr	10383
451.1Slukemdescr
461.1Slukem	In order to extend the termcap string over 1023 bytes, a ZZ entry was
471.1Slukem	introduced to point to a memory location containing the full entry.
481.1Slukem	Without this hack, xterm will export a termcap containing the ZZ
491.1Slukem	entry, which will then be ignored by libterm.  As xterm modifies the
501.1Slukem	exported termcap, this would cause those modifications to be ignored.
511.1Slukemkcah
521.1Slukem
531.1Slukemhack	wi-at-big-endian-bus
541.1Slukemcdate	15 Mar 2002
551.1Slukemwho	martin
561.1Slukemfile	dev/ic/wireg.h
571.1Slukemdescr	Add an option to access the underlying bus in big endian byte order
581.1Slukem	to work around deficiencies in bus_space_{read,write}_* macros.
591.1Slukem	Those don't allow the implementation of a proper pcmcia bus space
601.1Slukem	tag.
611.1Slukemkcah
621.1Slukem
631.3Sjdchack	specific knowledge of colours in curses code
641.3Sjdccdate	Sun Apr  6 11:05:24 BST 2003
651.3Sjdcwho	jdc
661.3Sjdcfile	lib/libcurses/color.c : r1.24
671.3Sjdcdescr
681.3Sjdc	Swap red/blue and yellow/cyan colours for COLOR_OTHER.
691.3Sjdc	Fix is to enhance libtermcap to understand terminfo-style % sequences.
701.3Sjdc	See also:
711.5Ssalo	    http://mail-index.NetBSD.org/tech-userlevel/2003/04/06/0000.html
721.4Sscwkcah
731.4Sscw
741.7Shehack	Compensation for differing types of LINUX_USRSTACK and USRSTACK
751.7Shecdate	21 Aug 2003
761.7Shewho	he
771.7Shefile	sys/miscfs/procfs/procfs_linux.c : 1.14
781.7Shedescr
791.7She	Not all ports have LINUX_USRSTACK and/or USRSTACK defined as
801.7She	literals/constants, but refer to variables of a type which is
811.7She	not "unsigned long", causing compilation of procfs_linux.c to
821.7She	fail with "makes integer from pointer without a cast".  This
831.7She	is observed on e.g. the sun3 port.  Ideally the "types" for
841.7She	symbols should be consistent across all ports.
851.25Smrgkcah
861.25Smrg
871.25Smrghack	GCC2 isn't C99
881.25Smrgcdate	5 December 2003
891.25Smrgwho	mrg
901.25Smrgfile	gnu/dist/binutils/ld/ldlex.c: r1.2
911.25Smrgdescr
921.25Smrg	ldlex.c is generated from ldlex.l and we get macro redefinition
931.25Smrg	errors from it if __STDC_VERSION__ is not C99 compliant.  This
941.25Smrg	hack forces NetBSD 1.6 and later systems to also include <stdint.h>
951.25Smrg	to get the relevant definitions.  This hack should be backed out
961.25Smrg	when all platforms have switched away from GCC2.
971.11Slukemkcah
981.11Slukem
991.37Sjunyounghack	gcc-strict-aliasing
1001.37Sjunyoungcdate	6 August 2004
1011.37Sjunyoungwho	junyoung
1021.37Sjunyoungpr	26516
1031.37Sjunyoungfile	src/usr.sbin/racoon/racoon/Makefile : 1.21
1041.37Sjunyoungdescr
1051.37Sjunyoung	GCC issues a warning "dereferencing type-punned pointer will break
1061.37Sjunyoung	strict-aliasing rules" when compiling
1071.37Sjunyoung	crypto/dist/kame/racoon/crypto/openssl.c with -O[23s]. Note that this
1081.38Sjunyoung	is due to use of type casting in a non-standard way in the code and
1091.38Sjunyoung	not a compiler bug. Once a new release of KAME with a proper fix
1101.38Sjunyoung	applied is imported this should be backed out.
1111.37Sjunyoungkcah
1121.37Sjunyoung
1131.62Shehack	gcc 3.3.3 wrong uninitialised variable
1141.62Shemdate	12 May 2006
1151.62Shewho	he
1161.62Shefile	usr.bin/msgc/msg_sys.def : 1.33-1.34
1171.63Shefile	distrib/utils/sysinst/aout2elf.c : 1.11
1181.62Shedescr
1191.62She	Gcc 3.3.3 gets some -Wuninitialized warnings wrong.  This is
1201.62She	just one of many in the tree, marked with
1211.62She	/* XXX -Wuninitialized [arch] */
1221.62She	in the source.
1231.62Shekcah
1241.62She
1251.80Stsutsuihack	gcc4 wrong uninitialized variable
1261.58Smrgmdate	10 May 2006
1271.58Smrgwho	mrg
1281.58Smrgfile	bin/ksh/eval.c			: 1.6
1291.58Smrgfile	bin/sh/histedit.c		: 1.39
1301.58Smrgfile	bin/sh/parser.c			: 1.60
1311.58Smrgfile	bin/systrace/systrace.c		: 1.33
1321.58Smrgfile	crypto/dist/heimdal/kdc/524.c	: 1.10
1331.58Smrgfile	crypto/dist/ssh/sftp.c		: 1.20
1341.58Smrgfile	crypto/dist/ssh/ssh-keysign.c	: 1.11
1351.58Smrgfile	dist/ipf/lib/hostname.c		: 1.2
1361.58Smrgfile	dist/ipf/tools/ipmon.c		: 1.8
1371.72Smrgfile	dist/ntp/ntpd/ntp_request.c	: 1.4
1381.58Smrgfile	dist/ntp/ntpd/refclock_shm.c	: 1.4
1391.58Smrgfile	dist/ntp/sntp/timing.c		: 1.3
1401.58Smrgfile	dist/pppd/pppstats/pppstats.c	: 1.3
1411.58Smrgfile	dist/smbfs/lib/smb/rap.c	: 1.6
1421.58Smrgfile	dist/tcpdump/print-zephyr.c	: 1.5
1431.68Smrgfile	distrib/utils/sysinst/aout2elf.c : 1.12
1441.58Smrgfile	gnu/libexec/uucp/uucico/uucico.c : 1.6
1451.58Smrgfile	lib/libc/citrus/citrus_csmapper.c : 1.6
1461.58Smrgfile	lib/libc/citrus/citrus_pivot_factory.c : 1.5
1471.58Smrgfile	lib/libc/inet/inet_cidr_ntop.c	: 1.3
1481.58Smrgfile	lib/libc/inet/inet_ntop.c	: 1.3
1491.58Smrgfile	lib/libc/stdio/vfwprintf.c	: 1.8
1501.69Smrgfile	libexec/ld.elf_so/arch/m68k/mdreloc.c : 1.20
1511.76Smrgfile	libexec/ld.elf_so/arch/powerpc/ppc_reloc.c : 1.40
1521.74Smrgfile	libexec/ld.elf_so/arch/sh3/mdreloc.c : 1.22
1531.69Smrgfile	libexec/ld.elf_so/arch/sparc/mdreloc.c : 1.39
1541.58Smrgfile	libexec/ld.elf_so/arch/sparc64/mdreloc.c : 1.39
1551.74Smrgfile	libexec/ld.elf_so/arch/vax/mdreloc.c	: 1.21
1561.71Sdanfile	libexec/ld.elf_so/arch/x86_64/mdreloc.c	: 1.27
1571.58Smrgfile	sbin/fsck_ext2fs/dir.c		: 1.19
1581.58Smrgfile	sbin/routed/rtquery/rtquery.c	: 1.18
1591.73Sdanfile	sys/arch/amd64/amd64/pmap.c	: 1.26
1601.79Smrgfile	sys/arch/i386/pci/piixpcib.c	: 1.4
1611.80Stsutsuifile	sys/arch/m68k/m68k/pmap_motorola.c	: 1.4
1621.58Smrgfile	sys/crypto/cast128/cast128.c	: 1.9
1631.58Smrgfile	sys/ddb/db_command.c		: 1.86
1641.68Smrgfile	sys/dev/cardbus/cardbus_map.c	: 1.21
1651.58Smrgfile	sys/dev/fss.c			: 1.25
1661.69Smrgfile	sys/dev/ic/igsfb.c		: 1.39
1671.68Smrgfile	sys/dev/ic/mb86950.c		: 1.5
1681.58Smrgfile	sys/dev/ic/midway.c		: 1.71
1691.68Smrgfile	sys/dev/kttcp.c			: 1.18
1701.68Smrgfile	sys/dev/rasops/rasops_bitops.h	: 1.9
1711.68Smrgfile	sys/dev/pci/cmpci.c		: 1.31
1721.58Smrgfile	sys/dev/pci/machfb.c		: 1.45
1731.68Smrgfile	sys/dev/usb/ohci.c		: 1.174
1741.68Smrgfile	sys/dev/usb/uhci.c		: 1.196
1751.68Smrgfile	sys/dev/rasops/rasops_bitops.h	: 1.9
1761.58Smrgfile	sys/dist/ipf/netinet/ip_nat.c	: 1.10
1771.58Smrgfile	sys/dist/ipf/netinet/ip_rpcb_pxy.c : 1.8
1781.58Smrgfile	sys/dist/pf/net/pf.c		: 1.22
1791.59Smrgfile	sys/fs/udf/udf_vnops.c		: 1.4
1801.58Smrgfile	sys/kern/kern_sig.c		: 1.219
1811.58Smrgfile	sys/kern/tty.c			: 1.181
1821.58Smrgfile	sys/net/bpf.c			: 1.116
1831.58Smrgfile	sys/net/zlib.c			: 1.26
1841.68Smrgfile	sys/netccitt/if_x25subr.c	: 1.37
1851.58Smrgfile	sys/netinet/in.c		: 1.107
1861.58Smrgfile	sys/netsmb/smb_smb.c		: 1.27
1871.58Smrgfile	sys/netsmb/smb_trantcp.c	: 1.22
1881.58Smrgfile	sys/nfs/nfs_serv.c		: 1.108
1891.58Smrgfile	sys/nfs/nfs_socket.c		: 1.129
1901.58Smrgfile	sys/nfs/nfs_syscalls.c		: 1.91
1911.58Smrgfile	sys/ufs/lfs/lfs_vfsops.c	: 1.207 [also (char *)]
1921.58Smrgfile	usr.bin/ftp/ftp.c		: 1.140
1931.58Smrgfile	usr.bin/find/function.c		: 1.54
1941.58Smrgfile	usr.bin/mail/tty.c		: 1.20
1951.58Smrgfile	usr.bin/nl/nl.c			: 1.7
1961.58Smrgfile	usr.bin/systat/keyboard.c	: 1.23
1971.58Smrgfile	usr.bin/usbhidctl/usbhid.c	: 1.29
1981.58Smrgfile	usr.bin/vi/cl/cl_read.c		: 1.5
1991.58Smrgfile	usr.bin/vi/ex/ex_cscope.c	: 1.12
2001.58Smrgfile	usr.bin/vi/ex/ex_tag.c		: 1.19
2011.58Smrgfile	usr.bin/vi/vi/v_txt.c		: 1.15
2021.58Smrgfile	usr.sbin/altq/altqstat/qdisc_rio.c : 1.4
2031.58Smrgfile	usr.sbin/cron/do_command.c	: 1.19
2041.58Smrgfile	usr.sbin/timed/timed/slave.c	: 1.15
2051.58Smrgdescr
2061.58Smrg	GCC 4.1 gets many uninitialised variable warnings wrong.  We should
2071.58Smrg	really audit all the old hacks like this when older compilers are
2081.58Smrg	removed from the tree, as many are probably no longer required.
2091.65Schristos	The problem is that it does not recognize initialization via function
2101.65Schristos	call pointer. I.e.
2111.65Schristos		int p;
2121.65Schristos		foo(&p);
2131.65Schristos	does not mark p as initialized.
2141.58Smrgkcah
2151.58Smrg
2161.59Smrghack	gcc4 pointer sign and strict aliasing problems
2171.59Smrgmdate	10 May 2006
2181.59Smrgwho	mrg
2191.59Smrgfile	bin/ed/Makefile			: 1.33
2201.60Smrgfile	bin/systrace/Makefile		: 1.12
2211.68Smrgfile	distrib/utils/sysinst/Makefile.inc : 1.44
2221.60Smrgfile	games/bcd/Makefile		: 1.5
2231.60Smrgfile	games/dab/Makefile		: 1.5
2241.60Smrgfile	games/larn/Makefile		: 1.17
2251.60Smrgfile	games/pom/Makefile		: 1.5
2261.60Smrgfile	lib/libasn1/Makefile		: 1.26
2271.60Smrgfile	lib/libcrypt/Makefile		: 1.17
2281.60Smrgfile	lib/libgssapi/Makefile		: 1.16
2291.60Smrgfile	lib/libhdb/Makefile		: 1.20
2301.60Smrgfile	lib/libkadm5clnt/Makefile	: 1.21
2311.60Smrgfile	lib/libkadm5srv/Makefile	: 1.25
2321.60Smrgfile	lib/libkrb5/Makefile		: 1.35
2331.60Smrgfile	lib/libssh/Makefile		: 1.6
2341.60Smrgfile	lib/libtelnet/Makefile		: 1.26
2351.60Smrgfile	libexec/getty/Makefile		: 1.14
2361.60Smrgfile	libexec/kadmind/Makefile	: 1.19
2371.60Smrgfile	libexec/kpasswdd/Makefile	: 1.14
2381.60Smrgfile	sbin/atactl/Makefile		: 1.3
2391.60Smrgfile	sbin/cgdconfig/Makefile		: 1.7
2401.60Smrgfile	sbin/clri/Makefile		: 1.13
2411.60Smrgfile	sbin/dkctl/Makefile		: 1.4
2421.60Smrgfile	sbin/dump/Makefile		: 1.33
2431.60Smrgfile	sbin/fdisk/Makefile		: 1.35
2441.60Smrgfile	sbin/fsck_ext2fs/Makefile	: 1.11
2451.60Smrgfile	sbin/fsck_ffs/Makefile		: 1.29
2461.60Smrgfile	sbin/fsdb/Makefile		: 1.18
2471.60Smrgfile	sbin/mount_smbfs/Makefile	: 1.4
2481.60Smrgfile	sbin/newfs/Makefile		: 1.30
2491.60Smrgfile	sbin/newfs_sysvbfs/Makefile	: 1.2
2501.60Smrgfile	sbin/restore/Makefile		: 1.23
2511.60Smrgfile	sbin/veriexecctl/Makefile	: 1.11
2521.64Smrgfile	sys/lib/libsa/Makefile		: 1.59
2531.68Smrgfile	sys/arch/evbarm/adi_brh/brh_machdep.c : 1.24
2541.59Smrgfile	usr.bin/awk/Makefile		: 1.9
2551.64Smrgfile	usr.bin/crontab/Makefile	: 1.24
2561.60Smrgfile	usr.bin/ctags/Makefile		: 1.8
2571.61Smrgfile	usr.bin/gzip/Makefile		: 1.10
2581.60Smrgfile	usr.bin/ssh/sftp/Makefile	: 1.10
2591.60Smrgfile	usr.bin/ssh/ssh/Makefile	: 1.25
2601.59Smrgfile	usr.bin/vi/build/Makefile	: 1.26
2611.60Smrgfile	usr.bin/telnet/Makefile		: 1.40
2621.60Smrgfile	usr.bin/tn3270/tn3270/Makefile	: 1.36
2631.60Smrgfile	usr.bin/tr/Makefile		: 1.4
2641.59Smrgfile	usr.sbin/amd/amd/Makefile	: 1.27
2651.59Smrgfile	usr.sbin/amd/amq/Makefile	: 1.14
2661.59Smrgfile	usr.sbin/amd/libamu/Makefile	: 1.20
2671.59Smrgfile	usr.sbin/amd/pawd/Makefile	: 1.5
2681.59Smrgfile	usr.sbin/bind/Makefile.inc	: 1.22
2691.60Smrgfile	usr.sbin/bind/libdns/Makefile	: 1.3
2701.60Smrgfile	usr.sbin/bind/named/Makefile	: 1.17
2711.60Smrgfile	usr.sbin/bootp/bootptest/Makefile : 1.2
2721.60Smrgfile	usr.sbin/chrtbl/Makefile	: 1.6
2731.60Smrgfile	usr.sbin/cron/Makefile		: 1.12
2741.59Smrgfile	usr.sbin/dhcp/Makefile.inc	: 1.20
2751.59Smrgfile	usr.sbin/dumplfs/Makefile	: 1.11
2761.60Smrgfile	usr.sbin/hprop/Makefile		: 1.13
2771.60Smrgfile	usr.sbin/installboot/Makefile	: 1.35
2781.59Smrgfile	usr.sbin/ipf/ipftest/Makefile	: 1.32
2791.59Smrgfile	usr.sbin/isdn/isdnd/Makefile	: 1.6
2801.59Smrgfile	usr.sbin/isdn/isdnmonitor/Makefile : 1.3
2811.59Smrgfile	usr.sbin/isdn/isdntel/Makefile	: 1.2
2821.59Smrgfile	usr.sbin/isdn/isdntrace/Makefile : 126
2831.61Smrgfile	usr.sbin/mopd/common/Makefile	: 1.10
2841.61Smrgfile	usr.sbin/mopd/mopd/Makefile	: 1.9
2851.61Smrgfile	usr.sbin/mopd/mopprobe/Makefile	: 1.7
2861.60Smrgfile	usr.sbin/makefs/Makefile	: 1.17
2871.60Smrgfile	usr.sbin/mscdlabel/Makefile	: 1.5
2881.60Smrgfile	usr.sbin/pkg_install/add/Makefile : 1.7
2891.60Smrgfile	usr.sbin/pkg_install/create/Makefile : 1.5
2901.60Smrgfile	usr.sbin/pkg_install/lib/Makefile : 1.28
2911.59Smrgfile	usr.sbin/ntp/ntpd/Makefile	: 1.10/1.11
2921.59Smrgfile	usr.sbin/ntp/ntptime/Makefile	: 1.4/1.5
2931.59Smrgfile	usr.sbin/pppd/Makefile.inc	: 1.3
2941.59Smrgfile	usr.sbin/pppd/pppd/Makefile	: 1.38
2951.60Smrgfile	usr.sbin/rarpd/Makefile		: 1.10
2961.59Smrgfile	usr.sbin/rbootd/Makefile	: 1.10
2971.60Smrgfile	usr.sbin/rpc.pcnfsd/Makefile	: 1.17
2981.59Smrgfile	usr.sbin/rtadvd/Makefile	: 1.9
2991.60Smrgfile	usr.sbin/tcpdump/Makefile	: 1.42
3001.59Smrgfile	usr.sbin/wiconfig/Makefile	: 1.3
3011.59Smrgdescr
3021.59Smrg	GCC 4.1 warns on pointer sign comparision/assignments and lots of
3031.59Smrg	code does not conform.  For now we use -Wno-pointer-sign and
3041.59Smrg	-fno-strict-aliasing.
3051.59Smrgkcah
3061.59Smrg
3071.21Smycroftport	vax
3081.21Smycroft
3091.81Smrg	hack	gcc4/vax compiler crash
3101.81Smrg	cdate	Fri Jun 30 22:39:12 PDT 2006
3111.81Smrg	who	mrg
3121.81Smrg	file	bin/csh/Makefile	: 1.27
3131.81Smrg	file	lib/i18n_module/UTF7/Makefile	: 1.2
3141.81Smrg	descr
3151.81Smrg		GCC4 on vax crashes.  -O0 stops it happening so far...
3161.81Smrg	kcah
3171.81Smrg
3181.52Sjmc	hack	gcc 2.95/vax doesn't like abort being used as function pointer
3191.52Sjmc	cdate	Tue Dec 13 05:54:50 GMT 2005
3201.52Sjmc	who	jmc
3211.52Sjmc	file	lib/libc/rpc/svc_vc.c 1.15
3221.52Sjmc	descr
3231.52Sjmc		Provide a local definition for abort which doesn't include
3241.52Sjmc		the noreturn attribute which trips up gcc 2.95 on vax.
3251.81Smrg	kcah
3261.52Sjmc	
3271.45Sjmc	hack	gcc 2.95/vax doesn't have stdbool.h and gettext needs it
3281.45Sjmc	cdate	Mon May  9 12:16:22 CDT 2005
3291.45Sjmc	who	jmc
3301.45Sjmc	file	gnu/usr.bin/gettext/Makefile.inc.prog 1.5
3311.45Sjmc		gnu/usr.bin/gettext/libgrep/Makefile 1.3
3321.45Sjmc		gnu/usr.bin/gettext/libnlspr/Makefile 1.5
3331.45Sjmc		gnu/usr.bin/gettext/libnlsut/Makefile 1.3   
3341.45Sjmc	descr
3351.45Sjmc		The latest gettext assumes a C99 environment or at least
3361.45Sjmc		configure checks to work around this. As we don't use configure
3371.45Sjmc		provide a stdbool.h for vax builds locally in directories from
3381.45Sjmc		the template provided by the gettext code.
3391.81Smrg	kcah
3401.45Sjmc	
3411.75Schristos	hack	gcc 2.95/vax can't handle __used__
3421.44Sjmc	cdate	Fri May  6 14:30:53 CDT 2005
3431.44Sjmc	who	jmc
3441.44Sjmc	file	src/lib/libc/gmon/mcount.c 1.17
3451.75Schristos		src/usr.bin/config/main.c 1.11
3461.44Sjmc	descr
3471.44Sjmc                Recent changes to mark this as __used__ to prevent optimization
3481.44Sjmc                away on sparc64 don't work on 2.95 vax. Ifdef'd back in the
3491.44Sjmc                old __unused__ if on vax.
3501.81Smrg	kcah
3511.44Sjmc	
3521.21Smycroft	hack	gcc 2.95/vax cannot handle __builtin_ffs()
3531.21Smycroft	cdate	Fri Aug 23 21:31:15 CEST 2002
3541.21Smycroft	who	ragge
3551.21Smycroft	file	sys/lib/libkern/libkern.h : 1.42
3561.21Smycroft	descr
3571.21Smycroft		__builtin_ffs() is ifdef'd away if __vax__. Matt Thomas has
3581.21Smycroft		added this feature to GCC 3 so it can be removed when switching.
3591.81Smrg	kcah
3601.21Smycroft
3611.21Smycroft	hack	gcc-vax-libbz2
3621.21Smycroft	mdate	27 Jun 2002
3631.21Smycroft	who	thorpej
3641.21Smycroft	file	lib/libbz2/Makefile
3651.21Smycroft	descr
3661.21Smycroft		libbz2 is mis-compiled with optimization with GCC 2.95.3
3671.24Sragge		on VAX.  -O0 works around this problem.
3681.24Sragge	kcah
3691.24Sragge
3701.24Sragge	hack	gawk
3711.24Sragge	mdate	8 Nov 2003
3721.24Sragge	who	ragge
3731.24Sragge	file	gnu/usr.bin/gawk/Makefile
3741.24Sragge	descr
3751.24Sragge		gawk is mis-compiled with optimization with GCC 2.95.3
3761.21Smycroft		on VAX.  -O0 works around this problem.
3771.21Smycroft	kcah
3781.21Smycroft
3791.21Smycroft	hack	vax Toolchain bug
3801.21Smycroft	cdate	28 Mar 2003
3811.21Smycroft	who	he
3821.21Smycroft	file	sys/arch/vax/vax/intvec.S : 1.5
3831.21Smycroft	descr
3841.21Smycroft		Workaround for PR toolchain/20924.  The assembler apparently
3851.21Smycroft		tries to range-check byte offsets when it doesn't have
3861.21Smycroft		sufficient information to make that decision.
3871.21Smycroft		Workaround uses `brw' instead of `brb' instruction.
3881.23She	kcah
3891.23She
3901.23She	hack	vax gcc 2.95.3 -Wuninitialized workarounds
3911.23She	cdate	6 Nov 2003
3921.23She	who	he
3931.23She	file	sys/dev/bi/if_ni.c : 1.22
3941.23She	file	sys/arch/vax/vax/ctu.c : 1.20
3951.23She	descr
3961.23She		Workaround for gcc 2.95.3 failing to detect that certain
3971.23She		variables will be initialized; so that this code compiles
3981.23She		with -Wuninitialized.  Should be reviewed and possibly
3991.23She		reverted when gcc 3.3.2 is ready for vax.
4001.21Smycroft	kcah
4011.21Smycroft
4021.34Scl	hack	vax gcc 2.95.3 structure initialization
4031.34Scl	cdat	13 May 2004
4041.34Scl	who	cl
4051.34Scl	file	sys/miscfs/kernfs/kernfs_vnops.c : 1.104
4061.34Scl	descr
4071.34Scl		Workaround for gcc 2.95.3 failing to initialize structures
4081.34Scl		and/or unions inside structures using nested designators.
4091.34Scl		Should be reverted when gcc >=3.3.3 is ready for vax.
4101.34Scl	kcah
4111.21Smycroft
4121.35She	hack	vax gcc 2.95.3 needs -I. to build nslexer.c
4131.35She	cdat	6 Jun 2004
4141.36She	who	mhitch
4151.36She	file	lib/libc/arch/vax/Makefile.inc : 1.6
4161.35She	descr
4171.35She		It appears necessary to add -I. to CPPFLAGS when building
4181.35She		nslesxer.c.  This may be caused by gcc 2.95.3 being used.
4191.35She		Should be reverted when a newer gcc is ready for vax.
4201.35She	kcah
4211.35She
4221.43Stron	hack	vax gcc 2.95.3 doesn't understand "-std=c99"
4231.43Stron	cdat	5 April 2005
4241.43Stron	who	tron
4251.43Stron	file	src/share/mk/bsd.sys.mk
4261.43Stron	descr
4271.43Stron		We cannot use "-std=c99" for compiler warning level 4 and above
4281.43Stron		because gcc 2.95.3 doesn't support that option.
4291.43Stron	kcah
4301.43Stron
4311.54She	hack	declare boolean_t in two IPF user-mode programs
4321.54She	cdate	Tue Mar  7 19:19:20 CET 2006
4331.54She	who	he
4341.54She	file	dist/ipf/ipsend/iptests.c : 1.8
4351.54She		dist/ipf/ipsend/sock.c : 1.7
4361.54She	descr
4371.54She		The IPF user-mode programs ipsend and iptest first
4381.54She		include <sys/types.h> without _KERNEL defined, and
4391.54She		later include <sys/file.h> with _KERNEL defined.
4401.54She		This causes a build failure when building for vax,
4411.54She		since <sys/device.h> ends up being included without
4421.54She		bollean_t being defined by <sys/types.h>.
4431.54She		Build failure and further details documented in
4441.54She		PR#32907.
4451.54She	kcah
4461.54She
4471.21Smycroftport	sparc64
4481.21Smycroft
4491.21Smycroft	hack	binutil-2.11-sparc64-pltrela
4501.21Smycroft	mdate	14 Aug 2001
4511.21Smycroft	who	eeh
4521.21Smycroft	file	libexec/ld.elf_so/arch/sparc64/mdreloc.c
4531.21Smycroft	descr
4541.39Sskrll		The first four PLT entries are reserved.  There is some
4551.21Smycroft		disagreement whether they should have associated relocation
4561.21Smycroft		entries.  Both the SPARC 32-bit and 64-bit ELF specifications
4571.21Smycroft		say that they should have relocation entries, but the 32-bit
4581.21Smycroft		SPARC binutils do not generate them, and now the 64-bit SPARC
4591.21Smycroft		binutils have stopped generating them too.
4601.21Smycroft
4611.21Smycroft		To provide binary compatibility, we will check the first entry,
4621.21Smycroft		if it is reserved it should not be of the type JMP_SLOT.  If it
4631.21Smycroft		is JMP_SLOT, then the 4 reserved entries were not generated and
4641.21Smycroft		our index is 4 entries too far, so we frob the rela pointer.
4651.21Smycroft	kcah
4661.21Smycroft
4671.21Smycroft
4681.21Smycroftport	arm
4691.21Smycroft
4701.21Smycroft	hack	gcc-unsigned-compare
4711.21Smycroft	cdate	09 Mar 2002
4721.21Smycroft	mdate	18 Mar 2002
4731.21Smycroft	who	bjh21
4741.21Smycroft	file	dist/bind/lib/nameser/ns_parse.c : 1.3
4751.21Smycroft	file	dist/dhcp/minires/ns_parse.c : 1.3
4761.21Smycroft	file	dist/dhcp/omapip/result.c : 1.2
4771.21Smycroft	file	dist/dhcp/server/failover.c : 1.3
4781.21Smycroft	file	gnu/dist/gawk/eval.c : 1.4
4791.21Smycroft	file	gnu/dist/toolchain/bfd/bfd.c : 1.2
4801.21Smycroft	file	gnu/dist/toolchain/bfd/format.c : 1.2
4811.21Smycroft	file	gnu/dist/toolchain/gdb/target.c : 1.2
4821.21Smycroft	file	sys/kern/vfs_subr.c : 1.172
4831.21Smycroft	descr	When checking that a potentially-unsigned enum is >= 0, assign
4841.21Smycroft		it to an int first.  This is necessary to avoid "comparison is
4851.21Smycroft		always true" warnings with -fshort-enums.  Casting to an int
4861.21Smycroft		really should be enough, but turns out not to be.
4871.21Smycroft	kcah
4881.21Smycroft
4891.21Smycroft	hack	gcc 3.3.2/arm sys/kern/uipc_socket.c
4901.21Smycroft	cdate	Tue Oct 28 18:02:16 GMT 2003
4911.21Smycroft	who	skrll
4921.41Sbjh21	pr	23044
4931.41Sbjh21	file	sys/arch/arm/conf/Makefile.arm : 1.19
4941.21Smycroft	descr
4951.21Smycroft		Performing a build.sh tools on a CATS with NFS mounted 
4961.21Smycroft		obj and src directories results in "panic: receive 1"
4971.21Smycroft		The hack is to compile sys/kern/uipc_socket.c with
4981.21Smycroft		-fno-strict-aliasing
4991.21Smycroft	kcah
5001.21Smycroft
5011.21Smycroft
5021.13Ssimonbport	pc532
5031.16Scl
5041.21Smycroft	hack	egcs-pc532-ip6_mroute
5051.21Smycroft	cdate	09 Jul 2002
5061.21Smycroft	who	simonb
5071.21Smycroft	file	sys/arch/pc532/conf/Makefile.pc532 : 1.70
5081.21Smycroft	file	sys/arch/pc532/conf/files.pc532 : 1.47
5091.21Smycroft	descr
5101.21Smycroft		egcs 1.1.2 gets an "internal error--insn does not satisfy its
5111.21Smycroft		constraints" error compiling ip6_mroute.c with -O2 or greater.
5121.21Smycroft		-O1 works around this problem.
5131.21Smycroft	kcah
5141.21Smycroft
5151.21Smycroft	hack	gcc-pc532-duffs_device
5161.21Smycroft	cdate	Mon Oct 27 07:23:05 UTC 2003
5171.21Smycroft	who	simonb
5181.21Smycroft	file	sys/arch/pc532/conf/Makefile.pc532 : 1.71
5191.21Smycroft	file	sys/arch/pc532/conf/files.pc532 : 1.52
5201.21Smycroft	pr	GCC PR optimization/5230
5211.21Smycroft	descr
5221.21Smycroft		gcc incorrectly gives an "unreachable code at beginning of
5231.21Smycroft		switch statement" for a Duff's device construct in
5241.21Smycroft		arch/pc532/dev/ncr.c.  There is no way to disable just this
5251.21Smycroft		warning, so -Wno-error is turned on for this file.
5261.21Smycroft	kcah
5271.21Smycroft
5281.26Ssimonb	hack	gcc332-cppmacro-ice
5291.26Ssimonb	cdate	Sun Dec  7 12:48:33 UTC 2003
5301.26Ssimonb	who	simonb
5311.26Ssimonb	file	gnu/usr.bin/gcc3/libcpp/Makefile : 1.2
5321.26Ssimonb	descr
5331.26Ssimonb		gcc 3.3.2 gets an ICE when compiling cppmacro.c with -O2.
5341.26Ssimonb		The hack is to use -O1 for this file.  Fixed in gcc
5351.26Ssimonb		-current mainline, unable to work out where the fix is
5361.26Ssimonb		right now.
5371.26Ssimonb	kcah
5381.26Ssimonb
5391.21Smycroft
5401.21Smycroftport	sh3
5411.21Smycroft
5421.74Smrg	hack	gcc4-sh3-bz2
5431.74Smrg	mdate	20 May 2006
5441.74Smrg	who	mrg
5451.74Smrg	file	lib/libbz2/Makefile	: 1.10
5461.74Smrg	descr
5471.74Smrg		The in-tree GCC 4.1-based compiler generated too-far
5481.74Smrg		pc-relative addresses.  Hack is to build with -O0.
5491.74Smrg	kcah
5501.74Smrg
5511.21Smycroft
5521.21Smycroftport	sh5
5531.21Smycroft
5541.21Smycroft	hack	SuperH SH5 Toolchain Bugs
5551.21Smycroft	cdate	11 Jul 2002
5561.21Smycroft	who	scw
5571.21Smycroft	file	usr.sbin/ndbootd/ndbootd.c : 1.6
5581.21Smycroft	file	usr.sbin/traceroute/traceroute.c : 1.48
5591.21Smycroft	descr
5601.21Smycroft		The SuperH SH5 toolchain (2.97-sh5-010522) gets an internal
5611.21Smycroft		compiler error when assigning a bit-wise inverted value
5621.21Smycroft		under some circumstances.
5631.21Smycroft		Work around it by splitting the statement into two.
5641.21Smycroft	kcah
5651.21Smycroft
5661.21Smycroft	hack	SuperH SH5 Toolchain Bugs
5671.21Smycroft	cdate	17 May 2003
5681.21Smycroft	who	scw
5691.21Smycroft	file	lib/libpthread/pthread_lock.c : 1.7
5701.21Smycroft	descr
5711.21Smycroft		The SuperH SH5 toolchain generates incorrect PIC code when
5721.21Smycroft		faced with a symbol which is declared extern, but has local
5731.21Smycroft		scope due to being defined within an asm() statement (without
5741.21Smycroft		being declared .globl in that statement). Work around it by
5751.21Smycroft		adding the .globl.
5761.27Sscw	kcah
5771.27Sscw
5781.27Sscw	hack	gcc 3.3.2 on sh5 - ICE compiling reload1.c at -O2
5791.27Sscw	cdate	Sun Dec  7 19:44:05 GMT 2003
5801.27Sscw	who	scw
5811.27Sscw	file	gnu/usr.bin/gcc3/backend/Makefile : 1.13
5821.27Sscw	descr
5831.27Sscw		Gcc3 for sh5 gets an ICE compiling reload1.c at -O2.
5841.27Sscw		Drop to -O1 for now when building for sh5.
5851.27Sscw	kcah
5861.28Sscw
5871.28Sscw	hack	gcc 3.3.2 on sh5 - ICE compiling elf32.c/elf64.c at -O2
5881.28Sscw	cdate	Sun Dec  7 21:10:46 GMT 2003
5891.28Sscw	who	scw
5901.28Sscw	file	gnu/lib/libbfd/Makefile : 1.39
5911.28Sscw	descr
5921.28Sscw		Gcc3 for sh5 gets an ICE compiling libbfd's elf32.c
5931.28Sscw		and elf64.c at -O2.
5941.28Sscw		Drop to -O1 for now when building for sh5.
5951.28Sscw	kcah
5961.28Sscw
5971.27Sscw
5981.27Sscw	hack	gcc 3.3.2 on sh5 - fatal warning compiling function.c
5991.27Sscw	cdate	Sun Dec  7 19:44:05 GMT 2003
6001.27Sscw	who	scw
6011.27Sscw	file	gnu/usr.bin/gcc3/backend/Makefile : 1.13
6021.27Sscw	descr
6031.27Sscw		Gcc3 for sh5 issues a warning:
6041.27Sscw		.../gnu/dist/gcc/gcc/function.c:4742: warning: `and' of
6051.27Sscw		    mutually exclusive equal-tests is always 0.
6061.27Sscw		This causes the build to fail because of -Werror.
6071.27Sscw		Work-around by defining NOGCCERROR when building for sh5.
6081.27Sscw	kcah
6091.27Sscw
6101.40She	hack	gcc 3.3.3 on sh5 - ICE compiling rbtdb.c and rbtdb64.c
6111.40She	cdate	Thu Nov 11 00:35:33 UTC 2004
6121.40She	who	he
6131.40She	file	usr.sbin/bind/libdns/Makefile/1.2
6141.27Sscw	descr
6151.40She		Gcc3 for sh5 gets an ICE compiling these files at -O2.
6161.27Sscw		Drop to -O1 for now when building for sh5.
6171.21Smycroft	kcah
6181.17Smrg
6191.48She	hack	gcc 3.3.3 nb3 on sh5 - ICE compiling bsd-comp.c
6201.48She	cdate	Thu May 25 23:05:20 UTC 2005
6211.48She	who	he
6221.48She	file	sys/lkm/net/bsdcomp/Makefile : 1.3
6231.48She	descr
6241.48She		Gcc3 for sh5 gets an ICE compiling this at -O2,
6251.48She		"could not split insn".  Drop to -O1 for sh5.
6261.48She	kcah
6271.17Smrg
6281.53Sscw	hack	gcc 3.3.3 nb3 on sh5 - ICE compiling strtod.c
6291.53Sscw	cdate	Tue Jan 31 10:51:52 GMT 2006
6301.53Sscw	who	scw
6311.53Sscw	file	lib/libc/gdtoa/Makefile.inc : 1.2
6321.53Sscw	descr
6331.53Sscw		Gcc3 for sh5 gets an ICE compiling this at -O2,
6341.53Sscw		"could not split insn".  Drop to -O1 for sh5.
6351.53Sscw	kcah
6361.53Sscw
6371.17Smrgport	sun2
6381.20Sskrll
6391.21Smycroft	hack	gcc 3.3.2/mdsetimage
6401.21Smycroft	cdate	Tue Oct 28 18:43:05 EST 2003
6411.21Smycroft	who	fredette
6421.21Smycroft	file	gnu/usr.sbin/mdsetimage/Makefile : 1.15
6431.21Smycroft	descr
6441.21Smycroft		mdsetimage.c causes cc1 to barf for as-yet unknown reasons.
6451.26Ssimonb		this hack uses -O0 to avoid the problem.
6461.21Smycroft	kcah
6471.21Smycroft
6481.21Smycroft	hack	gcc 3.3.2/installboot/ffs.c
6491.21Smycroft	cdate	Tue Oct 28 18:43:05 EST 2003
6501.21Smycroft	who	fredette
6511.21Smycroft	file	usr.sbin/installboot/Makefile : 1.26
6521.21Smycroft	descr
6531.21Smycroft		ffs.c causes cc1 to barf for as-yet unknown reasons.  this
6541.26Ssimonb		hack uses -O0 to avoid the problem.
6551.22Smrg	kcah
6561.22Smrg
6571.79Smrg	hack	gcc 4.1.1/fsck_ffs/pass1.c
6581.79Smrg	cdate	Fri Jun 23 10:30:25 PDT 2006
6591.79Smrg	who	mrg
6601.79Smrg	file	sbin/fsck_ffs/Makefile : 1.30
6611.79Smrg	file	sbin/fsdb/Makefile : 1.19
6621.79Smrg	file	sbin/dump_lfs/Makefile : 1.9
6631.79Smrg	file	usr.sbin/ndbootd/Makefile : 1.2
6641.79Smrg	descr
6651.79Smrg		pass1.c causes cc1 to barf for as-yet unknown reasons.  this
6661.79Smrg		hack uses -O0 to avoid the problem. (these all seem to be the
6671.79Smrg		same problem.)
6681.79Smrg	kcah
6691.79Smrg
6701.22Smrg
6711.56Stsutsuiport	m68000
6721.22Smrg
6731.22Smrg	hack	gcc 3.3.2/gcc/ra-colorize.c
6741.22Smrg	cdate	Wed Nov  5 11:03:13 EST 2003
6751.22Smrg	who	mrg
6761.46Schs	file	gnu/usr.bin/gcc3/backend/Makefile : 1.11
6771.22Smrg	descr
6781.22Smrg		ra-colorize.c causes a whole spew of unreferenced .L* local
6791.22Smrg		symbols.  using -O0 (or even -O2 reportedly) avoids the problem.
6801.56Stsutsui		Note this has been fixed in 3.3.3 at least on m68k,
6811.56Stsutsui		but it hasn't been confirmed on sun2/m68000.
6821.56Stsutsui		(it's too slow even on emulator and unlikely to build
6831.56Stsutsui		 toolchains on sun2 with its maximum 4MB RAM)
6841.21Smycroft	kcah
6851.31Smartin
6861.31Smartinport	sparc64
6871.31Smartin
6881.31Smartin	hack	disable optimzations for uvm_bio.c on 32 bit kernels
6891.31Smartin	cdate	Sun Mar 21 14:14:04 MET 2004
6901.31Smartin	who	martin
6911.32Smartin	file	sys/arch/sparc64/conf/Makefile.sparc64 : 1.53-1.54
6921.32Smartin	file	sys/arch/sparc64/conf/files.sparc64 : 1.93
6931.31Smartin	descr
6941.31Smartin		The sparc compiler miscompiles uvm_bio.c when using
6951.31Smartin		any optimization. This results in ubc_release panics.
6961.31Smartin	kcah
6971.42Schristos
6981.42Schristosport	macppc
6991.42Schristos
7001.42Schristos	hack	remove inline from rotate_{left,right}
7011.42Schristos	cdate	Tue Feb 22 13:43:25 EST 2005
7021.42Schristos	who	christos
7031.42Schristos	file	src/dist/bind/lib/dns/rbt.c
7041.42Schristos	descr
7051.42Schristos		The macppc gcc-3.3 compiler miscompiles rbt.c when these
7061.42Schristos		functions are inlined. The error is:
7071.42Schristos		.* named[368]: rbt.c:1584: INSIST(child != (void *)0) >failed
7081.42Schristos		.* named[368]: exiting (due to assertion failure)
7091.42Schristos		This is reportedly fixed in gcc-3.4
7101.42Schristos	kcah
7111.46Schs
7121.46Schsport	hppa
7131.46Schs
7141.46Schs	hack	hppa-gcc-3.3.3/grep/dfa.c
7151.46Schs	cdate	Sun Aug  8 08:34:32 PDT 2004
7161.46Schs	who	chs
7171.46Schs	file	gnu/usr.bin/grep/grep/Makefile : 1.4
7181.46Schs	descr
7191.46Schs		gcc 3.3.3 generates bad code for dfa.c with -O2,
7201.46Schs		reduce optimization to -O1 to avoid the bug.
7211.46Schs	kcah
7221.47Schs
7231.47Schs	hack	hppa boot-from-disk memory corruption
7241.47Schs	cdate	Wed May 18 06:56:07 PDT 2005
7251.47Schs	who	chs
7261.47Schs	file	src/sys/dev/scsipi/scsipiconf.h : 1.98
7271.47Schs	descr
7281.47Schs		There is some bug with DMA on hppa that corrupts scsipi_xfer
7291.47Schs		structures, but it only shows up when booting from disk.
7301.47Schs		For now, we'll add some padding to scsipi_xfer so that
7311.47Schs		the corrupted memory is not otherwise used.
7321.47Schs	kcah
7331.51Ssimonb
7341.51Ssimonbport	mips
7351.51Ssimonb
7361.51Ssimonb	hack	mips-shared-linker-load-address
7371.51Ssimonb	cdate	Fri Oct  7 08:33:10 UTC 2005
7381.51Ssimonb	who	simonb
7391.51Ssimonb	file	src/sys/kern/exec_elf32.c : 1.107
7401.51Ssimonb	descr
7411.51Ssimonb		With COMPAT_16 or previous enabled (which enables
7421.51Ssimonb		ELF_INTERP_NON_RELOCATABLE) a recent ld.elf_so will
7431.51Ssimonb		load and run at address 0.  The check to fix this in
7441.51Ssimonb		rev 1.107 only checks the first psection of the ELF
7451.51Ssimonb		executable, which may not be loadable.  A more correct
7461.51Ssimonb		fix is to check the first loadable psection instead of
7471.51Ssimonb		just the first psection.
7481.51Ssimonb	kcah
7491.54She
7501.82Schristosport	i386
7511.82Schristos
7521.82Schristos	hack	minus-Os-broken-machdep-c
7531.82Schristos	cdate	Mon Jul 31 13:09:01 EDT 2006
7541.82Schristos	who	christos
7551.82Schristos	file	src/sys/arch/machdep.c : 1.576
7561.82Schristos	descr
7571.82Schristos		gcc-4 miscompiles this file with -Os and the resulting
7581.82Schristos		kernel resets as reported in PR33918
7591.82Schristos	kcah
760