| 1 | /* $Id: ChangeLog 552 2006-09-24 07:37:41Z bird $ */
|
|---|
| 2 |
|
|---|
| 3 | 2006-09-23:
|
|---|
| 4 | - kBuild/footer.kmk:
|
|---|
| 5 | o Recursive template inheritance.
|
|---|
| 6 | - kBuild/header.kmk, kBuild/footer.kmk:
|
|---|
| 7 | o Removed some checks for features which are present in both gmake 3.81 and kmk.
|
|---|
| 8 | Anyone trying to bootstrap kBuild will have to build gmake 3.81 first.
|
|---|
| 9 | - Config.kmk, src/gmake:
|
|---|
| 10 | o Allow all kinds of ways of saying Windows in BUILD_TARGET.
|
|---|
| 11 | - kBuild/bin/x86.win32/:
|
|---|
| 12 | o Rebuilt kmk.exe.
|
|---|
| 13 | - kBuild/bin/x86.os2/:
|
|---|
| 14 | o Added kDepPre.exe and kDepIDB.exe.
|
|---|
| 15 | o Rebuilt kmk.exe and kmk_gmake.exe.
|
|---|
| 16 | - src/gmake:
|
|---|
| 17 | o Update KMK_FEATURES to include the optimizations from earlier this week.
|
|---|
| 18 | o Regenerated config.h.os2 and make adjustments to make it all
|
|---|
| 19 | build quietly on OS/2.
|
|---|
| 20 | - kBuild/envos2.cmd:
|
|---|
| 21 | o Environment script (REXX) for OS/2.
|
|---|
| 22 |
|
|---|
| 23 | 2006-09-19:
|
|---|
| 24 | - kBuild/bin/x86.win32/:
|
|---|
| 25 | o Rebuilt kmk.exe and kmk_gmake.exe.
|
|---|
| 26 | - src/gmake:
|
|---|
| 27 | o Fixed some optimization bugs in kbuild.c.
|
|---|
| 28 |
|
|---|
| 29 | 2006-09-18:
|
|---|
| 30 | - kBuild/gmake:
|
|---|
| 31 | o Don't send put j1 in MAKEFLAGS on windows, somehow that doesn't work.
|
|---|
| 32 | o Fixed some variable name typos in kbuild.c.
|
|---|
| 33 | o Fixed missing expansion in kbuild_lookup_variable.
|
|---|
| 34 | o A real attempt at fixing the double quoting problem on windows. ash seems to want a
|
|---|
| 35 | space between a double quote enclosing the last argument on the commandline and the
|
|---|
| 36 | double quote enclosing the commandline (the -c argument).
|
|---|
| 37 | o Fixed a newline escape problem when using batch_mode_shell on windows with kmk_ash.
|
|---|
| 38 |
|
|---|
| 39 | 2006-09-17:
|
|---|
| 40 | - kBuild/gmake:
|
|---|
| 41 | o Optimization summary: libc from ~21 seconds -> 7-8 seconds (os2/nt).
|
|---|
| 42 | o Optimized appending new stuff to variables. (major win)
|
|---|
| 43 | o Optimized variable memory value allocation avoiding a bunch of
|
|---|
| 44 | unnecessary copying and allocating.
|
|---|
| 45 | o Added kBuild specific functions for speeding up source processing.
|
|---|
| 46 | o Fixed assertion in w32_fixcase when shell doesn't have a full path
|
|---|
| 47 | and some other case.
|
|---|
| 48 |
|
|---|
| 49 | 2006-09-16:
|
|---|
| 50 | - kBuild/header.kmk:
|
|---|
| 51 | o Turn off command dependencies when using vanilla GNU Make.
|
|---|
| 52 | - kBuild/footer.kmk:
|
|---|
| 53 | o Made up my mind about the command depency blocker variables;
|
|---|
| 54 | NO_LINK_CMDS_DEPS and NO_COMPILE_CMDS_DEPS.
|
|---|
| 55 | - src/gmake:
|
|---|
| 56 | o Added kmk_gmake which is (almost) vanilla GNU Make.
|
|---|
| 57 | o kmk_ash wants batch files on windows or the double quotes will get screwed up.
|
|---|
| 58 | o Make sure kmk_builtin commands don't get batch files and odd weird stuff.
|
|---|
| 59 | o Cleaning up the modifications. Changes are now either configurable
|
|---|
| 60 | or marked, and dead stuff has been removed (dll shell).
|
|---|
| 61 |
|
|---|
| 62 | 2006-09-15:
|
|---|
| 63 | - kBuild/bin/x86.win32/kmk.exe:
|
|---|
| 64 | o Built new code.
|
|---|
| 65 | - kBuild/header.kmk:
|
|---|
| 66 | o DIRDEP is now the same on all platforms (fixed with 3.81 merge).
|
|---|
| 67 | - kBuild/bin/x86.linux/kmk:
|
|---|
| 68 | o Built new code on system360.
|
|---|
| 69 | - src/gmake:
|
|---|
| 70 | o Some parallel job fixes.
|
|---|
| 71 | o Regenerated config.h.linux on system360.
|
|---|
| 72 | o Fixed stat("dir/", &st) on windows and some warnings.
|
|---|
| 73 | o Merge with GNU Make v3.81 (vendor/gnumake/2005-05-16 -> vendor/gnumake/current).
|
|---|
| 74 |
|
|---|
| 75 | 2006-03-26:
|
|---|
| 76 | - kBuild/bin/x86.os2/:
|
|---|
| 77 | o Rebuilt the OS/2 tools.
|
|---|
| 78 | - src/gmake/variable.c, src/gmake/variable.h, src/gmake/make.h:
|
|---|
| 79 | o Attempt at speeding up performance on OS/2.
|
|---|
| 80 | - src/gmake/kmkbuiltin/rm.c:
|
|---|
| 81 | o OS/2 wants -R.
|
|---|
| 82 | - src/gmake/read.c:
|
|---|
| 83 | o Don't call glob() unless there is a wildcard pattern in the name.
|
|---|
| 84 | This speed things up a bit, at least on FreeBSD and especially on OS/2.
|
|---|
| 85 | - Config.kmk:
|
|---|
| 86 | o Added -pg for profile builds on OS/2.
|
|---|
| 87 |
|
|---|
| 88 | 2006-02-22: bird
|
|---|
| 89 | - kBuild/tools/MINGW32.kmk:
|
|---|
| 90 | o Corrected dependencies to match those generated by GCC3.
|
|---|
| 91 |
|
|---|
| 92 | 2006-02-09: bird
|
|---|
| 93 | - kBuild/tools/YASM.kmk:
|
|---|
| 94 | o Initial config.
|
|---|
| 95 |
|
|---|
| 96 | 2006-01-20: bird
|
|---|
| 97 | - kBuild/footer.kmk, kBuild/header.kmk:
|
|---|
| 98 | o Check for PACKING.$(BUILD_TARGET) as well. Added a quick evaluation
|
|---|
| 99 | of PACKING[.*] in the footer.
|
|---|
| 100 |
|
|---|
| 101 | 2006-01-18: bird
|
|---|
| 102 | - kBuild/footer.kmk, kBuild/header.kmk:
|
|---|
| 103 | o Packing pass change - uses PACKING var instead of packing::.
|
|---|
| 104 | - kBuild/footer.kmk:
|
|---|
| 105 | o Added mode,uid and gid to file INSTALLS.
|
|---|
| 106 | o Implemented template inheritance (_EXTENDS).
|
|---|
| 107 |
|
|---|
| 108 | 2006-01-14: bird
|
|---|
| 109 | - kBuild/env.sh:
|
|---|
| 110 | o Corrected the tool list.
|
|---|
| 111 | - kBuild/bin/x86.linux/:
|
|---|
| 112 | o Rebuild with current tree and static linage. (rhel3)
|
|---|
| 113 | - kBuild/tools/VCC70.kmk:
|
|---|
| 114 | o Enabled new dependcies.
|
|---|
| 115 | o Must use PDB macro to get the case correct on the idb file passed to kDepIDB.
|
|---|
| 116 | - src/lib/kDep.c:
|
|---|
| 117 | o Fixed missing slash fixing
|
|---|
| 118 | o Changed kDepPre error prefix to kDep.
|
|---|
| 119 |
|
|---|
| 120 | 2006-01-12: bird
|
|---|
| 121 | - kBuild/tools/VCC70.kmk:
|
|---|
| 122 | o Use DEP_IDB on win32.
|
|---|
| 123 | - kBuild/header.kmk:
|
|---|
| 124 | o Added DEP_IDB and DEP_IDB_EXT.
|
|---|
| 125 | - kBuild/bin/x86.win32/:
|
|---|
| 126 | o Rebuild with current source, adding kDepIDB.
|
|---|
| 127 | - src/kDepIDB/kDepIDB.c:
|
|---|
| 128 | o Initial coding. (This is a VC++ dependency extractor.)
|
|---|
| 129 | - src/kDepPre/kDepPre.c, src/lib/kDep.h, src/lib/kDep.c, Config.kmk:
|
|---|
| 130 | o Created a library for the dep*() functions.
|
|---|
| 131 | o Removed the IDB hacks from kDepPre.
|
|---|
| 132 |
|
|---|
| 133 | 2006-01-11: bird
|
|---|
| 134 | - kBuild/tools/vcc70.kmk:
|
|---|
| 135 | o Prepared for new IDB based dependencies.s
|
|---|
| 136 | - kBuild/footer.kmk:
|
|---|
| 137 | o Parallel build fixing.
|
|---|
| 138 | - src/gmake/job.c:
|
|---|
| 139 | o Fixed bad parallel bug.
|
|---|
| 140 | - src/gmake/main.c:
|
|---|
| 141 | o Enabled multiple jobs for recursive kmk processes on win32 despite the problems.
|
|---|
| 142 | - src/kDepPre/kDepPre.c:
|
|---|
| 143 | o Added extremely rough support for VC++ IDB files (/FD + /Fd).
|
|---|
| 144 |
|
|---|
| 145 | 2005-12-18: bird
|
|---|
| 146 | - kBuild/*.kmk, kBuild/tools/*.kmk:
|
|---|
| 147 | o Finally I've got around to implement command dependencies.
|
|---|
| 148 | o Use $(INSTALL) instead of $(RM) + $(CP).
|
|---|
| 149 | o More install features.
|
|---|
| 150 | - kBuild/bin/x86.[linux|win32|os2]/:
|
|---|
| 151 | o Rebuilt all the utils.
|
|---|
| 152 | o Renamed all unix utilites so they start with a kmk_ prefix and don't
|
|---|
| 153 | override any local unix utils.
|
|---|
| 154 | - src/gmake/kmkbuiltin/*, src/gmake/kmkbuiltin.c,
|
|---|
| 155 | src/gmake/kmkbuiltin.h, src/gmake/variables.c,
|
|---|
| 156 | src/gmake/Makefile.kmk:
|
|---|
| 157 | o Ported all the builtins to windows - now rebuild works again!
|
|---|
| 158 | o Fixed a few error case bugs in the builtins.
|
|---|
| 159 | o Disabled the -R and -r options for rm and cp.
|
|---|
| 160 | o Added kmk_install / kmk_builtin_install from BSD.
|
|---|
| 161 |
|
|---|
| 162 | 2005-12-13: bird
|
|---|
| 163 | - kBuild/bin/x86.linux/kmk,
|
|---|
| 164 | kBuild/bin/x86.linux/kmk_append,
|
|---|
| 165 | kBuild/bin/x86.linux/kmk_cp,
|
|---|
| 166 | kBuild/bin/x86.linux/kmk_echo,
|
|---|
| 167 | kBuild/bin/x86.linux/kmk_mkdir,
|
|---|
| 168 | kBuild/bin/x86.linux/kmk_rm:
|
|---|
| 169 | o Rebuild with current sources.
|
|---|
| 170 | - src/gmake/Makefile:
|
|---|
| 171 | o Prefixed external tools with kmk_.
|
|---|
| 172 |
|
|---|
| 173 | 2005-12-12: bird
|
|---|
| 174 | - kBuild/footer.kmk, kBuild/header.kmk:
|
|---|
| 175 | o Generic pass stuff.
|
|---|
| 176 | o Enabled and weeded out the new target install method.
|
|---|
| 177 | o Added separate install target type.
|
|---|
| 178 | o Added separate installs pass.
|
|---|
| 179 | o Fixed those $$$$(PATH_<target>) problems.
|
|---|
| 180 | o General clean up removing lot's of duplicate stuff.
|
|---|
| 181 | - kBuild/tools/ALP.kmk, kBuild/tools/GCC.kmk, kBuild/tools/GCC3.kmk,
|
|---|
| 182 | kBuild/tools/GCC3OMF.kmk, kBuild/tools/MINGW32.kmk, kBuild/tools/NASM.kmk,
|
|---|
| 183 | kBuild/tools/VCC70.kmk:
|
|---|
| 184 | o Adjusted to new parameters for the link rules.
|
|---|
| 185 | o List all output files as targets for the rules.
|
|---|
| 186 | - kBuild/config.kmk, kBuild/cfg/x86.win32.va2003.kmk:
|
|---|
| 187 | o Removed early attempts which isn't used anylonger.
|
|---|
| 188 | - src/gmake/remake.c, src/gmake/commands.c, src/gmake/commands.h:
|
|---|
| 189 | o Fixed not parallel assertion on targets with no commands.
|
|---|
| 190 |
|
|---|
| 191 | 2005-12-11: bird
|
|---|
| 192 | - src/gmake/kmkbuiltin/append.c, src/gmake/kmkbuiltin.h, src/gmake/kmkbuiltin.c,
|
|---|
| 193 | src/gmake/Makefile.kmk, src/gmake/variables.c:
|
|---|
| 194 | o New command 'append' which appends text to a file, creating the file if necessary.
|
|---|
| 195 | o KMK_BUILTIN is listing the supported commands (used to be "1").
|
|---|
| 196 | - src/gmake/kmkbuiltin/cp_utils.c:
|
|---|
| 197 | o Add O_BINARY to all open calls.
|
|---|
| 198 | - src/gmake/function.c:
|
|---|
| 199 | o Fixed abspath on OS/2.
|
|---|
| 200 | - src/kDepPre/kDepPre.c:
|
|---|
| 201 | o Killed some warnings and made it build on OS/2 and FreeBSD.
|
|---|
| 202 |
|
|---|
| 203 | 2005-11-07: bird
|
|---|
| 204 | - kBuild/tools/VCC70.kmk:
|
|---|
| 205 | o Use the new -s option for dependencies.
|
|---|
| 206 | - src/kDepPre/kDepPre.c, kBuild/bin/x86.linux/kDepPre, kBuild/bin/x86.win32/kDepPre.exe:
|
|---|
| 207 | o Added new option -s for generating stub dependencies just like -Wp,-MP.
|
|---|
| 208 | - kBuild/tools/GCC3.kmk, kBuild/tools/GCC3OMF.kmk:
|
|---|
| 209 | o Added -Wp,-MP to compile jobs for better dependencies.
|
|---|
| 210 |
|
|---|
| 211 | 2005-10-31: bird
|
|---|
| 212 | - kBuild/tools/VCC70.kmk:
|
|---|
| 213 | o Use the -f option with kDepPre to make sure nt/wine/cl doesn't
|
|---|
| 214 | screw up the path casing anywhere.
|
|---|
| 215 | - kBuild/bin/x86.linux/kDepPre, kBuild/bin/x86.win32/kDepPre.exe:
|
|---|
| 216 | o Rebuild with latest code.
|
|---|
| 217 | 2005-10-30: bird
|
|---|
| 218 | - kBuild/env.sh:
|
|---|
| 219 | o amd64.
|
|---|
| 220 | o kDepCCxx -> kDepPre. Ash.
|
|---|
| 221 | - kBuild/bin/amd64.linux/kDepPre, src/kDepPre/kDepPre.c:
|
|---|
| 222 | o Fix case option - need it on unix for cl.exe with wine.
|
|---|
| 223 |
|
|---|
| 224 | 2005-10-29: bird
|
|---|
| 225 | - kBuild/bin/amd64.linux/kDepPre, src/kDepPre/kDepPre.c:
|
|---|
| 226 | o Strip drive letters on non-PC OSes.
|
|---|
| 227 |
|
|---|
| 228 | 2005-10-28: bird
|
|---|
| 229 | - kBuild/footer.h:
|
|---|
| 230 | o Fixed a couple of defaults so it all works right on amd64.
|
|---|
| 231 | - kBuild/bin/amd64.linux/:
|
|---|
| 232 | o Added binaries. ash is 32-bit!
|
|---|
| 233 |
|
|---|
| 234 | 2005-10-14: bird
|
|---|
| 235 | - src/kDepPre/kDepPre.c, kBuild/bin/x86.win32/kDepPre.exe:
|
|---|
| 236 | o Corrected bug in line skipping where two lines would be skipped.
|
|---|
| 237 | o Corrected slashes on win32.
|
|---|
| 238 |
|
|---|
| 239 | 2005-10-03: bird
|
|---|
| 240 | - src/kDepPre/kDepPre.c, kBuild/bin/x86.win32/kDepPre.exe:
|
|---|
| 241 | o Fixed stupid stupid bug in the win32 case correcting code.
|
|---|
| 242 | Rebuilt the win32 binary.
|
|---|
| 243 |
|
|---|
| 244 | 2005-08-11: bird
|
|---|
| 245 | - kBuild/footer.kmk:
|
|---|
| 246 | o Enh. the _OBJECT_BASE hack for stripping of source paths within the project.
|
|---|
| 247 |
|
|---|
| 248 | - kBuild/tools/VCC70.kmk:
|
|---|
| 249 | o Use $(tolower ) to construct the right .pdb names for cleanup.
|
|---|
| 250 |
|
|---|
| 251 | - src/gmake/read.c:
|
|---|
| 252 | o print target name 'target pattern' errors.
|
|---|
| 253 |
|
|---|
| 254 | - kBuild/header.kmk:
|
|---|
| 255 | o Use $(abspath ).
|
|---|
| 256 |
|
|---|
| 257 | - src/gmake/variable.c:
|
|---|
| 258 | o Added KMK_FEATURES which indicates what's present+working and what's not.
|
|---|
| 259 |
|
|---|
| 260 | - src/gmake/w32/pathstuff.c, src/kDepPre/kDepPre.c, src/kDepPre/Makefile.kmk:
|
|---|
| 261 | o Fixed casing paths on win32.
|
|---|
| 262 |
|
|---|
| 263 | - src/gmake/function.c, src/gmake/Makefile.kmk:
|
|---|
| 264 | o Fixed $(abspath ) on Win32 and OS/2.
|
|---|
| 265 | o Added $(tolower ) and $(toupper ).
|
|---|
| 266 |
|
|---|
| 267 | 2005-06-16: bird
|
|---|
| 268 | - ALL:
|
|---|
| 269 | o Bootstrap and ported to FreeBSD 5.x on AMD64.
|
|---|
| 270 |
|
|---|
| 271 | 2005-05-06: bird
|
|---|
| 272 | - ALL:
|
|---|
| 273 | o Working on the build system of the build system. :-)
|
|---|
| 274 | o Ported the kmkbuiltin stuff to OS/2 as a prep to the win32 effort.
|
|---|
| 275 |
|
|---|
| 276 | [missing a lot!]
|
|---|
| 277 |
|
|---|
| 278 | 2002-10-15: bird
|
|---|
| 279 | - ALL:
|
|---|
| 280 | o Created a somewhat rought directory structure.
|
|---|
| 281 |
|
|---|
| 282 | - src/fastdep:
|
|---|
| 283 | o Imported current sources from ODIN32.
|
|---|
| 284 |
|
|---|
| 285 | - src/kmk:
|
|---|
| 286 | o Imported current sources from the freebsd tree.
|
|---|
| 287 |
|
|---|
| 288 | 2002-10-15: ktk
|
|---|
| 289 | - ALL: Create repository.
|
|---|
| 290 |
|
|---|
| 291 |
|
|---|