UPDATING revision 1.84
11.84Sgrant$NetBSD: UPDATING,v 1.84 2003/02/06 04:37:59 grant 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.82Swiz 111.82Swiz20030117: 121.82Swiz Texinfo was updated to 4.3. To avoid failures when trying to 131.82Swiz build the included texinfo files, do: 141.82Swiz 151.82Swiz cd src/gnu/usr.bin/texinfo 161.82Swiz make MKINFO=no dependall install 171.81Slukem 181.81Slukem20021223: 191.81Slukem The METALOG format changed slightly, to remove the leading 201.81Slukem "${DESTDIR}" from path names. 211.81Slukem This only affects people building with UNPRIVED. 221.81Slukem For complete safety, remove the DESTDIR entirely and 231.81Slukem update tools/mtree, before running make build. 241.80Slukem 251.80Slukem20021219: 261.80Slukem install(1) had a '-N dbdir' option added, to specify an 271.80Slukem alternate location to look up users & groups (instead 281.80Slukem of the host system passwd(5) and group(5) databases). 291.80Slukem 301.80Slukem The build system was modified to take advantage of 311.80Slukem this option (using ${NETBSDSRCDIR}/etc), so if you 321.83Skei use USETOOLS==no, you may have to rebuild and 331.80Slukem reinstall usr.bin/xinstall first. 341.78Slukem 351.78Slukem20021130: 361.78Slukem fparseln(3) moved from libutil to libc. 371.78Slukem If building to DESTDIR=/, reinstall the includes 381.78Slukem and rebuild libc: 391.78Slukem make includes 401.78Slukem make do-lib-libc 411.78Slukem If using build.sh, "cd tools/compat && make clean" 421.78Slukem before rebuilding the tools. 431.77Slukem 441.77Slukem20021126: 451.77Slukem The mk.conf(5) variable SYS_INCLUDE has been deprecated, 461.77Slukem including the optional "SYS_INCLUDE=symlinks" support. 471.77Slukem All header files, including <sys/*.h> are copied into 481.77Slukem /usr/include. 491.76Sthorpej 501.76Sthorpej20021121: 511.76Sthorpej The C run-time support files crtbegin.o and crtend.o 521.76Sthorpej (and their companions crtbeginS.o and crtendS.o) were 531.76Sthorpej split up, with new crti.o and crtn.o files resulting. 541.76Sthorpej This means that libtool needs to be rebuilt once the 551.76Sthorpej new libraries are installed. The process of rebuilding 561.76Sthorpej libtool will cause it to automatically notice the new 571.76Sthorpej required files, but it *must* be rebuilt in order to 581.76Sthorpej do this. 591.76Sthorpej 601.76Sthorpej An out-of-date libtool will result in shared libraries 611.76Sthorpej which lack _init() and _fini() routines, which means that 621.76Sthorpej their global contructors/destructors will not be invoked. 631.75Sthorpej 641.75Sthorpej20021121: 651.75Sthorpej A bug related to how ARM ELF objects were tagged has been 661.75Sthorpej corrected. 671.75Sthorpej 681.75Sthorpej NetBSD ARM ELF uses the soft-VFP floating point model by 691.75Sthorpej default. However, the assembler lacked support for marking 701.75Sthorpej objects as using the VFP floating point format, and the 711.79Swiz compiler was not properly passing the flag indicating "soft-VFP" 721.75Sthorpej to the assembler. 731.75Sthorpej 741.75Sthorpej Unfortunately, this means that the linker will now consider 751.75Sthorpej old (i.e. not marked "softvfp") NetBSD ARM ELF objects to be 761.75Sthorpej incompatible with new (properly marked) objects. 771.75Sthorpej 781.75Sthorpej The problem will only manifest itself if you attempt to compile 791.75Sthorpej a new program using the fixed toolchain, and link that program 801.75Sthorpej against old libraries which do not have the proper "softvfp" 811.75Sthorpej markings. ALL OF YOUR EXISTING BINARIES AND SHARED LIBRARIES 821.75Sthorpej WILL CONTINUE TO WORK PROPERLY. 831.75Sthorpej 841.75Sthorpej The only work-around for the problem is to recompile all of 851.75Sthorpej the libraries on the system. The easiest way to do this for 861.79Swiz system libraries is to install a binary snapshot; they are 871.75Sthorpej generally available on releng.netbsd.org. Any packages you 881.75Sthorpej have installed which supply libraries will have to be recompiled 891.75Sthorpej if you wish to link new programs against those libraries. 901.75Sthorpej 911.75Sthorpej If you have questions about this matter, please contact 921.75Sthorpej port-arm@netbsd.org. 931.73Sprovos 941.73Sprovos20021011: 951.73Sprovos Systrace has been improved to support privilege elevation. 961.73Sprovos Updating the kernel requires the userland part of systrace 971.79Swiz to be rebuilt. 981.72Sthorpej 991.72Sthorpej20021010: 1001.72Sthorpej The config(8) grammar was changed to allow options to register 1011.72Sthorpej dependencies on attributes, as well as other options. Users 1021.72Sthorpej must update and reinstall usr.sbin/config before building a new 1031.72Sthorpej kernel. 1041.70Sthorpej 1051.70Sthorpej20021009: 1061.70Sthorpej A new attribute dependency syntax was introduced to config(8), 1071.70Sthorpej which is now used by the SCSI configuration description. Users 1081.71Swiz must update and reinstall usr.sbin/config before building a new 1091.70Sthorpej kernel. 1101.69Sthorpej 1111.69Sthorpej20021003: 1121.69Sthorpej Several changes have been made to the autoconfiguration 1131.69Sthorpej framework. Users must update and reinstall usr.sbin/config 1141.69Sthorpej before building a new kernel. 1151.74Sjschauma 1161.74Sjschauma20021001: 1171.74Sjschauma The i386mp branch has been merged. To compile a kernel, users 1181.74Sjschauma will need to add the option 'cpu* at mainbus?' to their configuration 1191.74Sjschauma file. Multiprocessor kernels will need 1201.74Sjschauma ioapic* at mainbus? apid ? 1211.74Sjschauma options MULTIPROCESSOR 1221.74Sjschauma options COM_MPLOCK 1231.68Slukem 1241.68Slukem20020922: 1251.68Slukem MKDYNAMICROOT=yes enabled by default, which means that 1261.68Slukem certain shared libraries are installed into /lib, the shared 1271.68Slukem linker is installed into /libexec, and all programs in /bin 1281.68Slukem and /sbin are dynamically linked. 1291.68Slukem If you do not use "make build", you should ensure that 1301.68Slukem you have the libraries and shared linker in the new locations, 1311.68Slukem with: 1321.68Slukem make do-lib-csu do-lib-libc do-lib do-gnu-lib do-ld.elf_so 1331.67Slukem 1341.67Slukem20020917: 1351.67Slukem USE_NEW_TOOLCHAIN has been replaced with: 1361.67Slukem - TOOLCHAIN_MISSING -- set to "yes" on platforms for which 1371.67Slukem there is no working in-tree toolchain (hppa, ns32k, sh5, 1381.67Slukem x86_64). 1391.67Slukem - EXTERNAL_TOOLCHAIN -- if defined by the user, points to the 1401.79Swiz root of an external toolchain (e.g. /usr/local/gnu). This 1411.67Slukem enables the cross-build framework even for TOOLCHAIN_MISSING 1421.67Slukem platforms. 1431.66Sgehenna 1441.66Sgehenna20020906: 1451.66Sgehenna gehenna-devsw has been merged into the trunk. Need to update and 1461.79Swiz reinstall usr.sbin/config before building the kernel. 1471.65Slukem 1481.65Slukem20020822: 1491.65Slukem Crunched rescue tools (contents of /bin and /sbin, plus others) 1501.65Slukem are now provided in /rescue. 1511.65Slukem 1521.65Slukem To ensure that these are built statically linked (no matter 1531.65Slukem what the setting of LDSTATIC is), use a crunchgen(1) built 1541.65Slukem from sources newer than 20020820 (see the next entry). 1551.65Slukem 1561.65Slukem20020820: 1571.65Slukem crunchgen(1) changed to ensure that the generated program 1581.65Slukem is statically linked. 1591.65Slukem 1601.65Slukem Solution: update and reinstall usr.bin/crunch 1611.84Sgrant 1621.84Sgrant20020605: 1631.84Sgrant smmsp user/group has been added for sendmail. 1641.84Sgrant 1651.84Sgrant Add the following into /etc/group: 1661.84Sgrant 1671.84Sgrant smmsp:*:17: 1681.84Sgrant 1691.84Sgrant and the following to /etc/master.passwd (via vipw): 1701.84Sgrant 1711.84Sgrant smmsp:*:17:17::0:0:Sendmail Message Submission Program:/nonexistent:/sbin/nologin 1721.61Sitojun 1731.61Sitojun20020515: 1741.61Sitojun sshd user/group has been added. Need to hand add this in, or sshd 1751.61Sitojun will not let you log in (with default, or UsePrivlegeSeparation=yes) 1761.61Sitojun 1771.61Sitojun Add the following into /etc/group: 1781.61Sitojun 1791.61Sitojun sshd:*:16: 1801.61Sitojun 1811.61Sitojun and the following to /etc/master.passwd (via vipw): 1821.61Sitojun 1831.63Senami sshd:*:16:16::0:0:& pseudo-user:/var/chroot/sshd:/sbin/nologin 1841.61Sitojun 1851.79Swiz Also /var/chroot/sshd directory needs to be present (digged as part of 1861.79Swiz the build process). 1871.60Ssommerfe 1881.60Ssommerfe20020426: 1891.60Ssommerfe NBUILDJOBS obsoleted in favor of just using -j. 1901.59Slukem 1911.59Slukem20020426: 1921.59Slukem etc/postinstall added, which performs various checks for 1931.59Slukem configuration file updates and changes, and can fix most of 1941.59Slukem the problems identified. 1951.59Slukem This should make it much easier to upgrade a system's 1961.59Slukem configuration from earlier systems (as far back as NetBSD 1.5). 1971.56Slukem 1981.56Slukem20020320: 1991.79Swiz <bsd.lib.mk> needs a new install(1) for its "-a cmd" support. 2001.79Swiz Build and install at usr.bin/xinstall before the build. 2011.56Slukem 2021.55Sitojun20020319: 2031.79Swiz Raw IPv6 socket now makes strict checking for sa_family and sa_len 2041.79Swiz on send(2) operation. Be sure to have sbin/rtsol and usr.sbin/rtsold 2051.55Sitojun newer than November 2001 when you upgrade the kernel. 2061.55Sitojun 2071.54Sitojun20020311: 2081.54Sitojun ssh configuration files were moved from /etc to /etc/ssh. Beware 2091.54Sitojun if you restart your machine from remote. Note that sshd.conf needs 2101.54Sitojun to be changed (due to the use of "/etc" inside). 2111.54Sitojun 2121.54Sitojun20020223: 2131.53Smatt Users of the VAX port will need to rebuild and install gas 2141.53Smatt so it deal with the now present register prefix used in all 2151.53Smatt the VAX assembly files. 2161.53Smatt 2171.50Sitojun20020118: 2181.50Sitojun ntpd user/group has been added. Need to hand add this in or builds 2191.50Sitojun will break as mtree aborts early. 2201.50Sitojun 2211.50Sitojun Add the following into /etc/group: 2221.50Sitojun 2231.50Sitojun ntpd:*:15: 2241.50Sitojun 2251.50Sitojun and the following to /etc/master.passwd (via vipw): 2261.50Sitojun 2271.50Sitojun ntpd:*:15:15::0:0:Ntpd pseudo-user:/var/chroot/ntpd:/sbin/nologin 2281.50Sitojun 2291.49Sjmc20011207: 2301.49Sjmc If you're attempting to build a snapshot on sparc64 and are getting 2311.49Sjmc reloc errors from the toolchain groff binary this means your native 2321.49Sjmc toolchain has some broken C++ bits. 2331.49Sjmc 2341.49Sjmc To fix: 2351.49Sjmc 2361.49Sjmc Build a new toolchain (i.e. build.sh -t) 2371.49Sjmc Use the new toolchain to build and install natively (i.e. /usr/lib) 2381.49Sjmc 2391.49Sjmc gnu/lib/libgcc 2401.51Spooka gnu/lib/libstdc++ 2411.49Sjmc 2421.49Sjmc After this a snapshot will be able to be built. 2431.49Sjmc 2441.47Sjmc20011201: 2451.47Sjmc In order for a sparc64 build to work you must have a working awk. If 2461.47Sjmc you've built and installed a system with the new toolchain up to this 2471.52Swiz point you do not have a working awk as its ability to do floating 2481.47Sjmc point is broken. 2491.47Sjmc 2501.47Sjmc To build: 2511.47Sjmc 2521.47Sjmc remake and install gnu/lib/libgcc 2531.47Sjmc remake and install gnu/usr.bin/gawk into /usr/bin (make sure it links 2541.48Sjmc against the new libgcc.a) 2551.47Sjmc 2561.46Sthorpej20011128: 2571.46Sthorpej Kernel config information was changed to use defflag in 2581.46Sthorpej the various "files" files. Bug fixes to config(8) are 2591.46Sthorpej required in order for this to work properly. Make sure 2601.46Sthorpej to build and install in usr.sbin/config before attempting 2611.46Sthorpej to build a new kernel. 2621.46Sthorpej 2631.45Syamt20011030: 2641.45Syamt libc/locale/wcstod.c now needs new lint(1). Update lint(1) 2651.45Syamt before building libc. 2661.43Smason 2671.44Stv20011029: 2681.44Stv The new document BUILDING.mdoc (view with nroff | more, or 2691.44Stv see pre-generated .txt and .html versions) describes the build 2701.44Stv procedure in great detail. BUILDING, and the USE_NEW_TOOLCHAIN 2711.44Stv build process, are intended in the long run to replace this 2721.44Stv manual update log. 2731.44Stv 2741.44Stv Users building a USE_NEW_TOOLCHAIN system should read the 2751.44Stv BUILDING document for caveats. Generally, BUILDING supersedes 2761.44Stv UPDATING for these systems, as tool updating is taken care of 2771.44Stv by the new build system. 2781.42Sperry 2791.42Sperry20011028: 2801.42Sperry src/etc/Makefile now needs install to be able to handle 2811.42Sperry symlinks that point to nowhere. A bug in install that 2821.42Sperry prevented this was corrected. 2831.42Sperry 2841.42Sperry Solution: update and reinstall usr.bin/xinstall 2851.42Sperry Better Solution: Use the new toolchain and it will just work 2861.42Sperry for you. 2871.40Slukem 2881.40Slukem20011006: 2891.40Slukem /etc/mtree/NetBSD.dist has been updated to take advantage of 2901.40Slukem absolute path support added to mtree(8). Older mtree(8)s don't 2911.40Slukem understand the format. 2921.40Slukem 2931.40Slukem Solution: update and reinstall usr.sbin/mtree 2941.39Sjmc 2951.39Sjmc20011004: 2961.39Sjmc Crunchgen has been updated to work via reach-over makefiles. Updating 2971.39Sjmc is suggested before running a snapshot build 2981.36Stv 2991.35Sthorpej20010915: 3001.35Sthorpej The new "ubcperf" code committed by Chuck Silvers removed 3011.35Sthorpej a header file, uvm/uvm_vnode.h. There may be stale .depend 3021.35Sthorpej files that still reference this file. 3031.35Sthorpej 3041.35Sthorpej Solution: "make cleandir && make dependall" in affected 3051.35Sthorpej directories. 3061.31Senami 3071.31Senami20010803: 3081.31Senami grep.info is now built from grep.texi using makeinfo. Since it 3091.31Senami requires makeinfo v4.0, you need to install new texinfo before 3101.31Senami building gnu/usr.bin/grep. To install new texinfo, please follow 3111.31Senami the instruction described in 20010726 entry. 3121.30Senami 3131.64Ssommerfe20010803: 3141.41Swiz (i386 only): i386 kernel now uses new instructions like 3151.41Swiz `fxsave' which old gas doesn't understand. To build the 3161.64Ssommerfe kernel successfully, you need to build and install a new toolchain, 3171.64Ssommerfe (i.e., build.sh -t) or (temporarily) comment out "options I686_CPU" 3181.64Ssommerfe from your kernel configuration until you rebuild your userland. 3191.64Ssommerfe See 20011029 above and BUILDING file in this directory for more information. 3201.64Ssommerfe [updated 20020630 since i386 gas moved when USE_NEW_TOOLCHAIN enabled] 3211.29Sbjh21 3221.29Sbjh2120010731: 3231.29Sbjh21 Bootloader update on ELF platforms. DDB in kernels from before 3241.29Sbjh21 this will be unable to read symbol tables provided by newer 3251.29Sbjh21 bootloaders. 3261.27Sassar 3271.27Sassar20010726: 3281.27Sassar Texinfo was updated to 4.0. To avoid failures when trying to 3291.28Sassar build the included texinfo files, do: 3301.28Sassar 3311.28Sassar cd src/gnu/usr.bin/texinfo 3321.28Sassar make MKINFO=no dependall install 3331.25Sthorpej 3341.25Sthorpej20010718: 3351.25Sthorpej Enabled correct .init/.fini processing in crt0. The way this 3361.25Sthorpej was done was to change a -I directive to cc(1), which means 3371.25Sthorpej make(1) will have a stale dependency (it will be checking the 3381.25Sthorpej timestamp on the wrong "dot_init.h"). 3391.25Sthorpej 3401.25Sthorpej The symptom you will see is that new programs die with SIGSEGV 3411.25Sthorpej if you have a stale dependency. 3421.25Sthorpej 3431.25Sthorpej Solution: "make cleandir" in both lib/csu and libexec/ld.elf_so 3441.25Sthorpej before starting your build. 3451.26Sthorpej 3461.26Sthorpej20010628: 3471.26Sthorpej A construct was added to uvm_page.h that uncovered a bug 3481.26Sthorpej in lint(1). If you get a warning/error about a non-portable 3491.26Sthorpej bitfield, update your lint(1) before proceeding. 3501.21Sjmc 3511.21Sjmc20010226: 3521.22Sjmc Added named user/group to system. Need to hand add this in or builds 3531.21Sjmc will break as mtree aborts early. 3541.21Sjmc 3551.21Sjmc To work around add by hand: 3561.21Sjmc 3571.21Sjmc named:*:14: 3581.21Sjmc 3591.22Sjmc to /etc/group and add: 3601.22Sjmc 3611.22Sjmc named:*:14:14::0:0:Named pseudo-user:/var/named:/sbin/nologin 3621.22Sjmc 3631.22Sjmc to master.passwd (use vipw for instance if doing by hand). 3641.22Sjmc 3651.22Sjmc Now a make build should progress. 3661.18Sjmc 3671.18Sjmc20010219: 3681.52Swiz get/setprogname() added. Any hostprogs that may use this will need 3691.20Sjmc to be bootstrapped manually until the host system is current. 3701.18Sjmc 3711.18Sjmc Known problems: sys/arch/macppc/stand/fixcoff 3721.19Scgd usr.sbin/config (adding -DMAKE_BOOTSTRAP to 3731.19Scgd CFLAGS and rebuilding should work) 3741.20Sjmc usr.sbin/mdsetimage - Build a static copy if 3751.20Sjmc building a snapshot before fully bootstrapped. 3761.15Schristos 3771.15Schristos20010204: 3781.15Schristos prepare the code to compile with stricter gcc flags. in 3791.15Schristos particular start eliminating redundant declarations. Yacc 3801.15Schristos needs to be installed before make build. 3811.10Schristos 3821.10Schristos20010114: 3831.10Schristos introduce .if commands(target) in make(1). You need to 3841.10Schristos bring everything up-to-date first, then without installing 3851.23Stron anything make and install in usr.bin/make, then proceed 3861.10Schristos with make build. 3871.9Ssommerfe 3881.9Ssommerfe20010101: 3891.9Ssommerfe bsd.subdir.mk committed 20001230 had a bug which caused 3901.9Ssommerfe afterinstall targets to run too soon; update again. 3911.8Ssommerfe 3921.8Ssommerfe20001230: 3931.8Ssommerfe New share/mk files needed to support .WAIT in SUBDIR variables. 3941.8Ssommerfe If you get make errors, 3951.8Ssommerfe (cd share/mk; make install) 3961.8Ssommerfe Also, PRINTOBJDIR has changed and is now used more heavily. 3971.6Sad 3981.6Sad20001019: 3991.7Sad The `ca' device driver has been replaced by `ld'; although the 4001.6Sad major and minor numbers haven't changed, you should update your /dev 4011.6Sad directory. 4021.1Sabs 4031.4Sitojun20000929: 4041.4Sitojun The following make directives are obsoleted. 4051.4Sitojun MKCRYPTO_RSA NOCRYPTO_RSA NOCRYPTO_RC5 NOCRYPTO_IDEA 4061.4Sitojun By default, RSA is built into libcrypto. IDEA and RC5 will not be 4071.16Swiz built into libcrypto. By using MKCRYPTO_{RC5,IDEA}, you can build 4081.4Sitojun additional library libcrypto_{idea,rc5}. 4091.1Sabs 4101.1Sabs 4111.1SabsHints for a more successful build: 4121.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 4131.2Smrg Build a new kernel first: 4141.2Smrg This makes sure that any new system calls or features 4151.2Smrg expected by the new userland will be present. This 4161.2Smrg helps to avoid critical errors when upgrading. 4171.1Sabs Use object directories: 4181.1Sabs This helps to keep stale object 4191.1Sabs files from polluting the build if a Makefile "forgets" 4201.1Sabs about one. It also makes it easier to clean up after 4211.1Sabs a build. It's also necessary if you want to use the 4221.1Sabs same source tree for multiple machines. 4231.1Sabs To use object directories: 4241.1Sabs a) cd /usr/src ; make cleandir 4251.2Smrg b) Add "OBJMACHINE=yes" to /etc/mk.conf 4261.2Smrg c) Add "MKOBJDIRS=yes" to /etc/mk.conf 4271.1Sabs d) cd /usr/src ; make build 4281.2Smrg Note that running "make obj" in a directory will create 4291.2Smrg in obj.$MACHINE directory. 4301.1Sabs Build to a DESTDIR: 4311.1Sabs This helps to keep old 4321.1Sabs installed files (especially libraries) from interfering 4331.1Sabs with the new build. 4341.1Sabs To build to a DESTDIR, set the DESTDIR environment 4351.2Smrg variable before running make build. It should be set to 4361.2Smrg the pathname of an initially empty directory. 4371.1Sabs Problems: you might need to update critical utilities 4381.1Sabs without using DESTDIR since nothing is executed 4391.1Sabs from what is installed in DESTDIR. 4401.1Sabs (See critical utils, below) 4411.1Sabs Build often: 4421.1Sabs This keeps critical utilities current enough to not choke 4431.1Sabs on any other part of the source tree that depends on up to 4441.1Sabs date functionality. 4451.1Sabs 4461.1SabsWhat to do if things don't work: 4471.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 4481.1SabsWhen things don't work there is usually a few things that commonly 4491.1Sabsshould be done. 4501.1Sabs 1) make includes 4511.1Sabs This should be done automatically by make build. 4521.1Sabs 2) cd share/mk && make install 4531.1Sabs Again, automatically done by make build. 4541.1Sabs 4551.1SabsFailsafe rebuild of a small part of the tree: 4561.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 4571.1SabsTo make sure you rebuild something correctly you want to do 4581.1Sabssomething like the following: 4591.1Sabs 1) Make sure the includes and .mk files are up to date. 4601.1Sabs 2) Make sure any program used to build the particular 4611.1Sabs utility is up to date. (yacc, lex, etc...) 4621.1Sabs 3) cd ...path/to/util... 4631.1Sabs make cleandir 4641.1Sabs rm ...all obj directories... 4651.1Sabs make cleandir # yes, again 4661.1Sabs make obj 4671.1Sabs make depend && make 4681.1Sabs 4691.1SabsFailsafe rebuild of the entire tree: 4701.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 4711.1SabsIf you really want to make sure the source tree is clean and 4721.2Smrgready for a build try the following. Note that sourcing /etc/mk.conf 4731.2Smrg(a make(1) Makefile) in this manner is not right, and will not work 4741.2Smrgfor anyone who uses any make(1) features in /etc/mk.conf. 4751.1Sabs 4761.1Sabs---cut here--- 4771.1Sabs#!/bin/sh 4781.1Sabs. /etc/mk.conf 4791.1Sabs 4801.58Slukemif [ -z $NETBSDSRCDIR ] ; then 4811.58Slukem NETBSDSRCDIR=/usr/src 4821.1Sabsfi 4831.58Slukemif [ \! -d $NETBSDSRCDIR ] ; then 4841.1Sabs echo Unable to find sources 4851.1Sabs exit 1 4861.1Sabsfi 4871.58Slukemfind $NETBSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \; 4881.1Sabs 4891.1Sabsif [ -z $BSDOBJDIR ] ; then 4901.1Sabs BSDOBJDIR=/usr/obj 4911.1Sabsfi 4921.1Sabsif [ -d $BSDOBJDIR ] ; then 4931.1Sabs rm -rf $BSDOBJDIR 4941.1Sabsfi 4951.1Sabs 4961.58Slukemcd $NETBSDSRCDIR && make cleandir 4971.1Sabs 4981.1Sabs---cut here--- 4991.1Sabs 5001.1SabsCritical utilities: 5011.1Sabs^^^^^^^^^^^^^^^^^^^ 5021.1Sabs gnu/usr.bin/egcs 5031.3Sitojun usr.bin/compile_et 5041.1Sabs usr.bin/make 5051.1Sabs usr.bin/yacc 5061.1Sabs usr.bin/lex 5071.11Slukem usr.bin/xlint 5081.2Smrg usr.sbin/config 5091.1Sabs 5101.34SsimonbOther problems and possible solutions: 5111.1Sabs^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 5121.1SabsSymptom:Unreasonable compiler errors. 5131.1SabsFix: Rebuild gnu/usr.bin/egcs 5141.1Sabs 5151.1SabsSymptom:Complaints involving a Makefile. 5161.17SerhFix: Rebuild usr.bin/make: 5171.17Serh cd usr.bin/make && make && make install 5181.17Serh Or, a failsafe method if that doesn't work: 5191.17Serh cd usr.bin/make && cc *.c */*.c -I . -o make && mv make /usr/bin 5201.17Serh 5211.1SabsFix: Make sure .mk files are up to date. 5221.1Sabs cd share/mk && make install 5231.2Smrg 5241.2SmrgSymptom:Kernel `config' fails to configure any kernel, including GENERIC. 5251.2SmrgFix: Rebuild usr.sbin/config 5261.1Sabs 5271.1SabsSymptom: 5281.1SabsFix: Rebuild usr.bin/yacc 5291.1Sabs 5301.1SabsSymptom: 5311.1SabsFix: Rebuild usr.bin/lex 5321.1Sabs 5331.1SabsSymptom: 5341.1SabsFix: rm /usr/lib/libbfd.a 5351.4Sitojun 5361.4SitojunSymptom:Obsolete intermediate files are used during compilation 5371.4SitojunFix: Try the following sequence of commands in the directory in question. 5381.4Sitojun make cleandir; rm `make print-objdir`; make cleandir; make obj 5391.4Sitojun (If you built the tree without "make obj" in the past, obsolete files 5401.4Sitojun may remain. The command tries to clean everything up) 5411.5Swiz 5421.5SwizSymptom:.../sysinst/run.c:xx: warning: initialization from incompatible pointer type 5431.5SwizFix: Rebuild and install usr.bin/menuc 5441.12Sitojun 5451.12SitojunSymptom:mklocale not found during build in share/locale/ctype 5461.12SitojunFix: Build and install usr.bin/mklocale 5471.13Sdogcow 5481.13SdogcowSymptom:undefined reference to `__assert13' 5491.13SdogcowFix: Rebuild and install lib/libc 5501.13Sdogcow 5511.19ScgdSymptom:usr.sbin/config fails to build. 5521.19ScgdFix: Try building with -DMAKE_BOOTSTRAP added to CFLAGS in Makefile. 5531.13Sdogcow 5541.19ScgdSymptom:undefined reference to `getprogname' or `setprogname' 5551.19ScgdFix: Rebuild and install lib/libc 5561.24Sabs 5571.24SabsSymptom:lint does not understand the '-X' option 5581.24SabsFix: May need to build & install libs with NOLINT=1 before rebuilding lint 559