VirtualBox

source: kBuild/trunk/ChangeLog@ 611

Last change on this file since 611 was 611, checked in by bird, 18 years ago

Added cat as builtin command.

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette