UPDATING revision 1.41
11.41Swiz$NetBSD: UPDATING,v 1.41 2001/10/26 13:38:52 wiz 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.40Slukem
111.40Slukem20011006:
121.40Slukem	/etc/mtree/NetBSD.dist has been updated to take advantage of
131.40Slukem	absolute path support added to mtree(8). Older mtree(8)s don't
141.40Slukem	understand the format.
151.40Slukem
161.40Slukem	Solution: update and reinstall usr.sbin/mtree
171.39Sjmc
181.39Sjmc20011004:
191.39Sjmc
201.39Sjmc	Crunchgen has been updated to work via reach-over makefiles. Updating
211.39Sjmc	is suggested before running a snapshot build
221.36Stv
231.36Stv20010922:
241.36Stv	The new toolchain is enabled on i386.  This new build method
251.38Stron	is intended to make all the upgrade issues elsewhere in UPDATING
261.36Stv	obsolete (stay tuned...).
271.36Stv
281.37Skristerw	i386 platform builds must now set TOOLDIR in mk.conf or the
291.36Stv	environment in order to build the system.  This is a pathname
301.36Stv	where host build tools will be installed, and must NOT be
311.36Stv	the same as src/tools.
321.36Stv
331.36Stv	(Optionally, USETOOLS=no can be set in the environment if you
341.36Stv	wish to avoid using the separate host toolchain for building a
351.36Stv	subtree.  Otherwise, this will default to "yes" automatically.)
361.35Sthorpej
371.35Sthorpej20010915:
381.35Sthorpej	The new "ubcperf" code committed by Chuck Silvers removed
391.35Sthorpej	a header file, uvm/uvm_vnode.h.  There may be stale .depend
401.35Sthorpej	files that still reference this file.
411.35Sthorpej
421.35Sthorpej	Solution: "make cleandir && make dependall" in affected
431.35Sthorpej	directories.
441.31Senami
451.31Senami20010803:
461.31Senami	grep.info is now built from grep.texi using makeinfo.  Since it
471.31Senami	requires makeinfo v4.0, you need to install new texinfo before
481.31Senami	building gnu/usr.bin/grep.  To install new texinfo, please follow
491.31Senami	the instruction described in 20010726 entry.
501.30Senami
511.30Senami20010803:
521.41Swiz	(i386 only): i386 kernel now uses new instructions like
531.41Swiz        `fxsave' which old gas doesn't understand.  To build the
541.41Swiz	kernel successfuly, you need to build and install new gas
551.41Swiz	(gnu/usr.bin/gas.new), or (temporarily) comment out
561.41Swiz	"options I686_CPU" from your kernel configuration until you
571.41Swiz	rebuilt your userland (and got a new gas).
581.29Sbjh21
591.29Sbjh2120010731:
601.29Sbjh21	Bootloader update on ELF platforms.  DDB in kernels from before
611.29Sbjh21	this will be unable to read symbol tables provided by newer
621.29Sbjh21	bootloaders.
631.27Sassar
641.27Sassar20010726:
651.27Sassar	Texinfo was updated to 4.0.  To avoid failures when trying to
661.28Sassar	build the included texinfo files, do:
671.28Sassar
681.28Sassar	cd src/gnu/usr.bin/texinfo
691.28Sassar	make MKINFO=no dependall install
701.25Sthorpej
711.25Sthorpej20010718:
721.25Sthorpej
731.25Sthorpej	Enabled correct .init/.fini processing in crt0.  The way this
741.25Sthorpej	was done was to change a -I directive to cc(1), which means
751.25Sthorpej	make(1) will have a stale dependency (it will be checking the
761.25Sthorpej	timestamp on the wrong "dot_init.h").
771.25Sthorpej
781.25Sthorpej	The symptom you will see is that new programs die with SIGSEGV
791.25Sthorpej	if you have a stale dependency.
801.25Sthorpej
811.25Sthorpej	Solution: "make cleandir" in both lib/csu and libexec/ld.elf_so
821.25Sthorpej	before starting your build.
831.26Sthorpej
841.26Sthorpej20010628:
851.26Sthorpej
861.26Sthorpej	A construct was added to uvm_page.h that uncovered a bug
871.26Sthorpej	in lint(1).  If you get a warning/error about a non-portable
881.26Sthorpej	bitfield, update your lint(1) before proceeding.
891.21Sjmc
901.21Sjmc20010226:
911.21Sjmc
921.22Sjmc	Added named user/group to system. Need to hand add this in or builds
931.21Sjmc	will break as mtree aborts early.
941.21Sjmc
951.21Sjmc	To work around add by hand:
961.21Sjmc
971.21Sjmc	named:*:14:
981.21Sjmc
991.22Sjmc	to /etc/group and add:
1001.22Sjmc
1011.22Sjmc	named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin
1021.22Sjmc
1031.22Sjmc	to master.passwd (use vipw for instance if doing by hand).
1041.22Sjmc
1051.22Sjmc	Now a make build should progress.
1061.18Sjmc
1071.18Sjmc20010219:
1081.18Sjmc	get/setprogname() added. Any hostprog's that may use this will need
1091.20Sjmc        to be bootstrapped manually until the host system is current.
1101.18Sjmc
1111.18Sjmc        Known problems: sys/arch/macppc/stand/fixcoff
1121.19Scgd			usr.sbin/config (adding -DMAKE_BOOTSTRAP to
1131.19Scgd			  CFLAGS and rebuilding should work)
1141.20Sjmc			usr.sbin/mdsetimage - Build a static copy if
1151.20Sjmc  		          building a snapshot before fully bootstrapped.
1161.15Schristos
1171.15Schristos20010204:
1181.15Schristos	prepare the code to compile with stricter gcc flags. in
1191.15Schristos	particular start eliminating redundant declarations. Yacc
1201.15Schristos	needs to be installed before make build.
1211.10Schristos
1221.10Schristos20010114:
1231.10Schristos	introduce .if commands(target) in make(1). You need to
1241.10Schristos	bring everything up-to-date first, then without installing
1251.23Stron	anything make and install in usr.bin/make, then proceed
1261.10Schristos	with make build.
1271.9Ssommerfe
1281.9Ssommerfe20010101:
1291.9Ssommerfe	bsd.subdir.mk committed 20001230 had a bug which caused
1301.9Ssommerfe	afterinstall targets to run too soon; update again.
1311.8Ssommerfe
1321.8Ssommerfe20001230:
1331.8Ssommerfe	New share/mk files needed to support .WAIT in SUBDIR variables.
1341.8Ssommerfe	If you get make errors, 
1351.8Ssommerfe		(cd share/mk; make install)
1361.8Ssommerfe	Also, PRINTOBJDIR has changed and is now used more heavily.
1371.6Sad
1381.6Sad20001019:
1391.7Sad	The `ca' device driver has been replaced by `ld'; although the
1401.6Sad	major and minor numbers haven't changed, you should update your /dev
1411.6Sad	directory.
1421.1Sabs
1431.4Sitojun20000929:
1441.4Sitojun	The following make directives are obsoleted.
1451.4Sitojun	MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 
1461.4Sitojun	By default, RSA is built into libcrypto.  IDEA and RC5 will not be
1471.16Swiz	built into libcrypto.  By using MKCRYPTO_{RC5,IDEA}, you can build
1481.4Sitojun	additional library libcrypto_{idea,rc5}.
1491.4Sitojun
1501.1Sabs20000623:
1511.1Sabs	MKCRYPTO and friends added to share/mk/bsd.own.mk.
1521.1Sabs	'cd share/mk ; make install' needed before make build.
1531.1Sabs
1541.1Sabs
1551.1SabsHints for a more successful build:
1561.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1571.2Smrg    Build a new kernel first:
1581.2Smrg	This makes sure that any new system calls or features
1591.2Smrg	   expected by the new userland will be present.  This
1601.2Smrg	   helps to avoid critical errors when upgrading.
1611.1Sabs    Use object directories:
1621.1Sabs	This helps to keep stale object
1631.1Sabs	   files from polluting the build if a Makefile "forgets"
1641.1Sabs	   about one.  It also makes it easier to clean up after
1651.1Sabs	   a build.  It's also necessary if you want to use the
1661.1Sabs	   same source tree for multiple machines.
1671.1Sabs	   To use object directories:
1681.1Sabs	    a) cd /usr/src ; make cleandir
1691.2Smrg	    b) Add "OBJMACHINE=yes" to /etc/mk.conf
1701.2Smrg	    c) Add "MKOBJDIRS=yes" to /etc/mk.conf
1711.1Sabs	    d) cd /usr/src ; make build
1721.2Smrg	   Note that running "make obj" in a directory will create
1731.2Smrg	   in obj.$MACHINE directory.
1741.1Sabs    Build to a DESTDIR:
1751.1Sabs	This helps to keep old
1761.1Sabs	   installed files (especially libraries) from interfering
1771.1Sabs	   with the new build.
1781.1Sabs	   To build to a DESTDIR, set the DESTDIR environment
1791.2Smrg	   variable before running make build.  It should be set to
1801.2Smrg	   the pathname of an initially empty directory.
1811.1Sabs	   Problems: you might need to update critical utilities
1821.1Sabs		without using DESTDIR since nothing is executed
1831.1Sabs		from what is installed in DESTDIR.
1841.1Sabs		(See critical utils, below)
1851.1Sabs    Build often:
1861.1Sabs	This keeps critical utilities current enough to not choke
1871.1Sabs	on any other part of the source tree that depends on up to
1881.1Sabs	date functionality.
1891.1Sabs 
1901.1SabsWhat to do if things don't work:
1911.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1921.1SabsWhen things don't work there is usually a few things that commonly
1931.1Sabsshould be done.
1941.1Sabs    1)	make includes
1951.1Sabs	This should be done automatically by make build.
1961.1Sabs    2)  cd share/mk && make install
1971.1Sabs	Again, automatically done by make build.
1981.1Sabs
1991.1SabsFailsafe rebuild of a small part of the tree:
2001.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2011.1SabsTo make sure you rebuild something correctly you want to do
2021.1Sabssomething like the following:
2031.1Sabs    1)  Make sure the includes and .mk files are up to date.
2041.1Sabs    2)  Make sure any program used to build the particular
2051.1Sabs	utility is up to date.  (yacc, lex, etc...)
2061.1Sabs    3)  cd ...path/to/util...
2071.1Sabs	make cleandir
2081.1Sabs	rm ...all obj directories...
2091.1Sabs	make cleandir			# yes, again
2101.1Sabs	make obj
2111.1Sabs	make depend && make
2121.1Sabs
2131.1SabsFailsafe rebuild of the entire tree:
2141.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2151.1SabsIf you really want to make sure the source tree is clean and
2161.2Smrgready for a build try the following.  Note that sourcing /etc/mk.conf
2171.2Smrg(a make(1) Makefile) in this manner is not right, and will not work
2181.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf.
2191.1Sabs
2201.1Sabs---cut here---
2211.1Sabs#!/bin/sh
2221.1Sabs. /etc/mk.conf
2231.1Sabs
2241.1Sabsif [ -z $BSDSRCDIR ] ; then
2251.1Sabs    BSDSRCDIR=/usr/src
2261.1Sabsfi
2271.1Sabsif [ \! -d $BSDSRCDIR ] ; then
2281.1Sabs    echo Unable to find sources
2291.1Sabs    exit 1
2301.1Sabsfi
2311.1Sabsfind $BSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \;
2321.1Sabs
2331.1Sabsif [ -z $BSDOBJDIR ] ; then
2341.1Sabs    BSDOBJDIR=/usr/obj
2351.1Sabsfi
2361.1Sabsif [ -d $BSDOBJDIR ] ; then
2371.1Sabs    rm -rf $BSDOBJDIR
2381.1Sabsfi
2391.1Sabs
2401.1Sabscd $BSDSRCDIR && make cleandir
2411.1Sabs
2421.1Sabs---cut here---
2431.1Sabs
2441.1SabsCritical utilities:
2451.1Sabs^^^^^^^^^^^^^^^^^^^
2461.1Sabs	gnu/usr.bin/egcs
2471.3Sitojun	usr.bin/compile_et
2481.1Sabs	usr.bin/make
2491.1Sabs	usr.bin/yacc
2501.1Sabs	usr.bin/lex
2511.11Slukem	usr.bin/xlint
2521.2Smrg	usr.sbin/config
2531.1Sabs
2541.34SsimonbOther problems and possible solutions:
2551.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2561.1SabsSymptom:Unreasonable compiler errors.
2571.1SabsFix:	Rebuild gnu/usr.bin/egcs
2581.1Sabs
2591.1SabsSymptom:Complaints involving a Makefile.
2601.17SerhFix:	Rebuild usr.bin/make:
2611.17Serh	cd usr.bin/make && make && make install
2621.17Serh        Or, a failsafe method if that doesn't work:
2631.17Serh	cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin
2641.17Serh
2651.1SabsFix:	Make sure .mk files are up to date.
2661.1Sabs	cd share/mk && make install
2671.2Smrg
2681.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC.
2691.2SmrgFix:	Rebuild usr.sbin/config
2701.1Sabs
2711.1SabsSymptom:
2721.1SabsFix:	Rebuild usr.bin/yacc
2731.1Sabs
2741.1SabsSymptom:
2751.1SabsFix:	Rebuild usr.bin/lex
2761.1Sabs
2771.1SabsSymptom:
2781.1SabsFix:	rm /usr/lib/libbfd.a
2791.4Sitojun
2801.4SitojunSymptom:Obsolete intermediate files are used during compilation
2811.4SitojunFix:	Try the following sequence of commands in the directory in question.
2821.4Sitojun	make cleandir; rm `make print-objdir`; make cleandir; make obj
2831.4Sitojun	(If you built the tree without "make obj" in the past, obsolete files
2841.4Sitojun	may remain.  The command tries to clean everything up)
2851.5Swiz
2861.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type
2871.5SwizFix:	Rebuild and install usr.bin/menuc
2881.12Sitojun
2891.12SitojunSymptom:mklocale not found during build in share/locale/ctype
2901.12SitojunFix:	Build and install usr.bin/mklocale
2911.13Sdogcow
2921.13SdogcowSymptom:undefined reference to `__assert13'
2931.13SdogcowFix:    Rebuild and install lib/libc
2941.13Sdogcow
2951.19ScgdSymptom:usr.sbin/config fails to build.
2961.19ScgdFix:	Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile.
2971.13Sdogcow
2981.19ScgdSymptom:undefined reference to `getprogname' or `setprogname'
2991.19ScgdFix:    Rebuild and install lib/libc
3001.24Sabs
3011.24SabsSymptom:lint does not understand the '-X' option
3021.24SabsFix:    May need to build & install libs with NOLINT=1 before rebuilding lint
303