UPDATING revision 1.49
11.49Sjmc$NetBSD: UPDATING,v 1.49 2001/12/07 09:56:44 jmc 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.49Sjmc20011207: 111.49Sjmc 121.49Sjmc If you're attempting to build a snapshot on sparc64 and are getting 131.49Sjmc reloc errors from the toolchain groff binary this means your native 141.49Sjmc toolchain has some broken C++ bits. 151.49Sjmc 161.49Sjmc To fix: 171.49Sjmc 181.49Sjmc Build a new toolchain (i.e. build.sh -t) 191.49Sjmc Use the new toolchain to build and install natively (i.e. /usr/lib) 201.49Sjmc 211.49Sjmc gnu/lib/libgcc 221.49Sjmc gnu/lib/libstc++ 231.49Sjmc 241.49Sjmc After this a snapshot will be able to be built. 251.49Sjmc 261.47Sjmc20011201: 271.47Sjmc In order for a sparc64 build to work you must have a working awk. If 281.47Sjmc you've built and installed a system with the new toolchain up to this 291.47Sjmc point you do not have a working awk as it's abililty to do floating 301.47Sjmc point is broken. 311.47Sjmc 321.47Sjmc To build: 331.47Sjmc 341.47Sjmc remake and install gnu/lib/libgcc 351.47Sjmc remake and install gnu/usr.bin/gawk into /usr/bin (make sure it links 361.48Sjmc against the new libgcc.a) 371.47Sjmc 381.46Sthorpej20011128: 391.46Sthorpej Kernel config information was changed to use defflag in 401.46Sthorpej the various "files" files. Bug fixes to config(8) are 411.46Sthorpej required in order for this to work properly. Make sure 421.46Sthorpej to build and install in usr.sbin/config before attempting 431.46Sthorpej to build a new kernel. 441.46Sthorpej 451.45Syamt20011030: 461.45Syamt libc/locale/wcstod.c now needs new lint(1). Update lint(1) 471.45Syamt before building libc. 481.43Smason 491.44Stv20011029: 501.44Stv The new document BUILDING.mdoc (view with nroff | more, or 511.44Stv see pre-generated .txt and .html versions) describes the build 521.44Stv procedure in great detail. BUILDING, and the USE_NEW_TOOLCHAIN 531.44Stv build process, are intended in the long run to replace this 541.44Stv manual update log. 551.44Stv 561.44Stv Users building a USE_NEW_TOOLCHAIN system should read the 571.44Stv BUILDING document for caveats. Generally, BUILDING supersedes 581.44Stv UPDATING for these systems, as tool updating is taken care of 591.44Stv by the new build system. 601.42Sperry 611.42Sperry20011028: 621.42Sperry src/etc/Makefile now needs install to be able to handle 631.42Sperry symlinks that point to nowhere. A bug in install that 641.42Sperry prevented this was corrected. 651.42Sperry 661.42Sperry Solution: update and reinstall usr.bin/xinstall 671.42Sperry Better Solution: Use the new toolchain and it will just work 681.42Sperry for you. 691.40Slukem 701.40Slukem20011006: 711.40Slukem /etc/mtree/NetBSD.dist has been updated to take advantage of 721.40Slukem absolute path support added to mtree(8). Older mtree(8)s don't 731.40Slukem understand the format. 741.40Slukem 751.40Slukem Solution: update and reinstall usr.sbin/mtree 761.39Sjmc 771.39Sjmc20011004: 781.39Sjmc Crunchgen has been updated to work via reach-over makefiles. Updating 791.39Sjmc is suggested before running a snapshot build 801.36Stv 811.35Sthorpej20010915: 821.35Sthorpej The new "ubcperf" code committed by Chuck Silvers removed 831.35Sthorpej a header file, uvm/uvm_vnode.h. There may be stale .depend 841.35Sthorpej files that still reference this file. 851.35Sthorpej 861.35Sthorpej Solution: "make cleandir && make dependall" in affected 871.35Sthorpej directories. 881.31Senami 891.31Senami20010803: 901.31Senami grep.info is now built from grep.texi using makeinfo. Since it 911.31Senami requires makeinfo v4.0, you need to install new texinfo before 921.31Senami building gnu/usr.bin/grep. To install new texinfo, please follow 931.31Senami the instruction described in 20010726 entry. 941.30Senami 951.30Senami20010803: 961.41Swiz (i386 only): i386 kernel now uses new instructions like 971.41Swiz `fxsave' which old gas doesn't understand. To build the 981.41Swiz kernel successfuly, you need to build and install new gas 991.41Swiz (gnu/usr.bin/gas.new), or (temporarily) comment out 1001.41Swiz "options I686_CPU" from your kernel configuration until you 1011.41Swiz rebuilt your userland (and got a new gas). 1021.29Sbjh21 1031.29Sbjh2120010731: 1041.29Sbjh21 Bootloader update on ELF platforms. DDB in kernels from before 1051.29Sbjh21 this will be unable to read symbol tables provided by newer 1061.29Sbjh21 bootloaders. 1071.27Sassar 1081.27Sassar20010726: 1091.27Sassar Texinfo was updated to 4.0. To avoid failures when trying to 1101.28Sassar build the included texinfo files, do: 1111.28Sassar 1121.28Sassar cd src/gnu/usr.bin/texinfo 1131.28Sassar make MKINFO=no dependall install 1141.25Sthorpej 1151.25Sthorpej20010718: 1161.25Sthorpej Enabled correct .init/.fini processing in crt0. The way this 1171.25Sthorpej was done was to change a -I directive to cc(1), which means 1181.25Sthorpej make(1) will have a stale dependency (it will be checking the 1191.25Sthorpej timestamp on the wrong "dot_init.h"). 1201.25Sthorpej 1211.25Sthorpej The symptom you will see is that new programs die with SIGSEGV 1221.25Sthorpej if you have a stale dependency. 1231.25Sthorpej 1241.25Sthorpej Solution: "make cleandir" in both lib/csu and libexec/ld.elf_so 1251.25Sthorpej before starting your build. 1261.26Sthorpej 1271.26Sthorpej20010628: 1281.26Sthorpej A construct was added to uvm_page.h that uncovered a bug 1291.26Sthorpej in lint(1). If you get a warning/error about a non-portable 1301.26Sthorpej bitfield, update your lint(1) before proceeding. 1311.21Sjmc 1321.21Sjmc20010226: 1331.22Sjmc Added named user/group to system. Need to hand add this in or builds 1341.21Sjmc will break as mtree aborts early. 1351.21Sjmc 1361.21Sjmc To work around add by hand: 1371.21Sjmc 1381.21Sjmc named:*:14: 1391.21Sjmc 1401.22Sjmc to /etc/group and add: 1411.22Sjmc 1421.22Sjmc named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin 1431.22Sjmc 1441.22Sjmc to master.passwd (use vipw for instance if doing by hand). 1451.22Sjmc 1461.22Sjmc Now a make build should progress. 1471.18Sjmc 1481.18Sjmc20010219: 1491.18Sjmc get/setprogname() added. Any hostprog's that may use this will need 1501.20Sjmc to be bootstrapped manually until the host system is current. 1511.18Sjmc 1521.18Sjmc Known problems: sys/arch/macppc/stand/fixcoff 1531.19Scgd usr.sbin/config (adding -DMAKE_BOOTSTRAP to 1541.19Scgd CFLAGS and rebuilding should work) 1551.20Sjmc usr.sbin/mdsetimage - Build a static copy if 1561.20Sjmc building a snapshot before fully bootstrapped. 1571.15Schristos 1581.15Schristos20010204: 1591.15Schristos prepare the code to compile with stricter gcc flags. in 1601.15Schristos particular start eliminating redundant declarations. Yacc 1611.15Schristos needs to be installed before make build. 1621.10Schristos 1631.10Schristos20010114: 1641.10Schristos introduce .if commands(target) in make(1). You need to 1651.10Schristos bring everything up-to-date first, then without installing 1661.23Stron anything make and install in usr.bin/make, then proceed 1671.10Schristos with make build. 1681.9Ssommerfe 1691.9Ssommerfe20010101: 1701.9Ssommerfe bsd.subdir.mk committed 20001230 had a bug which caused 1711.9Ssommerfe afterinstall targets to run too soon; update again. 1721.8Ssommerfe 1731.8Ssommerfe20001230: 1741.8Ssommerfe New share/mk files needed to support .WAIT in SUBDIR variables. 1751.8Ssommerfe If you get make errors, 1761.8Ssommerfe (cd share/mk; make install) 1771.8Ssommerfe Also, PRINTOBJDIR has changed and is now used more heavily. 1781.6Sad 1791.6Sad20001019: 1801.7Sad The `ca' device driver has been replaced by `ld'; although the 1811.6Sad major and minor numbers haven't changed, you should update your /dev 1821.6Sad directory. 1831.1Sabs 1841.4Sitojun20000929: 1851.4Sitojun The following make directives are obsoleted. 1861.4Sitojun MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 1871.4Sitojun By default, RSA is built into libcrypto. IDEA and RC5 will not be 1881.16Swiz built into libcrypto. By using MKCRYPTO_{RC5,IDEA}, you can build 1891.4Sitojun additional library libcrypto_{idea,rc5}. 1901.1Sabs 1911.1Sabs 1921.1SabsHints for a more successful build: 1931.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 1941.2Smrg Build a new kernel first: 1951.2Smrg This makes sure that any new system calls or features 1961.2Smrg expected by the new userland will be present. This 1971.2Smrg helps to avoid critical errors when upgrading. 1981.1Sabs Use object directories: 1991.1Sabs This helps to keep stale object 2001.1Sabs files from polluting the build if a Makefile "forgets" 2011.1Sabs about one. It also makes it easier to clean up after 2021.1Sabs a build. It's also necessary if you want to use the 2031.1Sabs same source tree for multiple machines. 2041.1Sabs To use object directories: 2051.1Sabs a) cd /usr/src ; make cleandir 2061.2Smrg b) Add "OBJMACHINE=yes" to /etc/mk.conf 2071.2Smrg c) Add "MKOBJDIRS=yes" to /etc/mk.conf 2081.1Sabs d) cd /usr/src ; make build 2091.2Smrg Note that running "make obj" in a directory will create 2101.2Smrg in obj.$MACHINE directory. 2111.1Sabs Build to a DESTDIR: 2121.1Sabs This helps to keep old 2131.1Sabs installed files (especially libraries) from interfering 2141.1Sabs with the new build. 2151.1Sabs To build to a DESTDIR, set the DESTDIR environment 2161.2Smrg variable before running make build. It should be set to 2171.2Smrg the pathname of an initially empty directory. 2181.1Sabs Problems: you might need to update critical utilities 2191.1Sabs without using DESTDIR since nothing is executed 2201.1Sabs from what is installed in DESTDIR. 2211.1Sabs (See critical utils, below) 2221.1Sabs Build often: 2231.1Sabs This keeps critical utilities current enough to not choke 2241.1Sabs on any other part of the source tree that depends on up to 2251.1Sabs date functionality. 2261.1Sabs 2271.1SabsWhat to do if things don't work: 2281.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2291.1SabsWhen things don't work there is usually a few things that commonly 2301.1Sabsshould be done. 2311.1Sabs 1) make includes 2321.1Sabs This should be done automatically by make build. 2331.1Sabs 2) cd share/mk && make install 2341.1Sabs Again, automatically done by make build. 2351.1Sabs 2361.1SabsFailsafe rebuild of a small part of the tree: 2371.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2381.1SabsTo make sure you rebuild something correctly you want to do 2391.1Sabssomething like the following: 2401.1Sabs 1) Make sure the includes and .mk files are up to date. 2411.1Sabs 2) Make sure any program used to build the particular 2421.1Sabs utility is up to date. (yacc, lex, etc...) 2431.1Sabs 3) cd ...path/to/util... 2441.1Sabs make cleandir 2451.1Sabs rm ...all obj directories... 2461.1Sabs make cleandir # yes, again 2471.1Sabs make obj 2481.1Sabs make depend && make 2491.1Sabs 2501.1SabsFailsafe rebuild of the entire tree: 2511.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2521.1SabsIf you really want to make sure the source tree is clean and 2531.2Smrgready for a build try the following. Note that sourcing /etc/mk.conf 2541.2Smrg(a make(1) Makefile) in this manner is not right, and will not work 2551.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf. 2561.1Sabs 2571.1Sabs---cut here--- 2581.1Sabs#!/bin/sh 2591.1Sabs. /etc/mk.conf 2601.1Sabs 2611.1Sabsif [ -z $BSDSRCDIR ] ; then 2621.1Sabs BSDSRCDIR=/usr/src 2631.1Sabsfi 2641.1Sabsif [ \! -d $BSDSRCDIR ] ; then 2651.1Sabs echo Unable to find sources 2661.1Sabs exit 1 2671.1Sabsfi 2681.1Sabsfind $BSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \; 2691.1Sabs 2701.1Sabsif [ -z $BSDOBJDIR ] ; then 2711.1Sabs BSDOBJDIR=/usr/obj 2721.1Sabsfi 2731.1Sabsif [ -d $BSDOBJDIR ] ; then 2741.1Sabs rm -rf $BSDOBJDIR 2751.1Sabsfi 2761.1Sabs 2771.1Sabscd $BSDSRCDIR && make cleandir 2781.1Sabs 2791.1Sabs---cut here--- 2801.1Sabs 2811.1SabsCritical utilities: 2821.1Sabs^^^^^^^^^^^^^^^^^^^ 2831.1Sabs gnu/usr.bin/egcs 2841.3Sitojun usr.bin/compile_et 2851.1Sabs usr.bin/make 2861.1Sabs usr.bin/yacc 2871.1Sabs usr.bin/lex 2881.11Slukem usr.bin/xlint 2891.2Smrg usr.sbin/config 2901.1Sabs 2911.34SsimonbOther problems and possible solutions: 2921.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 2931.1SabsSymptom:Unreasonable compiler errors. 2941.1SabsFix: Rebuild gnu/usr.bin/egcs 2951.1Sabs 2961.1SabsSymptom:Complaints involving a Makefile. 2971.17SerhFix: Rebuild usr.bin/make: 2981.17Serh cd usr.bin/make && make && make install 2991.17Serh Or, a failsafe method if that doesn't work: 3001.17Serh cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin 3011.17Serh 3021.1SabsFix: Make sure .mk files are up to date. 3031.1Sabs cd share/mk && make install 3041.2Smrg 3051.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC. 3061.2SmrgFix: Rebuild usr.sbin/config 3071.1Sabs 3081.1SabsSymptom: 3091.1SabsFix: Rebuild usr.bin/yacc 3101.1Sabs 3111.1SabsSymptom: 3121.1SabsFix: Rebuild usr.bin/lex 3131.1Sabs 3141.1SabsSymptom: 3151.1SabsFix: rm /usr/lib/libbfd.a 3161.4Sitojun 3171.4SitojunSymptom:Obsolete intermediate files are used during compilation 3181.4SitojunFix: Try the following sequence of commands in the directory in question. 3191.4Sitojun make cleandir; rm `make print-objdir`; make cleandir; make obj 3201.4Sitojun (If you built the tree without "make obj" in the past, obsolete files 3211.4Sitojun may remain. The command tries to clean everything up) 3221.5Swiz 3231.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type 3241.5SwizFix: Rebuild and install usr.bin/menuc 3251.12Sitojun 3261.12SitojunSymptom:mklocale not found during build in share/locale/ctype 3271.12SitojunFix: Build and install usr.bin/mklocale 3281.13Sdogcow 3291.13SdogcowSymptom:undefined reference to `__assert13' 3301.13SdogcowFix: Rebuild and install lib/libc 3311.13Sdogcow 3321.19ScgdSymptom:usr.sbin/config fails to build. 3331.19ScgdFix: Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile. 3341.13Sdogcow 3351.19ScgdSymptom:undefined reference to `getprogname' or `setprogname' 3361.19ScgdFix: Rebuild and install lib/libc 3371.24Sabs 3381.24SabsSymptom:lint does not understand the '-X' option 3391.24SabsFix: May need to build & install libs with NOLINT=1 before rebuilding lint 340