UPDATING revision 1.44
11.44Stv$NetBSD: UPDATING,v 1.44 2001/10/29 19:57:38 tv Exp $
21.1Sabs
31.1SabsThis file is intended to be a brief introduction to the build
41.1Sabsprocess and a reference on what to do if something doesn't work.
51.1Sabs
61.1SabsFor a more detailed description see Makefile.
71.1Sabs
81.1SabsRecent changes:
91.1Sabs^^^^^^^^^^^^^^^
101.43Smason
111.44Stv20011029:
121.44Stv	The new document BUILDING.mdoc (view with nroff | more, or
131.44Stv	see pre-generated .txt and .html versions) describes the build
141.44Stv	procedure in great detail.  BUILDING, and the USE_NEW_TOOLCHAIN
151.44Stv	build process, are intended in the long run to replace this
161.44Stv	manual update log.
171.44Stv
181.44Stv	Users building a USE_NEW_TOOLCHAIN system should read the
191.44Stv	BUILDING document for caveats.  Generally, BUILDING supersedes
201.44Stv	UPDATING for these systems, as tool updating is taken care of
211.44Stv	by the new build system.
221.42Sperry
231.42Sperry20011028:
241.42Sperry	src/etc/Makefile now needs install to be able to handle
251.42Sperry	symlinks that point to nowhere. A bug in install that
261.42Sperry	prevented this was corrected.
271.42Sperry
281.42Sperry	Solution: update and reinstall usr.bin/xinstall
291.42Sperry	Better Solution: Use the new toolchain and it will just work
301.42Sperry	for you.
311.40Slukem
321.40Slukem20011006:
331.40Slukem	/etc/mtree/NetBSD.dist has been updated to take advantage of
341.40Slukem	absolute path support added to mtree(8). Older mtree(8)s don't
351.40Slukem	understand the format.
361.40Slukem
371.40Slukem	Solution: update and reinstall usr.sbin/mtree
381.39Sjmc
391.39Sjmc20011004:
401.39Sjmc	Crunchgen has been updated to work via reach-over makefiles. Updating
411.39Sjmc	is suggested before running a snapshot build
421.36Stv
431.35Sthorpej20010915:
441.35Sthorpej	The new "ubcperf" code committed by Chuck Silvers removed
451.35Sthorpej	a header file, uvm/uvm_vnode.h.  There may be stale .depend
461.35Sthorpej	files that still reference this file.
471.35Sthorpej
481.35Sthorpej	Solution: "make cleandir && make dependall" in affected
491.35Sthorpej	directories.
501.31Senami
511.31Senami20010803:
521.31Senami	grep.info is now built from grep.texi using makeinfo.  Since it
531.31Senami	requires makeinfo v4.0, you need to install new texinfo before
541.31Senami	building gnu/usr.bin/grep.  To install new texinfo, please follow
551.31Senami	the instruction described in 20010726 entry.
561.30Senami
571.30Senami20010803:
581.41Swiz	(i386 only): i386 kernel now uses new instructions like
591.41Swiz        `fxsave' which old gas doesn't understand.  To build the
601.41Swiz	kernel successfuly, you need to build and install new gas
611.41Swiz	(gnu/usr.bin/gas.new), or (temporarily) comment out
621.41Swiz	"options I686_CPU" from your kernel configuration until you
631.41Swiz	rebuilt your userland (and got a new gas).
641.29Sbjh21
651.29Sbjh2120010731:
661.29Sbjh21	Bootloader update on ELF platforms.  DDB in kernels from before
671.29Sbjh21	this will be unable to read symbol tables provided by newer
681.29Sbjh21	bootloaders.
691.27Sassar
701.27Sassar20010726:
711.27Sassar	Texinfo was updated to 4.0.  To avoid failures when trying to
721.28Sassar	build the included texinfo files, do:
731.28Sassar
741.28Sassar	cd src/gnu/usr.bin/texinfo
751.28Sassar	make MKINFO=no dependall install
761.25Sthorpej
771.25Sthorpej20010718:
781.25Sthorpej	Enabled correct .init/.fini processing in crt0.  The way this
791.25Sthorpej	was done was to change a -I directive to cc(1), which means
801.25Sthorpej	make(1) will have a stale dependency (it will be checking the
811.25Sthorpej	timestamp on the wrong "dot_init.h").
821.25Sthorpej
831.25Sthorpej	The symptom you will see is that new programs die with SIGSEGV
841.25Sthorpej	if you have a stale dependency.
851.25Sthorpej
861.25Sthorpej	Solution: "make cleandir" in both lib/csu and libexec/ld.elf_so
871.25Sthorpej	before starting your build.
881.26Sthorpej
891.26Sthorpej20010628:
901.26Sthorpej	A construct was added to uvm_page.h that uncovered a bug
911.26Sthorpej	in lint(1).  If you get a warning/error about a non-portable
921.26Sthorpej	bitfield, update your lint(1) before proceeding.
931.21Sjmc
941.21Sjmc20010226:
951.22Sjmc	Added named user/group to system. Need to hand add this in or builds
961.21Sjmc	will break as mtree aborts early.
971.21Sjmc
981.21Sjmc	To work around add by hand:
991.21Sjmc
1001.21Sjmc	named:*:14:
1011.21Sjmc
1021.22Sjmc	to /etc/group and add:
1031.22Sjmc
1041.22Sjmc	named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin
1051.22Sjmc
1061.22Sjmc	to master.passwd (use vipw for instance if doing by hand).
1071.22Sjmc
1081.22Sjmc	Now a make build should progress.
1091.18Sjmc
1101.18Sjmc20010219:
1111.18Sjmc	get/setprogname() added. Any hostprog's that may use this will need
1121.20Sjmc        to be bootstrapped manually until the host system is current.
1131.18Sjmc
1141.18Sjmc        Known problems: sys/arch/macppc/stand/fixcoff
1151.19Scgd			usr.sbin/config (adding -DMAKE_BOOTSTRAP to
1161.19Scgd			  CFLAGS and rebuilding should work)
1171.20Sjmc			usr.sbin/mdsetimage - Build a static copy if
1181.20Sjmc  		          building a snapshot before fully bootstrapped.
1191.15Schristos
1201.15Schristos20010204:
1211.15Schristos	prepare the code to compile with stricter gcc flags. in
1221.15Schristos	particular start eliminating redundant declarations. Yacc
1231.15Schristos	needs to be installed before make build.
1241.10Schristos
1251.10Schristos20010114:
1261.10Schristos	introduce .if commands(target) in make(1). You need to
1271.10Schristos	bring everything up-to-date first, then without installing
1281.23Stron	anything make and install in usr.bin/make, then proceed
1291.10Schristos	with make build.
1301.9Ssommerfe
1311.9Ssommerfe20010101:
1321.9Ssommerfe	bsd.subdir.mk committed 20001230 had a bug which caused
1331.9Ssommerfe	afterinstall targets to run too soon; update again.
1341.8Ssommerfe
1351.8Ssommerfe20001230:
1361.8Ssommerfe	New share/mk files needed to support .WAIT in SUBDIR variables.
1371.8Ssommerfe	If you get make errors, 
1381.8Ssommerfe		(cd share/mk; make install)
1391.8Ssommerfe	Also, PRINTOBJDIR has changed and is now used more heavily.
1401.6Sad
1411.6Sad20001019:
1421.7Sad	The `ca' device driver has been replaced by `ld'; although the
1431.6Sad	major and minor numbers haven't changed, you should update your /dev
1441.6Sad	directory.
1451.1Sabs
1461.4Sitojun20000929:
1471.4Sitojun	The following make directives are obsoleted.
1481.4Sitojun	MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 
1491.4Sitojun	By default, RSA is built into libcrypto.  IDEA and RC5 will not be
1501.16Swiz	built into libcrypto.  By using MKCRYPTO_{RC5,IDEA}, you can build
1511.4Sitojun	additional library libcrypto_{idea,rc5}.
1521.1Sabs
1531.1Sabs
1541.1SabsHints for a more successful build:
1551.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1561.2Smrg    Build a new kernel first:
1571.2Smrg	This makes sure that any new system calls or features
1581.2Smrg	   expected by the new userland will be present.  This
1591.2Smrg	   helps to avoid critical errors when upgrading.
1601.1Sabs    Use object directories:
1611.1Sabs	This helps to keep stale object
1621.1Sabs	   files from polluting the build if a Makefile "forgets"
1631.1Sabs	   about one.  It also makes it easier to clean up after
1641.1Sabs	   a build.  It's also necessary if you want to use the
1651.1Sabs	   same source tree for multiple machines.
1661.1Sabs	   To use object directories:
1671.1Sabs	    a) cd /usr/src ; make cleandir
1681.2Smrg	    b) Add "OBJMACHINE=yes" to /etc/mk.conf
1691.2Smrg	    c) Add "MKOBJDIRS=yes" to /etc/mk.conf
1701.1Sabs	    d) cd /usr/src ; make build
1711.2Smrg	   Note that running "make obj" in a directory will create
1721.2Smrg	   in obj.$MACHINE directory.
1731.1Sabs    Build to a DESTDIR:
1741.1Sabs	This helps to keep old
1751.1Sabs	   installed files (especially libraries) from interfering
1761.1Sabs	   with the new build.
1771.1Sabs	   To build to a DESTDIR, set the DESTDIR environment
1781.2Smrg	   variable before running make build.  It should be set to
1791.2Smrg	   the pathname of an initially empty directory.
1801.1Sabs	   Problems: you might need to update critical utilities
1811.1Sabs		without using DESTDIR since nothing is executed
1821.1Sabs		from what is installed in DESTDIR.
1831.1Sabs		(See critical utils, below)
1841.1Sabs    Build often:
1851.1Sabs	This keeps critical utilities current enough to not choke
1861.1Sabs	on any other part of the source tree that depends on up to
1871.1Sabs	date functionality.
1881.1Sabs 
1891.1SabsWhat to do if things don't work:
1901.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1911.1SabsWhen things don't work there is usually a few things that commonly
1921.1Sabsshould be done.
1931.1Sabs    1)	make includes
1941.1Sabs	This should be done automatically by make build.
1951.1Sabs    2)  cd share/mk && make install
1961.1Sabs	Again, automatically done by make build.
1971.1Sabs
1981.1SabsFailsafe rebuild of a small part of the tree:
1991.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2001.1SabsTo make sure you rebuild something correctly you want to do
2011.1Sabssomething like the following:
2021.1Sabs    1)  Make sure the includes and .mk files are up to date.
2031.1Sabs    2)  Make sure any program used to build the particular
2041.1Sabs	utility is up to date.  (yacc, lex, etc...)
2051.1Sabs    3)  cd ...path/to/util...
2061.1Sabs	make cleandir
2071.1Sabs	rm ...all obj directories...
2081.1Sabs	make cleandir			# yes, again
2091.1Sabs	make obj
2101.1Sabs	make depend && make
2111.1Sabs
2121.1SabsFailsafe rebuild of the entire tree:
2131.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2141.1SabsIf you really want to make sure the source tree is clean and
2151.2Smrgready for a build try the following.  Note that sourcing /etc/mk.conf
2161.2Smrg(a make(1) Makefile) in this manner is not right, and will not work
2171.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf.
2181.1Sabs
2191.1Sabs---cut here---
2201.1Sabs#!/bin/sh
2211.1Sabs. /etc/mk.conf
2221.1Sabs
2231.1Sabsif [ -z $BSDSRCDIR ] ; then
2241.1Sabs    BSDSRCDIR=/usr/src
2251.1Sabsfi
2261.1Sabsif [ \! -d $BSDSRCDIR ] ; then
2271.1Sabs    echo Unable to find sources
2281.1Sabs    exit 1
2291.1Sabsfi
2301.1Sabsfind $BSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \;
2311.1Sabs
2321.1Sabsif [ -z $BSDOBJDIR ] ; then
2331.1Sabs    BSDOBJDIR=/usr/obj
2341.1Sabsfi
2351.1Sabsif [ -d $BSDOBJDIR ] ; then
2361.1Sabs    rm -rf $BSDOBJDIR
2371.1Sabsfi
2381.1Sabs
2391.1Sabscd $BSDSRCDIR && make cleandir
2401.1Sabs
2411.1Sabs---cut here---
2421.1Sabs
2431.1SabsCritical utilities:
2441.1Sabs^^^^^^^^^^^^^^^^^^^
2451.1Sabs	gnu/usr.bin/egcs
2461.3Sitojun	usr.bin/compile_et
2471.1Sabs	usr.bin/make
2481.1Sabs	usr.bin/yacc
2491.1Sabs	usr.bin/lex
2501.11Slukem	usr.bin/xlint
2511.2Smrg	usr.sbin/config
2521.1Sabs
2531.34SsimonbOther problems and possible solutions:
2541.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2551.1SabsSymptom:Unreasonable compiler errors.
2561.1SabsFix:	Rebuild gnu/usr.bin/egcs
2571.1Sabs
2581.1SabsSymptom:Complaints involving a Makefile.
2591.17SerhFix:	Rebuild usr.bin/make:
2601.17Serh	cd usr.bin/make && make && make install
2611.17Serh        Or, a failsafe method if that doesn't work:
2621.17Serh	cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin
2631.17Serh
2641.1SabsFix:	Make sure .mk files are up to date.
2651.1Sabs	cd share/mk && make install
2661.2Smrg
2671.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC.
2681.2SmrgFix:	Rebuild usr.sbin/config
2691.1Sabs
2701.1SabsSymptom:
2711.1SabsFix:	Rebuild usr.bin/yacc
2721.1Sabs
2731.1SabsSymptom:
2741.1SabsFix:	Rebuild usr.bin/lex
2751.1Sabs
2761.1SabsSymptom:
2771.1SabsFix:	rm /usr/lib/libbfd.a
2781.4Sitojun
2791.4SitojunSymptom:Obsolete intermediate files are used during compilation
2801.4SitojunFix:	Try the following sequence of commands in the directory in question.
2811.4Sitojun	make cleandir; rm `make print-objdir`; make cleandir; make obj
2821.4Sitojun	(If you built the tree without "make obj" in the past, obsolete files
2831.4Sitojun	may remain.  The command tries to clean everything up)
2841.5Swiz
2851.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type
2861.5SwizFix:	Rebuild and install usr.bin/menuc
2871.12Sitojun
2881.12SitojunSymptom:mklocale not found during build in share/locale/ctype
2891.12SitojunFix:	Build and install usr.bin/mklocale
2901.13Sdogcow
2911.13SdogcowSymptom:undefined reference to `__assert13'
2921.13SdogcowFix:    Rebuild and install lib/libc
2931.13Sdogcow
2941.19ScgdSymptom:usr.sbin/config fails to build.
2951.19ScgdFix:	Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile.
2961.13Sdogcow
2971.19ScgdSymptom:undefined reference to `getprogname' or `setprogname'
2981.19ScgdFix:    Rebuild and install lib/libc
2991.24Sabs
3001.24SabsSymptom:lint does not understand the '-X' option
3011.24SabsFix:    May need to build & install libs with NOLINT=1 before rebuilding lint
302