VirtualBox

source: kBuild/trunk/ChangeLog@ 563

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

Initial Mac OS X / Darwin bootstrapping.

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