UPDATING revision 1.28
11.28Sassar$NetBSD: UPDATING,v 1.28 2001/07/26 08:51:17 assar 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.27Sassar
111.27Sassar20010726:
121.27Sassar	Texinfo was updated to 4.0.  To avoid failures when trying to
131.28Sassar	build the included texinfo files, do:
141.28Sassar
151.28Sassar	cd src/gnu/usr.bin/texinfo
161.28Sassar	make MKINFO=no dependall install
171.25Sthorpej
181.25Sthorpej20010718:
191.25Sthorpej
201.25Sthorpej	Enabled correct .init/.fini processing in crt0.  The way this
211.25Sthorpej	was done was to change a -I directive to cc(1), which means
221.25Sthorpej	make(1) will have a stale dependency (it will be checking the
231.25Sthorpej	timestamp on the wrong "dot_init.h").
241.25Sthorpej
251.25Sthorpej	The symptom you will see is that new programs die with SIGSEGV
261.25Sthorpej	if you have a stale dependency.
271.25Sthorpej
281.25Sthorpej	Solution: "make cleandir" in both lib/csu and libexec/ld.elf_so
291.25Sthorpej	before starting your build.
301.26Sthorpej
311.26Sthorpej20010628:
321.26Sthorpej
331.26Sthorpej	A construct was added to uvm_page.h that uncovered a bug
341.26Sthorpej	in lint(1).  If you get a warning/error about a non-portable
351.26Sthorpej	bitfield, update your lint(1) before proceeding.
361.21Sjmc
371.21Sjmc20010226:
381.21Sjmc
391.22Sjmc	Added named user/group to system. Need to hand add this in or builds
401.21Sjmc	will break as mtree aborts early.
411.21Sjmc
421.21Sjmc	To work around add by hand:
431.21Sjmc
441.21Sjmc	named:*:14:
451.21Sjmc
461.22Sjmc	to /etc/group and add:
471.22Sjmc
481.22Sjmc	named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin
491.22Sjmc
501.22Sjmc	to master.passwd (use vipw for instance if doing by hand).
511.22Sjmc
521.22Sjmc	Now a make build should progress.
531.18Sjmc
541.18Sjmc20010219:
551.18Sjmc	get/setprogname() added. Any hostprog's that may use this will need
561.20Sjmc        to be bootstrapped manually until the host system is current.
571.18Sjmc
581.18Sjmc        Known problems: sys/arch/macppc/stand/fixcoff
591.19Scgd			usr.sbin/config (adding -DMAKE_BOOTSTRAP to
601.19Scgd			  CFLAGS and rebuilding should work)
611.20Sjmc			usr.sbin/mdsetimage - Build a static copy if
621.20Sjmc  		          building a snapshot before fully bootstrapped.
631.15Schristos
641.15Schristos20010204:
651.15Schristos	prepare the code to compile with stricter gcc flags. in
661.15Schristos	particular start eliminating redundant declarations. Yacc
671.15Schristos	needs to be installed before make build.
681.10Schristos
691.10Schristos20010114:
701.10Schristos	introduce .if commands(target) in make(1). You need to
711.10Schristos	bring everything up-to-date first, then without installing
721.23Stron	anything make and install in usr.bin/make, then proceed
731.10Schristos	with make build.
741.9Ssommerfe
751.9Ssommerfe20010101:
761.9Ssommerfe	bsd.subdir.mk committed 20001230 had a bug which caused
771.9Ssommerfe	afterinstall targets to run too soon; update again.
781.8Ssommerfe
791.8Ssommerfe20001230:
801.8Ssommerfe	New share/mk files needed to support .WAIT in SUBDIR variables.
811.8Ssommerfe	If you get make errors, 
821.8Ssommerfe		(cd share/mk; make install)
831.8Ssommerfe	Also, PRINTOBJDIR has changed and is now used more heavily.
841.6Sad
851.6Sad20001019:
861.7Sad	The `ca' device driver has been replaced by `ld'; although the
871.6Sad	major and minor numbers haven't changed, you should update your /dev
881.6Sad	directory.
891.1Sabs
901.4Sitojun20000929:
911.4Sitojun	The following make directives are obsoleted.
921.4Sitojun	MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 
931.4Sitojun	By default, RSA is built into libcrypto.  IDEA and RC5 will not be
941.16Swiz	built into libcrypto.  By using MKCRYPTO_{RC5,IDEA}, you can build
951.4Sitojun	additional library libcrypto_{idea,rc5}.
961.4Sitojun
971.1Sabs20000623:
981.1Sabs	MKCRYPTO and friends added to share/mk/bsd.own.mk.
991.1Sabs	'cd share/mk ; make install' needed before make build.
1001.1Sabs
1011.1Sabs
1021.1SabsHints for a more successful build:
1031.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1041.2Smrg    Build a new kernel first:
1051.2Smrg	This makes sure that any new system calls or features
1061.2Smrg	   expected by the new userland will be present.  This
1071.2Smrg	   helps to avoid critical errors when upgrading.
1081.1Sabs    Use object directories:
1091.1Sabs	This helps to keep stale object
1101.1Sabs	   files from polluting the build if a Makefile "forgets"
1111.1Sabs	   about one.  It also makes it easier to clean up after
1121.1Sabs	   a build.  It's also necessary if you want to use the
1131.1Sabs	   same source tree for multiple machines.
1141.1Sabs	   To use object directories:
1151.1Sabs	    a) cd /usr/src ; make cleandir
1161.2Smrg	    b) Add "OBJMACHINE=yes" to /etc/mk.conf
1171.2Smrg	    c) Add "MKOBJDIRS=yes" to /etc/mk.conf
1181.1Sabs	    d) cd /usr/src ; make build
1191.2Smrg	   Note that running "make obj" in a directory will create
1201.2Smrg	   in obj.$MACHINE directory.
1211.1Sabs    Build to a DESTDIR:
1221.1Sabs	This helps to keep old
1231.1Sabs	   installed files (especially libraries) from interfering
1241.1Sabs	   with the new build.
1251.1Sabs	   To build to a DESTDIR, set the DESTDIR environment
1261.2Smrg	   variable before running make build.  It should be set to
1271.2Smrg	   the pathname of an initially empty directory.
1281.1Sabs	   Problems: you might need to update critical utilities
1291.1Sabs		without using DESTDIR since nothing is executed
1301.1Sabs		from what is installed in DESTDIR.
1311.1Sabs		(See critical utils, below)
1321.1Sabs    Build often:
1331.1Sabs	This keeps critical utilities current enough to not choke
1341.1Sabs	on any other part of the source tree that depends on up to
1351.1Sabs	date functionality.
1361.1Sabs 
1371.1SabsWhat to do if things don't work:
1381.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1391.1SabsWhen things don't work there is usually a few things that commonly
1401.1Sabsshould be done.
1411.1Sabs    1)	make includes
1421.1Sabs	This should be done automatically by make build.
1431.1Sabs    2)  cd share/mk && make install
1441.1Sabs	Again, automatically done by make build.
1451.1Sabs
1461.1SabsFailsafe rebuild of a small part of the tree:
1471.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1481.1SabsTo make sure you rebuild something correctly you want to do
1491.1Sabssomething like the following:
1501.1Sabs    1)  Make sure the includes and .mk files are up to date.
1511.1Sabs    2)  Make sure any program used to build the particular
1521.1Sabs	utility is up to date.  (yacc, lex, etc...)
1531.1Sabs    3)  cd ...path/to/util...
1541.1Sabs	make cleandir
1551.1Sabs	rm ...all obj directories...
1561.1Sabs	make cleandir			# yes, again
1571.1Sabs	make obj
1581.1Sabs	make depend && make
1591.1Sabs
1601.1SabsFailsafe rebuild of the entire tree:
1611.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1621.1SabsIf you really want to make sure the source tree is clean and
1631.2Smrgready for a build try the following.  Note that sourcing /etc/mk.conf
1641.2Smrg(a make(1) Makefile) in this manner is not right, and will not work
1651.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf.
1661.1Sabs
1671.1Sabs---cut here---
1681.1Sabs#!/bin/sh
1691.1Sabs. /etc/mk.conf
1701.1Sabs
1711.1Sabsif [ -z $BSDSRCDIR ] ; then
1721.1Sabs    BSDSRCDIR=/usr/src
1731.1Sabsfi
1741.1Sabsif [ \! -d $BSDSRCDIR ] ; then
1751.1Sabs    echo Unable to find sources
1761.1Sabs    exit 1
1771.1Sabsfi
1781.1Sabsfind $BSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \;
1791.1Sabs
1801.1Sabsif [ -z $BSDOBJDIR ] ; then
1811.1Sabs    BSDOBJDIR=/usr/obj
1821.1Sabsfi
1831.1Sabsif [ -d $BSDOBJDIR ] ; then
1841.1Sabs    rm -rf $BSDOBJDIR
1851.1Sabsfi
1861.1Sabs
1871.1Sabscd $BSDSRCDIR && make cleandir
1881.1Sabs
1891.1Sabs---cut here---
1901.1Sabs
1911.1SabsCritical utilities:
1921.1Sabs^^^^^^^^^^^^^^^^^^^
1931.1Sabs	gnu/usr.bin/egcs
1941.3Sitojun	usr.bin/compile_et
1951.1Sabs	usr.bin/make
1961.1Sabs	usr.bin/yacc
1971.1Sabs	usr.bin/lex
1981.11Slukem	usr.bin/xlint
1991.2Smrg	usr.sbin/config
2001.1Sabs
2011.1SabsOther problems and possibly solutions:
2021.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2031.1SabsSymptom:Unreasonable compiler errors.
2041.1SabsFix:	Rebuild gnu/usr.bin/egcs
2051.1Sabs
2061.1SabsSymptom:Complaints involving a Makefile.
2071.17SerhFix:	Rebuild usr.bin/make:
2081.17Serh	cd usr.bin/make && make && make install
2091.17Serh        Or, a failsafe method if that doesn't work:
2101.17Serh	cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin
2111.17Serh
2121.1SabsFix:	Make sure .mk files are up to date.
2131.1Sabs	cd share/mk && make install
2141.2Smrg
2151.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC.
2161.2SmrgFix:	Rebuild usr.sbin/config
2171.1Sabs
2181.1SabsSymptom:
2191.1SabsFix:	Rebuild usr.bin/yacc
2201.1Sabs
2211.1SabsSymptom:
2221.1SabsFix:	Rebuild usr.bin/lex
2231.1Sabs
2241.1SabsSymptom:
2251.1SabsFix:	rm /usr/lib/libbfd.a
2261.4Sitojun
2271.4SitojunSymptom:Obsolete intermediate files are used during compilation
2281.4SitojunFix:	Try the following sequence of commands in the directory in question.
2291.4Sitojun	make cleandir; rm `make print-objdir`; make cleandir; make obj
2301.4Sitojun	(If you built the tree without "make obj" in the past, obsolete files
2311.4Sitojun	may remain.  The command tries to clean everything up)
2321.5Swiz
2331.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type
2341.5SwizFix:	Rebuild and install usr.bin/menuc
2351.12Sitojun
2361.12SitojunSymptom:mklocale not found during build in share/locale/ctype
2371.12SitojunFix:	Build and install usr.bin/mklocale
2381.13Sdogcow
2391.13SdogcowSymptom:undefined reference to `__assert13'
2401.13SdogcowFix:    Rebuild and install lib/libc
2411.13Sdogcow
2421.19ScgdSymptom:usr.sbin/config fails to build.
2431.19ScgdFix:	Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile.
2441.13Sdogcow
2451.19ScgdSymptom:undefined reference to `getprogname' or `setprogname'
2461.19ScgdFix:    Rebuild and install lib/libc
2471.24Sabs
2481.24SabsSymptom:lint does not understand the '-X' option
2491.24SabsFix:    May need to build & install libs with NOLINT=1 before rebuilding lint
250