VirtualBox

source: kBuild/trunk/ChangeLog@ 529

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

Fixed assertion in w32_fixcase when shell doesn't have a full path and some other case.

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