Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (2h)  netbsd-10 (6d)  netbsd-9 (6d)  netbsd-8 (11d) 

2024-05-23 05:47:15 UTC Now

2019-12-29 18:26:19 UTC MAIN commitmail json YAML

src/distrib/amd64/ramdisks/common/Makefile.ramdisk@1.15 / diff / nxr@1.15
src/distrib/arc/ramdisk/Makefile@1.27 / diff / nxr@1.27
src/distrib/bebox/ramdisk/Makefile@1.4 / diff / nxr@1.4
src/distrib/cobalt/ramdisk/Makefile@1.13 / diff / nxr@1.13
src/distrib/common/Makefile.crunch@1.26 / diff / nxr@1.26
src/distrib/dreamcast/ramdisk/Makefile@1.15 / diff / nxr@1.15
src/distrib/emips/ramdisk/Makefile@1.6 / diff / nxr@1.6
src/distrib/evbppc/ramdisk/Makefile@1.24 / diff / nxr@1.24
src/distrib/ews4800mips/floppies/ramdisk/Makefile@1.14 / diff / nxr@1.14
src/distrib/hppa/ramdisk/Makefile@1.7 / diff / nxr@1.7
src/distrib/ibmnws/netboot/ramdisk/Makefile@1.14 / diff / nxr@1.14
src/distrib/landisk/ramdisk/Makefile@1.12 / diff / nxr@1.12
src/distrib/macppc/floppies/ramdisk/Makefile@1.51 / diff / nxr@1.51
src/distrib/miniroot/Makefile@1.69 / diff / nxr@1.69
src/distrib/mipsco/ramdisk/Makefile@1.22 / diff / nxr@1.22
src/distrib/newsmips/floppies/ramdisk/Makefile@1.36 / diff / nxr@1.36
src/distrib/ofppc/ramdisks/common/Makefile.ramdisk@1.10 / diff / nxr@1.10
src/distrib/pmax/ramdisk/Makefile@1.53 / diff / nxr@1.53
src/distrib/prep/floppies/ramdisk/Makefile@1.23 / diff / nxr@1.23
src/distrib/rs6000/ramdisk/Makefile@1.10 / diff / nxr@1.10
src/distrib/sandpoint/ramdisk/Makefile@1.14 / diff / nxr@1.14
src/distrib/sgimips/ramdisk/Makefile@1.22 / diff / nxr@1.22
src/distrib/sun2/miniroot/Makefile@1.38 / diff / nxr@1.38
src/distrib/sun3/miniroot/Makefile@1.49 / diff / nxr@1.49
src/rescue/Makefile@1.39 / diff / nxr@1.39
src/usr.bin/crunch/crunchgen/crunchgen.1@1.39 / diff / nxr@1.39
src/usr.bin/crunch/crunchgen/crunchgen.c@1.94 / diff / nxr@1.94

1. Remove all the special handling of variables (-d -p -P -s -S) that
  were dealing with DBG (-d) LDSTATIC/NOPIE (-p), and the rest with
  disabling/enabling sanitizers.
2. Use emalloc/estrdup for all the allocators instead of only some cases.
3. Add -V varspec which passes variables on the command line (as DBG
  and LDSTATIC used to be passed before) instead of appending them
  to the on-the-fly Makefile using -v varspec.
4. Change the distrib and rescue Makefiles to use -V instead of the removed
  flags.

The motivation of this is to make variable handling consistent, less magical,
and remove the need for changing crunchgen each time we want to add disabling
an option by default.

(as proposed in tech-toolchain)

(christos)