UPDATING revision 1.26
11.26Sthorpej$NetBSD: UPDATING,v 1.26 2001/07/25 22:58:05 thorpej 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.25Sthorpej 111.25Sthorpej20010718: 121.25Sthorpej 131.25Sthorpej Enabled correct .init/.fini processing in crt0. The way this 141.25Sthorpej was done was to change a -I directive to cc(1), which means 151.25Sthorpej make(1) will have a stale dependency (it will be checking the 161.25Sthorpej timestamp on the wrong "dot_init.h"). 171.25Sthorpej 181.25Sthorpej The symptom you will see is that new programs die with SIGSEGV 191.25Sthorpej if you have a stale dependency. 201.25Sthorpej 211.25Sthorpej Solution: "make cleandir" in both lib/csu and libexec/ld.elf_so 221.25Sthorpej before starting your build. 231.26Sthorpej 241.26Sthorpej20010628: 251.26Sthorpej 261.26Sthorpej A construct was added to uvm_page.h that uncovered a bug 271.26Sthorpej in lint(1). If you get a warning/error about a non-portable 281.26Sthorpej bitfield, update your lint(1) before proceeding. 291.21Sjmc 301.21Sjmc20010226: 311.21Sjmc 321.22Sjmc Added named user/group to system. Need to hand add this in or builds 331.21Sjmc will break as mtree aborts early. 341.21Sjmc 351.21Sjmc To work around add by hand: 361.21Sjmc 371.21Sjmc named:*:14: 381.21Sjmc 391.22Sjmc to /etc/group and add: 401.22Sjmc 411.22Sjmc named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin 421.22Sjmc 431.22Sjmc to master.passwd (use vipw for instance if doing by hand). 441.22Sjmc 451.22Sjmc Now a make build should progress. 461.18Sjmc 471.18Sjmc20010219: 481.18Sjmc get/setprogname() added. Any hostprog's that may use this will need 491.20Sjmc to be bootstrapped manually until the host system is current. 501.18Sjmc 511.18Sjmc Known problems: sys/arch/macppc/stand/fixcoff 521.19Scgd usr.sbin/config (adding -DMAKE_BOOTSTRAP to 531.19Scgd CFLAGS and rebuilding should work) 541.20Sjmc usr.sbin/mdsetimage - Build a static copy if 551.20Sjmc building a snapshot before fully bootstrapped. 561.15Schristos 571.15Schristos20010204: 581.15Schristos prepare the code to compile with stricter gcc flags. in 591.15Schristos particular start eliminating redundant declarations. Yacc 601.15Schristos needs to be installed before make build. 611.10Schristos 621.10Schristos20010114: 631.10Schristos introduce .if commands(target) in make(1). You need to 641.10Schristos bring everything up-to-date first, then without installing 651.23Stron anything make and install in usr.bin/make, then proceed 661.10Schristos with make build. 671.9Ssommerfe 681.9Ssommerfe20010101: 691.9Ssommerfe bsd.subdir.mk committed 20001230 had a bug which caused 701.9Ssommerfe afterinstall targets to run too soon; update again. 711.8Ssommerfe 721.8Ssommerfe20001230: 731.8Ssommerfe New share/mk files needed to support .WAIT in SUBDIR variables. 741.8Ssommerfe If you get make errors, 751.8Ssommerfe (cd share/mk; make install) 761.8Ssommerfe Also, PRINTOBJDIR has changed and is now used more heavily. 771.6Sad 781.6Sad20001019: 791.7Sad The `ca' device driver has been replaced by `ld'; although the 801.6Sad major and minor numbers haven't changed, you should update your /dev 811.6Sad directory. 821.1Sabs 831.4Sitojun20000929: 841.4Sitojun The following make directives are obsoleted. 851.4Sitojun MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 861.4Sitojun By default, RSA is built into libcrypto. IDEA and RC5 will not be 871.16Swiz built into libcrypto. By using MKCRYPTO_{RC5,IDEA}, you can build 881.4Sitojun additional library libcrypto_{idea,rc5}. 891.4Sitojun 901.1Sabs20000623: 911.1Sabs MKCRYPTO and friends added to share/mk/bsd.own.mk. 921.1Sabs 'cd share/mk ; make install' needed before make build. 931.1Sabs 941.1Sabs 951.1SabsHints for a more successful build: 961.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 971.2Smrg Build a new kernel first: 981.2Smrg This makes sure that any new system calls or features 991.2Smrg expected by the new userland will be present. This 1001.2Smrg helps to avoid critical errors when upgrading. 1011.1Sabs Use object directories: 1021.1Sabs This helps to keep stale object 1031.1Sabs files from polluting the build if a Makefile "forgets" 1041.1Sabs about one. It also makes it easier to clean up after 1051.1Sabs a build. It's also necessary if you want to use the 1061.1Sabs same source tree for multiple machines. 1071.1Sabs To use object directories: 1081.1Sabs a) cd /usr/src ; make cleandir 1091.2Smrg b) Add "OBJMACHINE=yes" to /etc/mk.conf 1101.2Smrg c) Add "MKOBJDIRS=yes" to /etc/mk.conf 1111.1Sabs d) cd /usr/src ; make build 1121.2Smrg Note that running "make obj" in a directory will create 1131.2Smrg in obj.$MACHINE directory. 1141.1Sabs Build to a DESTDIR: 1151.1Sabs This helps to keep old 1161.1Sabs installed files (especially libraries) from interfering 1171.1Sabs with the new build. 1181.1Sabs To build to a DESTDIR, set the DESTDIR environment 1191.2Smrg variable before running make build. It should be set to 1201.2Smrg the pathname of an initially empty directory. 1211.1Sabs Problems: you might need to update critical utilities 1221.1Sabs without using DESTDIR since nothing is executed 1231.1Sabs from what is installed in DESTDIR. 1241.1Sabs (See critical utils, below) 1251.1Sabs Build often: 1261.1Sabs This keeps critical utilities current enough to not choke 1271.1Sabs on any other part of the source tree that depends on up to 1281.1Sabs date functionality. 1291.1Sabs 1301.1SabsWhat to do if things don't work: 1311.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1321.1SabsWhen things don't work there is usually a few things that commonly 1331.1Sabsshould be done. 1341.1Sabs 1) make includes 1351.1Sabs This should be done automatically by make build. 1361.1Sabs 2) cd share/mk && make install 1371.1Sabs Again, automatically done by make build. 1381.1Sabs 1391.1SabsFailsafe rebuild of a small part of the tree: 1401.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1411.1SabsTo make sure you rebuild something correctly you want to do 1421.1Sabssomething like the following: 1431.1Sabs 1) Make sure the includes and .mk files are up to date. 1441.1Sabs 2) Make sure any program used to build the particular 1451.1Sabs utility is up to date. (yacc, lex, etc...) 1461.1Sabs 3) cd ...path/to/util... 1471.1Sabs make cleandir 1481.1Sabs rm ...all obj directories... 1491.1Sabs make cleandir # yes, again 1501.1Sabs make obj 1511.1Sabs make depend && make 1521.1Sabs 1531.1SabsFailsafe rebuild of the entire tree: 1541.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1551.1SabsIf you really want to make sure the source tree is clean and 1561.2Smrgready for a build try the following. Note that sourcing /etc/mk.conf 1571.2Smrg(a make(1) Makefile) in this manner is not right, and will not work 1581.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf. 1591.1Sabs 1601.1Sabs---cut here--- 1611.1Sabs#!/bin/sh 1621.1Sabs. /etc/mk.conf 1631.1Sabs 1641.1Sabsif [ -z $BSDSRCDIR ] ; then 1651.1Sabs BSDSRCDIR=/usr/src 1661.1Sabsfi 1671.1Sabsif [ \! -d $BSDSRCDIR ] ; then 1681.1Sabs echo Unable to find sources 1691.1Sabs exit 1 1701.1Sabsfi 1711.1Sabsfind $BSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \; 1721.1Sabs 1731.1Sabsif [ -z $BSDOBJDIR ] ; then 1741.1Sabs BSDOBJDIR=/usr/obj 1751.1Sabsfi 1761.1Sabsif [ -d $BSDOBJDIR ] ; then 1771.1Sabs rm -rf $BSDOBJDIR 1781.1Sabsfi 1791.1Sabs 1801.1Sabscd $BSDSRCDIR && make cleandir 1811.1Sabs 1821.1Sabs---cut here--- 1831.1Sabs 1841.1SabsCritical utilities: 1851.1Sabs^^^^^^^^^^^^^^^^^^^ 1861.1Sabs gnu/usr.bin/egcs 1871.3Sitojun usr.bin/compile_et 1881.1Sabs usr.bin/make 1891.1Sabs usr.bin/yacc 1901.1Sabs usr.bin/lex 1911.11Slukem usr.bin/xlint 1921.2Smrg usr.sbin/config 1931.1Sabs 1941.1SabsOther problems and possibly solutions: 1951.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1961.1SabsSymptom:Unreasonable compiler errors. 1971.1SabsFix: Rebuild gnu/usr.bin/egcs 1981.1Sabs 1991.1SabsSymptom:Complaints involving a Makefile. 2001.17SerhFix: Rebuild usr.bin/make: 2011.17Serh cd usr.bin/make && make && make install 2021.17Serh Or, a failsafe method if that doesn't work: 2031.17Serh cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin 2041.17Serh 2051.1SabsFix: Make sure .mk files are up to date. 2061.1Sabs cd share/mk && make install 2071.2Smrg 2081.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC. 2091.2SmrgFix: Rebuild usr.sbin/config 2101.1Sabs 2111.1SabsSymptom: 2121.1SabsFix: Rebuild usr.bin/yacc 2131.1Sabs 2141.1SabsSymptom: 2151.1SabsFix: Rebuild usr.bin/lex 2161.1Sabs 2171.1SabsSymptom: 2181.1SabsFix: rm /usr/lib/libbfd.a 2191.4Sitojun 2201.4SitojunSymptom:Obsolete intermediate files are used during compilation 2211.4SitojunFix: Try the following sequence of commands in the directory in question. 2221.4Sitojun make cleandir; rm `make print-objdir`; make cleandir; make obj 2231.4Sitojun (If you built the tree without "make obj" in the past, obsolete files 2241.4Sitojun may remain. The command tries to clean everything up) 2251.5Swiz 2261.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type 2271.5SwizFix: Rebuild and install usr.bin/menuc 2281.12Sitojun 2291.12SitojunSymptom:mklocale not found during build in share/locale/ctype 2301.12SitojunFix: Build and install usr.bin/mklocale 2311.13Sdogcow 2321.13SdogcowSymptom:undefined reference to `__assert13' 2331.13SdogcowFix: Rebuild and install lib/libc 2341.13Sdogcow 2351.19ScgdSymptom:usr.sbin/config fails to build. 2361.19ScgdFix: Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile. 2371.13Sdogcow 2381.19ScgdSymptom:undefined reference to `getprogname' or `setprogname' 2391.19ScgdFix: Rebuild and install lib/libc 2401.24Sabs 2411.24SabsSymptom:lint does not understand the '-X' option 2421.24SabsFix: May need to build & install libs with NOLINT=1 before rebuilding lint 243