VirtualBox

source: kBuild/trunk/ChangeLog@ 535

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

o A real attempt at fixing the double quoting problem on windows. ash seems to want a

space between a double quote enclosing the last argument on the commandline and the
double quote enclosing the commandline (the -c argument). Also, defined HAVE_CYGWIN_SHELL.

o Fixed a newline escape problem when using batch_mode_shell on windows with kmk_ash.

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