VirtualBox

source: kBuild/tags/2006-09-14/ChangeLog

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

* empty log message *

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.8 KB
Line 
1/* $Id: ChangeLog 433 2006-03-26 13:03:00Z bird $ */
2
32006-03-26:
4 - kBuild/bin/x86.os2/:
5 o Rebuilt the OS/2 tools.
6 - src/gmake/variable.c, src/gmake/variable.h, src/gmake/make.h:
7 o Attempt at speeding up performance on OS/2.
8 - src/gmake/kmkbuiltin/rm.c:
9 o OS/2 wants -R.
10 - src/gmake/read.c:
11 o Don't call glob() unless there is a wildcard pattern in the name.
12 This speed things up a bit, at least on FreeBSD and especially on OS/2.
13 - Config.kmk:
14 o Added -pg for profile builds on OS/2.
15
162006-02-22: bird
17 - kBuild/tools/MINGW32.kmk:
18 o Corrected dependencies to match those generated by GCC3.
19
202006-02-09: bird
21 - kBuild/tools/YASM.kmk:
22 o Initial config.
23
242006-01-20: bird
25 - kBuild/footer.kmk, kBuild/header.kmk:
26 o Check for PACKING.$(BUILD_TARGET) as well. Added a quick evaluation
27 of PACKING[.*] in the footer.
28
292006-01-18: bird
30 - kBuild/footer.kmk, kBuild/header.kmk:
31 o Packing pass change - uses PACKING var instead of packing::.
32 - kBuild/footer.kmk:
33 o Added mode,uid and gid to file INSTALLS.
34 o Implemented template inheritance (_EXTENDS).
35
362006-01-14: bird
37 - kBuild/env.sh:
38 o Corrected the tool list.
39 - kBuild/bin/x86.linux/:
40 o Rebuild with current tree and static linage. (rhel3)
41 - kBuild/tools/VCC70.kmk:
42 o Enabled new dependcies.
43 o Must use PDB macro to get the case correct on the idb file passed to kDepIDB.
44 - src/lib/kDep.c:
45 o Fixed missing slash fixing
46 o Changed kDepPre error prefix to kDep.
47
482006-01-12: bird
49 - kBuild/tools/VCC70.kmk:
50 o Use DEP_IDB on win32.
51 - kBuild/header.kmk:
52 o Added DEP_IDB and DEP_IDB_EXT.
53 - kBuild/bin/x86.win32/:
54 o Rebuild with current source, adding kDepIDB.
55 - src/kDepIDB/kDepIDB.c:
56 o Initial coding. (This is a VC++ dependency extractor.)
57 - src/kDepPre/kDepPre.c, src/lib/kDep.h, src/lib/kDep.c, Config.kmk:
58 o Created a library for the dep*() functions.
59 o Removed the IDB hacks from kDepPre.
60
612006-01-11: bird
62 - kBuild/tools/vcc70.kmk:
63 o Prepared for new IDB based dependencies.s
64 - kBuild/footer.kmk:
65 o Parallel build fixing.
66 - src/gmake/job.c:
67 o Fixed bad parallel bug.
68 - src/gmake/main.c:
69 o Enabled multiple jobs for recursive kmk processes on win32 despite the problems.
70 - src/kDepPre/kDepPre.c:
71 o Added extremely rough support for VC++ IDB files (/FD + /Fd).
72
732005-12-18: bird
74 - kBuild/*.kmk, kBuild/tools/*.kmk:
75 o Finally I've got around to implement command dependencies.
76 o Use $(INSTALL) instead of $(RM) + $(CP).
77 o More install features.
78 - kBuild/bin/x86.[linux|win32|os2]/:
79 o Rebuilt all the utils.
80 o Renamed all unix utilites so they start with a kmk_ prefix and don't
81 override any local unix utils.
82 - src/gmake/kmkbuiltin/*, src/gmake/kmkbuiltin.c,
83 src/gmake/kmkbuiltin.h, src/gmake/variables.c,
84 src/gmake/Makefile.kmk:
85 o Ported all the builtins to windows - now rebuild works again!
86 o Fixed a few error case bugs in the builtins.
87 o Disabled the -R and -r options for rm and cp.
88 o Added kmk_install / kmk_builtin_install from BSD.
89
902005-12-13: bird
91 - kBuild/bin/x86.linux/kmk,
92 kBuild/bin/x86.linux/kmk_append,
93 kBuild/bin/x86.linux/kmk_cp,
94 kBuild/bin/x86.linux/kmk_echo,
95 kBuild/bin/x86.linux/kmk_mkdir,
96 kBuild/bin/x86.linux/kmk_rm:
97 o Rebuild with current sources.
98 - src/gmake/Makefile:
99 o Prefixed external tools with kmk_.
100
1012005-12-12: bird
102 - kBuild/footer.kmk, kBuild/header.kmk:
103 o Generic pass stuff.
104 o Enabled and weeded out the new target install method.
105 o Added separate install target type.
106 o Added separate installs pass.
107 o Fixed those $$$$(PATH_<target>) problems.
108 o General clean up removing lot's of duplicate stuff.
109 - kBuild/tools/ALP.kmk, kBuild/tools/GCC.kmk, kBuild/tools/GCC3.kmk,
110 kBuild/tools/GCC3OMF.kmk, kBuild/tools/MINGW32.kmk, kBuild/tools/NASM.kmk,
111 kBuild/tools/VCC70.kmk:
112 o Adjusted to new parameters for the link rules.
113 o List all output files as targets for the rules.
114 - kBuild/config.kmk, kBuild/cfg/x86.win32.va2003.kmk:
115 o Removed early attempts which isn't used anylonger.
116 - src/gmake/remake.c, src/gmake/commands.c, src/gmake/commands.h:
117 o Fixed not parallel assertion on targets with no commands.
118
1192005-12-11: bird
120 - src/gmake/kmkbuiltin/append.c, src/gmake/kmkbuiltin.h, src/gmake/kmkbuiltin.c,
121 src/gmake/Makefile.kmk, src/gmake/variables.c:
122 o New command 'append' which appends text to a file, creating the file if necessary.
123 o KMK_BUILTIN is listing the supported commands (used to be "1").
124 - src/gmake/kmkbuiltin/cp_utils.c:
125 o Add O_BINARY to all open calls.
126 - src/gmake/function.c:
127 o Fixed abspath on OS/2.
128 - src/kDepPre/kDepPre.c:
129 o Killed some warnings and made it build on OS/2 and FreeBSD.
130
1312005-11-07: bird
132 - kBuild/tools/VCC70.kmk:
133 o Use the new -s option for dependencies.
134 - src/kDepPre/kDepPre.c, kBuild/bin/x86.linux/kDepPre, kBuild/bin/x86.win32/kDepPre.exe:
135 o Added new option -s for generating stub dependencies just like -Wp,-MP.
136 - kBuild/tools/GCC3.kmk, kBuild/tools/GCC3OMF.kmk:
137 o Added -Wp,-MP to compile jobs for better dependencies.
138
1392005-10-31: bird
140 - kBuild/tools/VCC70.kmk:
141 o Use the -f option with kDepPre to make sure nt/wine/cl doesn't
142 screw up the path casing anywhere.
143 - kBuild/bin/x86.linux/kDepPre, kBuild/bin/x86.win32/kDepPre.exe:
144 o Rebuild with latest code.
1452005-10-30: bird
146 - kBuild/env.sh:
147 o amd64.
148 o kDepCCxx -> kDepPre. Ash.
149 - kBuild/bin/amd64.linux/kDepPre, src/kDepPre/kDepPre.c:
150 o Fix case option - need it on unix for cl.exe with wine.
151
1522005-10-29: bird
153 - kBuild/bin/amd64.linux/kDepPre, src/kDepPre/kDepPre.c:
154 o Strip drive letters on non-PC OSes.
155
1562005-10-28: bird
157 - kBuild/footer.h:
158 o Fixed a couple of defaults so it all works right on amd64.
159 - kBuild/bin/amd64.linux/:
160 o Added binaries. ash is 32-bit!
161
1622005-10-14: bird
163 - src/kDepPre/kDepPre.c, kBuild/bin/x86.win32/kDepPre.exe:
164 o Corrected bug in line skipping where two lines would be skipped.
165 o Corrected slashes on win32.
166
1672005-10-03: bird
168 - src/kDepPre/kDepPre.c, kBuild/bin/x86.win32/kDepPre.exe:
169 o Fixed stupid stupid bug in the win32 case correcting code.
170 Rebuilt the win32 binary.
171
1722005-08-11: bird
173 - kBuild/footer.kmk:
174 o Enh. the _OBJECT_BASE hack for stripping of source paths within the project.
175
176 - kBuild/tools/VCC70.kmk:
177 o Use $(tolower ) to construct the right .pdb names for cleanup.
178
179 - src/gmake/read.c:
180 o print target name 'target pattern' errors.
181
182 - kBuild/header.kmk:
183 o Use $(abspath ).
184
185 - src/gmake/variable.c:
186 o Added KMK_FEATURES which indicates what's present+working and what's not.
187
188 - src/gmake/w32/pathstuff.c, src/kDepPre/kDepPre.c, src/kDepPre/Makefile.kmk:
189 o Fixed casing paths on win32.
190
191 - src/gmake/function.c, src/gmake/Makefile.kmk:
192 o Fixed $(abspath ) on Win32 and OS/2.
193 o Added $(tolower ) and $(toupper ).
194
1952005-06-16: bird
196 - ALL:
197 o Bootstrap and ported to FreeBSD 5.x on AMD64.
198
1992005-05-06: bird
200 - ALL:
201 o Working on the build system of the build system. :-)
202 o Ported the kmkbuiltin stuff to OS/2 as a prep to the win32 effort.
203
204[missing a lot!]
205
2062002-10-15: bird
207 - ALL:
208 o Created a somewhat rought directory structure.
209
210 - src/fastdep:
211 o Imported current sources from ODIN32.
212
213 - src/kmk:
214 o Imported current sources from the freebsd tree.
215
2162002-10-15: ktk
217 - ALL: Create repository.
218
219
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