UPDATING revision 1.30
11.30Senami$NetBSD: UPDATING,v 1.30 2001/08/03 14:19:50 enami 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.30Senami 111.30Senami20010803: 121.30Senami (i386 only): i386 kernel now uses new instructions like fxsave which 131.30Senami old gas doesn't understand. To build the kernel successfuly, you 141.30Senami need to build and install new gas (gnu/usr.bin/gas.new). 151.29Sbjh21 161.29Sbjh2120010731: 171.29Sbjh21 Bootloader update on ELF platforms. DDB in kernels from before 181.29Sbjh21 this will be unable to read symbol tables provided by newer 191.29Sbjh21 bootloaders. 201.27Sassar 211.27Sassar20010726: 221.27Sassar Texinfo was updated to 4.0. To avoid failures when trying to 231.28Sassar build the included texinfo files, do: 241.28Sassar 251.28Sassar cd src/gnu/usr.bin/texinfo 261.28Sassar make MKINFO=no dependall install 271.25Sthorpej 281.25Sthorpej20010718: 291.25Sthorpej 301.25Sthorpej Enabled correct .init/.fini processing in crt0. The way this 311.25Sthorpej was done was to change a -I directive to cc(1), which means 321.25Sthorpej make(1) will have a stale dependency (it will be checking the 331.25Sthorpej timestamp on the wrong "dot_init.h"). 341.25Sthorpej 351.25Sthorpej The symptom you will see is that new programs die with SIGSEGV 361.25Sthorpej if you have a stale dependency. 371.25Sthorpej 381.25Sthorpej Solution: "make cleandir" in both lib/csu and libexec/ld.elf_so 391.25Sthorpej before starting your build. 401.26Sthorpej 411.26Sthorpej20010628: 421.26Sthorpej 431.26Sthorpej A construct was added to uvm_page.h that uncovered a bug 441.26Sthorpej in lint(1). If you get a warning/error about a non-portable 451.26Sthorpej bitfield, update your lint(1) before proceeding. 461.21Sjmc 471.21Sjmc20010226: 481.21Sjmc 491.22Sjmc Added named user/group to system. Need to hand add this in or builds 501.21Sjmc will break as mtree aborts early. 511.21Sjmc 521.21Sjmc To work around add by hand: 531.21Sjmc 541.21Sjmc named:*:14: 551.21Sjmc 561.22Sjmc to /etc/group and add: 571.22Sjmc 581.22Sjmc named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin 591.22Sjmc 601.22Sjmc to master.passwd (use vipw for instance if doing by hand). 611.22Sjmc 621.22Sjmc Now a make build should progress. 631.18Sjmc 641.18Sjmc20010219: 651.18Sjmc get/setprogname() added. Any hostprog's that may use this will need 661.20Sjmc to be bootstrapped manually until the host system is current. 671.18Sjmc 681.18Sjmc Known problems: sys/arch/macppc/stand/fixcoff 691.19Scgd usr.sbin/config (adding -DMAKE_BOOTSTRAP to 701.19Scgd CFLAGS and rebuilding should work) 711.20Sjmc usr.sbin/mdsetimage - Build a static copy if 721.20Sjmc building a snapshot before fully bootstrapped. 731.15Schristos 741.15Schristos20010204: 751.15Schristos prepare the code to compile with stricter gcc flags. in 761.15Schristos particular start eliminating redundant declarations. Yacc 771.15Schristos needs to be installed before make build. 781.10Schristos 791.10Schristos20010114: 801.10Schristos introduce .if commands(target) in make(1). You need to 811.10Schristos bring everything up-to-date first, then without installing 821.23Stron anything make and install in usr.bin/make, then proceed 831.10Schristos with make build. 841.9Ssommerfe 851.9Ssommerfe20010101: 861.9Ssommerfe bsd.subdir.mk committed 20001230 had a bug which caused 871.9Ssommerfe afterinstall targets to run too soon; update again. 881.8Ssommerfe 891.8Ssommerfe20001230: 901.8Ssommerfe New share/mk files needed to support .WAIT in SUBDIR variables. 911.8Ssommerfe If you get make errors, 921.8Ssommerfe (cd share/mk; make install) 931.8Ssommerfe Also, PRINTOBJDIR has changed and is now used more heavily. 941.6Sad 951.6Sad20001019: 961.7Sad The `ca' device driver has been replaced by `ld'; although the 971.6Sad major and minor numbers haven't changed, you should update your /dev 981.6Sad directory. 991.1Sabs 1001.4Sitojun20000929: 1011.4Sitojun The following make directives are obsoleted. 1021.4Sitojun MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 1031.4Sitojun By default, RSA is built into libcrypto. IDEA and RC5 will not be 1041.16Swiz built into libcrypto. By using MKCRYPTO_{RC5,IDEA}, you can build 1051.4Sitojun additional library libcrypto_{idea,rc5}. 1061.4Sitojun 1071.1Sabs20000623: 1081.1Sabs MKCRYPTO and friends added to share/mk/bsd.own.mk. 1091.1Sabs 'cd share/mk ; make install' needed before make build. 1101.1Sabs 1111.1Sabs 1121.1SabsHints for a more successful build: 1131.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1141.2Smrg Build a new kernel first: 1151.2Smrg This makes sure that any new system calls or features 1161.2Smrg expected by the new userland will be present. This 1171.2Smrg helps to avoid critical errors when upgrading. 1181.1Sabs Use object directories: 1191.1Sabs This helps to keep stale object 1201.1Sabs files from polluting the build if a Makefile "forgets" 1211.1Sabs about one. It also makes it easier to clean up after 1221.1Sabs a build. It's also necessary if you want to use the 1231.1Sabs same source tree for multiple machines. 1241.1Sabs To use object directories: 1251.1Sabs a) cd /usr/src ; make cleandir 1261.2Smrg b) Add "OBJMACHINE=yes" to /etc/mk.conf 1271.2Smrg c) Add "MKOBJDIRS=yes" to /etc/mk.conf 1281.1Sabs d) cd /usr/src ; make build 1291.2Smrg Note that running "make obj" in a directory will create 1301.2Smrg in obj.$MACHINE directory. 1311.1Sabs Build to a DESTDIR: 1321.1Sabs This helps to keep old 1331.1Sabs installed files (especially libraries) from interfering 1341.1Sabs with the new build. 1351.1Sabs To build to a DESTDIR, set the DESTDIR environment 1361.2Smrg variable before running make build. It should be set to 1371.2Smrg the pathname of an initially empty directory. 1381.1Sabs Problems: you might need to update critical utilities 1391.1Sabs without using DESTDIR since nothing is executed 1401.1Sabs from what is installed in DESTDIR. 1411.1Sabs (See critical utils, below) 1421.1Sabs Build often: 1431.1Sabs This keeps critical utilities current enough to not choke 1441.1Sabs on any other part of the source tree that depends on up to 1451.1Sabs date functionality. 1461.1Sabs 1471.1SabsWhat to do if things don't work: 1481.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1491.1SabsWhen things don't work there is usually a few things that commonly 1501.1Sabsshould be done. 1511.1Sabs 1) make includes 1521.1Sabs This should be done automatically by make build. 1531.1Sabs 2) cd share/mk && make install 1541.1Sabs Again, automatically done by make build. 1551.1Sabs 1561.1SabsFailsafe rebuild of a small part of the tree: 1571.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1581.1SabsTo make sure you rebuild something correctly you want to do 1591.1Sabssomething like the following: 1601.1Sabs 1) Make sure the includes and .mk files are up to date. 1611.1Sabs 2) Make sure any program used to build the particular 1621.1Sabs utility is up to date. (yacc, lex, etc...) 1631.1Sabs 3) cd ...path/to/util... 1641.1Sabs make cleandir 1651.1Sabs rm ...all obj directories... 1661.1Sabs make cleandir # yes, again 1671.1Sabs make obj 1681.1Sabs make depend && make 1691.1Sabs 1701.1SabsFailsafe rebuild of the entire tree: 1711.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1721.1SabsIf you really want to make sure the source tree is clean and 1731.2Smrgready for a build try the following. Note that sourcing /etc/mk.conf 1741.2Smrg(a make(1) Makefile) in this manner is not right, and will not work 1751.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf. 1761.1Sabs 1771.1Sabs---cut here--- 1781.1Sabs#!/bin/sh 1791.1Sabs. /etc/mk.conf 1801.1Sabs 1811.1Sabsif [ -z $BSDSRCDIR ] ; then 1821.1Sabs BSDSRCDIR=/usr/src 1831.1Sabsfi 1841.1Sabsif [ \! -d $BSDSRCDIR ] ; then 1851.1Sabs echo Unable to find sources 1861.1Sabs exit 1 1871.1Sabsfi 1881.1Sabsfind $BSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \; 1891.1Sabs 1901.1Sabsif [ -z $BSDOBJDIR ] ; then 1911.1Sabs BSDOBJDIR=/usr/obj 1921.1Sabsfi 1931.1Sabsif [ -d $BSDOBJDIR ] ; then 1941.1Sabs rm -rf $BSDOBJDIR 1951.1Sabsfi 1961.1Sabs 1971.1Sabscd $BSDSRCDIR && make cleandir 1981.1Sabs 1991.1Sabs---cut here--- 2001.1Sabs 2011.1SabsCritical utilities: 2021.1Sabs^^^^^^^^^^^^^^^^^^^ 2031.1Sabs gnu/usr.bin/egcs 2041.3Sitojun usr.bin/compile_et 2051.1Sabs usr.bin/make 2061.1Sabs usr.bin/yacc 2071.1Sabs usr.bin/lex 2081.11Slukem usr.bin/xlint 2091.2Smrg usr.sbin/config 2101.1Sabs 2111.1SabsOther problems and possibly solutions: 2121.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2131.1SabsSymptom:Unreasonable compiler errors. 2141.1SabsFix: Rebuild gnu/usr.bin/egcs 2151.1Sabs 2161.1SabsSymptom:Complaints involving a Makefile. 2171.17SerhFix: Rebuild usr.bin/make: 2181.17Serh cd usr.bin/make && make && make install 2191.17Serh Or, a failsafe method if that doesn't work: 2201.17Serh cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin 2211.17Serh 2221.1SabsFix: Make sure .mk files are up to date. 2231.1Sabs cd share/mk && make install 2241.2Smrg 2251.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC. 2261.2SmrgFix: Rebuild usr.sbin/config 2271.1Sabs 2281.1SabsSymptom: 2291.1SabsFix: Rebuild usr.bin/yacc 2301.1Sabs 2311.1SabsSymptom: 2321.1SabsFix: Rebuild usr.bin/lex 2331.1Sabs 2341.1SabsSymptom: 2351.1SabsFix: rm /usr/lib/libbfd.a 2361.4Sitojun 2371.4SitojunSymptom:Obsolete intermediate files are used during compilation 2381.4SitojunFix: Try the following sequence of commands in the directory in question. 2391.4Sitojun make cleandir; rm `make print-objdir`; make cleandir; make obj 2401.4Sitojun (If you built the tree without "make obj" in the past, obsolete files 2411.4Sitojun may remain. The command tries to clean everything up) 2421.5Swiz 2431.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type 2441.5SwizFix: Rebuild and install usr.bin/menuc 2451.12Sitojun 2461.12SitojunSymptom:mklocale not found during build in share/locale/ctype 2471.12SitojunFix: Build and install usr.bin/mklocale 2481.13Sdogcow 2491.13SdogcowSymptom:undefined reference to `__assert13' 2501.13SdogcowFix: Rebuild and install lib/libc 2511.13Sdogcow 2521.19ScgdSymptom:usr.sbin/config fails to build. 2531.19ScgdFix: Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile. 2541.13Sdogcow 2551.19ScgdSymptom:undefined reference to `getprogname' or `setprogname' 2561.19ScgdFix: Rebuild and install lib/libc 2571.24Sabs 2581.24SabsSymptom:lint does not understand the '-X' option 2591.24SabsFix: May need to build & install libs with NOLINT=1 before rebuilding lint 260