UPDATING revision 1.23
11.23Stron$NetBSD: UPDATING,v 1.23 2001/05/22 17:50:05 tron 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.21Sjmc
111.21Sjmc20010226:
121.21Sjmc
131.22Sjmc	Added named user/group to system. Need to hand add this in or builds
141.21Sjmc	will break as mtree aborts early.
151.21Sjmc
161.21Sjmc	To work around add by hand:
171.21Sjmc
181.21Sjmc	named:*:14:
191.21Sjmc
201.22Sjmc	to /etc/group and add:
211.22Sjmc
221.22Sjmc	named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin
231.22Sjmc
241.22Sjmc	to master.passwd (use vipw for instance if doing by hand).
251.22Sjmc
261.22Sjmc	Now a make build should progress.
271.18Sjmc
281.18Sjmc20010219:
291.18Sjmc	get/setprogname() added. Any hostprog's that may use this will need
301.20Sjmc        to be bootstrapped manually until the host system is current.
311.18Sjmc
321.18Sjmc        Known problems: sys/arch/macppc/stand/fixcoff
331.19Scgd			usr.sbin/config (adding -DMAKE_BOOTSTRAP to
341.19Scgd			  CFLAGS and rebuilding should work)
351.20Sjmc			usr.sbin/mdsetimage - Build a static copy if
361.20Sjmc  		          building a snapshot before fully bootstrapped.
371.15Schristos
381.15Schristos20010204:
391.15Schristos	prepare the code to compile with stricter gcc flags. in
401.15Schristos	particular start eliminating redundant declarations. Yacc
411.15Schristos	needs to be installed before make build.
421.10Schristos
431.10Schristos20010114:
441.10Schristos	introduce .if commands(target) in make(1). You need to
451.10Schristos	bring everything up-to-date first, then without installing
461.23Stron	anything make and install in usr.bin/make, then proceed
471.10Schristos	with make build.
481.9Ssommerfe
491.9Ssommerfe20010101:
501.9Ssommerfe	bsd.subdir.mk committed 20001230 had a bug which caused
511.9Ssommerfe	afterinstall targets to run too soon; update again.
521.8Ssommerfe
531.8Ssommerfe20001230:
541.8Ssommerfe	New share/mk files needed to support .WAIT in SUBDIR variables.
551.8Ssommerfe	If you get make errors, 
561.8Ssommerfe		(cd share/mk; make install)
571.8Ssommerfe	Also, PRINTOBJDIR has changed and is now used more heavily.
581.6Sad
591.6Sad20001019:
601.7Sad	The `ca' device driver has been replaced by `ld'; although the
611.6Sad	major and minor numbers haven't changed, you should update your /dev
621.6Sad	directory.
631.1Sabs
641.4Sitojun20000929:
651.4Sitojun	The following make directives are obsoleted.
661.4Sitojun	MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 
671.4Sitojun	By default, RSA is built into libcrypto.  IDEA and RC5 will not be
681.16Swiz	built into libcrypto.  By using MKCRYPTO_{RC5,IDEA}, you can build
691.4Sitojun	additional library libcrypto_{idea,rc5}.
701.4Sitojun
711.1Sabs20000623:
721.1Sabs	MKCRYPTO and friends added to share/mk/bsd.own.mk.
731.1Sabs	'cd share/mk ; make install' needed before make build.
741.1Sabs
751.1Sabs
761.1SabsHints for a more successful build:
771.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
781.2Smrg    Build a new kernel first:
791.2Smrg	This makes sure that any new system calls or features
801.2Smrg	   expected by the new userland will be present.  This
811.2Smrg	   helps to avoid critical errors when upgrading.
821.1Sabs    Use object directories:
831.1Sabs	This helps to keep stale object
841.1Sabs	   files from polluting the build if a Makefile "forgets"
851.1Sabs	   about one.  It also makes it easier to clean up after
861.1Sabs	   a build.  It's also necessary if you want to use the
871.1Sabs	   same source tree for multiple machines.
881.1Sabs	   To use object directories:
891.1Sabs	    a) cd /usr/src ; make cleandir
901.2Smrg	    b) Add "OBJMACHINE=yes" to /etc/mk.conf
911.2Smrg	    c) Add "MKOBJDIRS=yes" to /etc/mk.conf
921.1Sabs	    d) cd /usr/src ; make build
931.2Smrg	   Note that running "make obj" in a directory will create
941.2Smrg	   in obj.$MACHINE directory.
951.1Sabs    Build to a DESTDIR:
961.1Sabs	This helps to keep old
971.1Sabs	   installed files (especially libraries) from interfering
981.1Sabs	   with the new build.
991.1Sabs	   To build to a DESTDIR, set the DESTDIR environment
1001.2Smrg	   variable before running make build.  It should be set to
1011.2Smrg	   the pathname of an initially empty directory.
1021.1Sabs	   Problems: you might need to update critical utilities
1031.1Sabs		without using DESTDIR since nothing is executed
1041.1Sabs		from what is installed in DESTDIR.
1051.1Sabs		(See critical utils, below)
1061.1Sabs    Build often:
1071.1Sabs	This keeps critical utilities current enough to not choke
1081.1Sabs	on any other part of the source tree that depends on up to
1091.1Sabs	date functionality.
1101.1Sabs 
1111.1SabsWhat to do if things don't work:
1121.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1131.1SabsWhen things don't work there is usually a few things that commonly
1141.1Sabsshould be done.
1151.1Sabs    1)	make includes
1161.1Sabs	This should be done automatically by make build.
1171.1Sabs    2)  cd share/mk && make install
1181.1Sabs	Again, automatically done by make build.
1191.1Sabs
1201.1SabsFailsafe rebuild of a small part of the tree:
1211.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1221.1SabsTo make sure you rebuild something correctly you want to do
1231.1Sabssomething like the following:
1241.1Sabs    1)  Make sure the includes and .mk files are up to date.
1251.1Sabs    2)  Make sure any program used to build the particular
1261.1Sabs	utility is up to date.  (yacc, lex, etc...)
1271.1Sabs    3)  cd ...path/to/util...
1281.1Sabs	make cleandir
1291.1Sabs	rm ...all obj directories...
1301.1Sabs	make cleandir			# yes, again
1311.1Sabs	make obj
1321.1Sabs	make depend && make
1331.1Sabs
1341.1SabsFailsafe rebuild of the entire tree:
1351.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1361.1SabsIf you really want to make sure the source tree is clean and
1371.2Smrgready for a build try the following.  Note that sourcing /etc/mk.conf
1381.2Smrg(a make(1) Makefile) in this manner is not right, and will not work
1391.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf.
1401.1Sabs
1411.1Sabs---cut here---
1421.1Sabs#!/bin/sh
1431.1Sabs. /etc/mk.conf
1441.1Sabs
1451.1Sabsif [ -z $BSDSRCDIR ] ; then
1461.1Sabs    BSDSRCDIR=/usr/src
1471.1Sabsfi
1481.1Sabsif [ \! -d $BSDSRCDIR ] ; then
1491.1Sabs    echo Unable to find sources
1501.1Sabs    exit 1
1511.1Sabsfi
1521.1Sabsfind $BSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \;
1531.1Sabs
1541.1Sabsif [ -z $BSDOBJDIR ] ; then
1551.1Sabs    BSDOBJDIR=/usr/obj
1561.1Sabsfi
1571.1Sabsif [ -d $BSDOBJDIR ] ; then
1581.1Sabs    rm -rf $BSDOBJDIR
1591.1Sabsfi
1601.1Sabs
1611.1Sabscd $BSDSRCDIR && make cleandir
1621.1Sabs
1631.1Sabs---cut here---
1641.1Sabs
1651.1SabsCritical utilities:
1661.1Sabs^^^^^^^^^^^^^^^^^^^
1671.1Sabs	gnu/usr.bin/egcs
1681.3Sitojun	usr.bin/compile_et
1691.1Sabs	usr.bin/make
1701.1Sabs	usr.bin/yacc
1711.1Sabs	usr.bin/lex
1721.11Slukem	usr.bin/xlint
1731.2Smrg	usr.sbin/config
1741.1Sabs
1751.1SabsOther problems and possibly solutions:
1761.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1771.1SabsSymptom:Unreasonable compiler errors.
1781.1SabsFix:	Rebuild gnu/usr.bin/egcs
1791.1Sabs
1801.1SabsSymptom:Complaints involving a Makefile.
1811.17SerhFix:	Rebuild usr.bin/make:
1821.17Serh	cd usr.bin/make && make && make install
1831.17Serh        Or, a failsafe method if that doesn't work:
1841.17Serh	cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin
1851.17Serh
1861.1SabsFix:	Make sure .mk files are up to date.
1871.1Sabs	cd share/mk && make install
1881.2Smrg
1891.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC.
1901.2SmrgFix:	Rebuild usr.sbin/config
1911.1Sabs
1921.1SabsSymptom:
1931.1SabsFix:	Rebuild usr.bin/yacc
1941.1Sabs
1951.1SabsSymptom:
1961.1SabsFix:	Rebuild usr.bin/lex
1971.1Sabs
1981.1SabsSymptom:
1991.1SabsFix:	rm /usr/lib/libbfd.a
2001.4Sitojun
2011.4SitojunSymptom:Obsolete intermediate files are used during compilation
2021.4SitojunFix:	Try the following sequence of commands in the directory in question.
2031.4Sitojun	make cleandir; rm `make print-objdir`; make cleandir; make obj
2041.4Sitojun	(If you built the tree without "make obj" in the past, obsolete files
2051.4Sitojun	may remain.  The command tries to clean everything up)
2061.5Swiz
2071.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type
2081.5SwizFix:	Rebuild and install usr.bin/menuc
2091.12Sitojun
2101.12SitojunSymptom:mklocale not found during build in share/locale/ctype
2111.12SitojunFix:	Build and install usr.bin/mklocale
2121.13Sdogcow
2131.13SdogcowSymptom:undefined reference to `__assert13'
2141.13SdogcowFix:    Rebuild and install lib/libc
2151.13Sdogcow
2161.19ScgdSymptom:usr.sbin/config fails to build.
2171.19ScgdFix:	Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile.
2181.13Sdogcow
2191.19ScgdSymptom:undefined reference to `getprogname' or `setprogname'
2201.19ScgdFix:    Rebuild and install lib/libc
221