source: trunk/ChangeLog@ 550

Last change on this file since 550 was 550, checked in by bird, 19 years ago

Rebuilt kmk.exe and kmk_gmake.exe.

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