bake-toolkit 2.28.1 → 2.29.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6637f69fad4d14a7d2fa2230412d8ab89603cc42
4
- data.tar.gz: 5c610f7c804752268057bede3ced8f42de1f5a44
3
+ metadata.gz: 68cf87bed640433e51d6a20c1ddf0eb2ab3b5b75
4
+ data.tar.gz: 93cf70a33c4e40cb75de6fe84291b48c1ccb4e28
5
5
  SHA512:
6
- metadata.gz: 5ab64e6db35dbce4e7107d54ce8430bc1bc9f18b312998157c5c842d2260c02d3493c14d17447acf1282f1c7b11d2c1e1026f168dc5667598c8872b205fee9fd
7
- data.tar.gz: 5aaa88b1eb4862aa13b05f47eeb35079f2a5cd02bd42dabd25b9786f7290fdaafdc9105325d28d3ce511546e6094455c1113e6ae500d9c828e3aa4ec3f4e010a
6
+ metadata.gz: 6a91253a7b8a85f9e1228d57901639ccbbbe1bf7494412a6b807a8510ca1b3fa976152493f4ba18ff8fcb97df8206dfb727d98e7592c9cffeb9477b2b3350bbe
7
+ data.tar.gz: ea2ef940684401824616e987b25c93ecbb68a581adfbcf3542c2ef68af66bde90991a40fb71a55a174615accbfea39543cfa3980539b93ecd643f69cd56049ea
@@ -1,6 +1,11 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ January 4, 2017 - bake-toolkit 2.29.0
5
+ * Added: CleanSteps, executed only when calling bake with "-c" or "--rebuild".
6
+ * Added: Wildcard "*" is allowed for project/config names in Adapt.
7
+ * Bugfix: In certain circumstances an Adapt was not applied to subconfigs of the Project.meta where Adapt was defined.
8
+
4
9
  January 4, 2017 - bake-toolkit 2.28.1
5
10
  * Bugfix: Build does not break anymore if "LintPolicy" is still defined in Project.meta. Now only a warning is printed out.
6
11
 
@@ -1,4 +1,4 @@
1
- bake 2.28.1
1
+ bake 2.29.0
2
2
  ==========================================
3
3
  bake, building software **fast** and **easy**!
4
4
 
@@ -231,3 +231,24 @@ Example:
231
231
  }
232
232
 
233
233
  This removes all "Files" and the "DefaultToolchain" from the original config regardless their attributes and replaces them by the elements of the *Adapt* config.
234
+
235
+ Wildcards
236
+ ---------
237
+
238
+ The "*" wildcard is allowed:
239
+
240
+ .. code-block:: text
241
+
242
+ Adapt mainProject: HERE, mainConfig: HERE ... {
243
+ SomeConfig HERE, project: HERE ... {
244
+ ....
245
+ }
246
+ }
247
+
248
+ Example (the configs of the Adapt are applied if the main config name starts with "UnitTest"):
249
+
250
+ .. code-block:: text
251
+
252
+ Adapt mainConfig: "UnitTest*" {
253
+ ...
254
+ }
@@ -106,6 +106,9 @@ z-index: 100;
106
106
  &nbsp; &nbsp; <span class="help" onMouseover="showExitSteps()" onMouseout="notip()">ExitSteps</span> {<br>
107
107
  &nbsp; &nbsp; &nbsp; <span class="mycomment"># Same as for PreSteps</span><br>
108
108
  &nbsp; &nbsp; }<br>
109
+ &nbsp; &nbsp; <span class="help" onMouseover="showCleanSteps()" onMouseout="notip()">CleanSteps</span> {<br>
110
+ &nbsp; &nbsp; &nbsp; <span class="mycomment"># Same as for PreSteps</span><br>
111
+ &nbsp; &nbsp; }<br>
109
112
  &nbsp; &nbsp; <span class="help" onMouseover="showDefaultToolchain()" onMouseout="notip()">DefaultToolchain</span> &#60;basedOn&#62;, <span class="help" onMouseover="showOutputDir()" onMouseout="notip()">outputDir</span>: &#60;dir&#62;, <span class="help" onMouseover="showEclipseOrder()" onMouseout="notip()">eclipseOrder</span>: true|false {<br>
110
113
  &nbsp; &nbsp; &nbsp; <span class="help" onMouseover="showDefaultCompiler()" onMouseout="notip()">Compiler</span> ASM | CPP | C,
111
114
  <span class="help" onMouseover="showCommand()" onMouseout="notip()">command</span>: &#60;cmd&#62; {</i><br>
@@ -343,6 +346,13 @@ function showExitSteps() {
343
346
  ddrivetip("ExitSteps", "No","0..1","-",str)
344
347
  }
345
348
 
349
+ function showCleanSteps() {
350
+ str = 'CleanSteps are executed when calling bake with "-c" or "--rebuild".<br>'+
351
+ 'The number of steps are not limited.<br>'+
352
+ 'If a step fails, all further steps will be skipped.'
353
+ ddrivetip("CleanSteps", "No","0..1","-",str)
354
+ }
355
+
346
356
  function showStepDefault() {
347
357
  str = 'Specifies if a step will be executed by default.<br>'+
348
358
  'Disabling a step by default is useful if the step shall not be executed every build, e.g. special steps for releasing a software or some kind of developer test steps.'
@@ -1,1155 +1,1162 @@
1
- <!DOCTYPE html>
2
-
3
-
4
- <html xmlns="http://www.w3.org/1999/xhtml">
5
- <head>
6
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
-
8
- <title>Changelog &mdash; bake documentation</title>
9
-
10
- <link rel="stylesheet" href="_static/basic.css" type="text/css" />
11
- <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
12
- <link rel="stylesheet" href="_static/bootswatch-3.3.4/sandstone/bootstrap.min.css" type="text/css" />
13
- <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" />
14
-
15
- <script type="text/javascript">
16
- var DOCUMENTATION_OPTIONS = {
17
- URL_ROOT: './',
18
- VERSION: '',
19
- COLLAPSE_INDEX: false,
20
- FILE_SUFFIX: '.html',
21
- HAS_SOURCE: true
22
- };
23
- </script>
24
- <script type="text/javascript" src="_static/jquery.js"></script>
25
- <script type="text/javascript" src="_static/underscore.js"></script>
26
- <script type="text/javascript" src="_static/doctools.js"></script>
27
- <script type="text/javascript" src="_static/js/jquery-1.11.0.min.js"></script>
28
- <script type="text/javascript" src="_static/js/jquery-fix.js"></script>
29
- <script type="text/javascript" src="_static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
30
- <script type="text/javascript" src="_static/bootstrap-sphinx.js"></script>
31
- <link rel="shortcut icon" href="_static/logo_tiny_32.ico"/>
32
- <link rel="top" title="bake documentation" href="index.html" />
33
- <link rel="next" title="License" href="license.html" />
34
- <link rel="prev" title="Known Issues" href="known_issues.html" />
35
- <meta charset='utf-8'>
36
- <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
37
- <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
38
- <meta name="apple-mobile-web-app-capable" content="yes">
39
-
40
- </head>
41
- <body role="document">
42
-
43
- <div id="navbar" class="navbar navbar-default navbar-fixed-top">
44
- <div class="container">
45
- <div class="navbar-header">
46
- <!-- .btn-navbar is used as the toggle for collapsed navbar content -->
47
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
48
- <span class="icon-bar"></span>
49
- <span class="icon-bar"></span>
50
- <span class="icon-bar"></span>
51
- </button>
52
- <a class="navbar-brand" href="index.html"><img src="_static/logo_tiny_48.png">
53
- </a>
54
- <span class="navbar-text navbar-version pull-left"><b></b></span>
55
- </div>
56
-
57
- <div class="collapse navbar-collapse nav-collapse">
58
- <ul class="nav navbar-nav">
59
-
60
-
61
- <li class="dropdown globaltoc-container">
62
- <a role="button"
63
- id="dLabelGlobalToc"
64
- data-toggle="dropdown"
65
- data-target="#"
66
- href="index.html">Section <b class="caret"></b></a>
67
- <ul class="dropdown-menu globaltoc"
68
- role="menu"
69
- aria-labelledby="dLabelGlobalToc"><ul class="current">
70
- <li class="toctree-l1"><a class="reference internal" href="why_bake/why_bake.html">Why you should use bake</a></li>
71
- <li class="toctree-l1"><a class="reference internal" href="install/install_bake.html">Install bake</a></li>
72
- <li class="toctree-l1"><a class="reference internal" href="quickstart/quickstart.html">Quickstart</a></li>
73
- <li class="toctree-l1"><a class="reference internal" href="concepts/concepts.html">Concepts</a></li>
74
- <li class="toctree-l1"><a class="reference internal" href="syntax/syntax.html">Syntax</a></li>
75
- <li class="toctree-l1"><a class="reference internal" href="commandline/commandline.html">Commandline</a></li>
76
- <li class="toctree-l1"><a class="reference internal" href="ide/ide_integrations.html">IDE Support</a></li>
77
- <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Additional features</a></li>
78
- <li class="toctree-l1"><a class="reference internal" href="performance/performance.html">Performance</a></li>
79
- <li class="toctree-l1"><a class="reference internal" href="known_issues.html">Known Issues</a></li>
80
- <li class="toctree-l1 current"><a class="current reference internal" href="">Changelog</a></li>
81
- <li class="toctree-l1"><a class="reference internal" href="license.html">License</a></li>
82
- </ul>
83
- <ul>
84
- <li class="toctree-l1"><a class="reference internal" href="internal.html">Internal developing notes</a></li>
85
- </ul>
86
- </ul>
87
- </li>
88
-
89
- <li class="dropdown">
90
- <a role="button"
91
- id="dLabelLocalToc"
92
- data-toggle="dropdown"
93
- data-target="#"
94
- href="#">SubSections <b class="caret"></b></a>
95
- <ul class="dropdown-menu localtoc"
96
- role="menu"
97
- aria-labelledby="dLabelLocalToc"><ul>
98
- <li><a class="reference internal" href="#">Changelog</a></li>
99
- </ul>
100
- </ul>
101
- </li>
102
-
103
-
104
-
105
-
106
-
107
- <li>
108
- <a href="known_issues.html" title="Previous Chapter: Known Issues"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; Known Issues</span>
109
- </a>
110
- </li>
111
- <li>
112
- <a href="license.html" title="Next Chapter: License"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">License &raquo;</span>
113
- </a>
114
- </li>
115
-
116
-
117
-
118
-
119
-
120
- </ul>
121
-
122
-
123
-
124
- <form class="navbar-form navbar-right" action="search.html" method="get">
125
- <div class="form-group">
126
- <input type="text" name="q" class="form-control" placeholder="Search" />
127
- </div>
128
- <input type="hidden" name="check_keywords" value="yes" />
129
- <input type="hidden" name="area" value="default" />
130
- </form>
131
-
132
- </div>
133
- </div>
134
- </div>
135
-
136
- <div class="container">
137
- <div class="row">
138
- <div class="col-md-12">
139
-
140
- <div class="section" id="changelog">
141
- <h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this headline">¶</a></h1>
142
- <dl class="docutils">
143
- <dt>January 4, 2017 - bake-toolkit 2.28.1</dt>
144
- <dd><ul class="first last simple">
145
- <li>Bugfix: Build does not break anymore if &#8220;LintPolicy&#8221; is still defined in Project.meta. Now only a warning is printed out.</li>
146
- </ul>
147
- </dd>
148
- <dt>January 3, 2017 - bake-toolkit 2.28.0</dt>
149
- <dd><ul class="first last simple">
150
- <li>Added: private flag for configs (cannot be referenced directly from outside of the project).</li>
151
- <li>Added: attribute &#8220;echo: off&#8221; for CommandLine and Makefile.</li>
152
- <li>Added: &#8220;&#8211;file-list&#8221; shows all files and headers of the projects.</li>
153
- <li>Removed: lint support.</li>
154
- <li>Bugfix: environment variables (specified with &#8220;Set&#8221;) can now be set individually for different configs.</li>
155
- <li>Changed: qac: again slightly modified cip workaround.</li>
156
- </ul>
157
- </dd>
158
- <dt>January 2, 2017 - bake-toolkit 2.27.0</dt>
159
- <dd><ul class="first last simple">
160
- <li>Added: local <em>Adapt</em> with conditions (e.g. toolchain), see <a class="reference internal" href="syntax/adapt_configs.html#adapt-reference"><span>Adapt configs</span></a>.</li>
161
- <li>Changed: qac: cip workaround slightly adapted, removed temporary debug output.</li>
162
- </ul>
163
- </dd>
164
- <dt>December 23, 2016 - bake-toolkit 2.26.1</dt>
165
- <dd><ul class="first last simple">
166
- <li>Changed: qac: next try to add a workaround for the cip file bug.</li>
167
- <li>Cosmetic: fixed possible wrong message when reloading metas (&#8220;corrupt&#8221; instead of &#8220;changed&#8221;)</li>
168
- </ul>
169
- </dd>
170
- <dt>December 20, 2016 - bake-toolkit 2.26.0</dt>
171
- <dd><ul class="first last simple">
172
- <li>Changed: before this version, &#8220;-w&#8221; command line args (which define the workspace roots) have overwritten roots.bake file. Now these roots will be
173
- merged. First &#8220;-w&#8221;, then roots.bake. Note: this will not break current builds.</li>
174
- </ul>
175
- </dd>
176
- <dt>December 16, 2016 - bake-toolkit 2.25.1</dt>
177
- <dd><ul class="first last simple">
178
- <li>Bugfix: a null pointer exception could occur in 2.25.0, which happened in a complex scenario with multiple dependencies to a default config which extends another config with dependencies.
179
- Luckily, this bugfix goes along with a small performance improvement when loading uncached meta files.</li>
180
- </ul>
181
- </dd>
182
- <dt>December 15, 2016 - bake-toolkit 2.25.0</dt>
183
- <dd><ul class="first last simple">
184
- <li>Changed (!): before this version, all &#8220;IncludeDir&#8221;s were evaluated prior to the &#8220;Dependency&#8221;s to calculate the include path string for the compiler. Now the line order
185
- is taken into account. To get the same include path string as in 2.24.x, shift all &#8220;IncludeDir&#8221;s in front of the first &#8220;Dependency&#8221;.</li>
186
- <li>Added: it is possible to mark an IncludeDir with &#8220;system: true&#8221;, which means that e.g. for gcc &#8220;-isystem&#8221; is used instead of &#8220;-I&#8221;. Very useful for third party libs.</li>
187
- <li>Bugfix: qac: adapted parser to new gcc version strings. On some machines an incorrect CCT was chosen.</li>
188
- <li>Bugfix: when building with &#8220;-p &lt;projectname&gt;&#8221;, bake has not only built &lt;projectname&gt;, but also all injected dependencies of &lt;projectname&gt;, which was not intended.</li>
189
- <li>Added: qac: additional step to generate reports, activate it manually with &#8220;&#8211;qacstep report&#8221;, see documentation.</li>
190
- <li>Cosmetic: Adapt.meta files are also cached now.</li>
191
- <li>Temporary: cip bug workaround from 2.24.2 does not work, added some debug output to get more infos - sorry for the spam - will be removed soon.</li>
192
- </ul>
193
- </dd>
194
- <dt>December 5, 2016 - bake-toolkit 2.24.3</dt>
195
- <dd><ul class="first last simple">
196
- <li>Added: qac: if &#8220;&lt;mainConfigName&gt;Qac&#8221; is found in main project, it will be used instead of &#8220;&lt;mainConfigName&gt;&#8221;</li>
197
- <li>Added: First version of bake-format script, thanks to gizmomogwai</li>
198
- </ul>
199
- </dd>
200
- <dt>November 24, 2016 - bake-toolkit 2.24.2</dt>
201
- <dd><ul class="first last simple">
202
- <li>Bugfix: qac: fixed recognition of platform for cygwin with gcc &gt;= 5.0</li>
203
- <li>Bugfix: qac: default folder of qacdata is now &lt;main project&gt;/.qacdata instead of &lt;working dir&gt;/.qacdata</li>
204
- <li>Bugfix: qac: workaround for &#8220;qacli admin&#8221;: retry up to 10 times if cip file is empty (getting compiler data)</li>
205
- </ul>
206
- </dd>
207
- <dt>November 16, 2016 - bake-toolkit 2.24.1</dt>
208
- <dd><ul class="first last simple">
209
- <li>Bugfix: qac.cct was not appended if &#8211;cct is used.</li>
210
- <li>Bugfix: qac: abort if QAC_HOME is set to empty string.</li>
211
- <li>Bugfix: qac: improved recognition of gcc platform.</li>
212
- <li>Changed: improved warning if the path in IncludeDir matches to several folders (warning will be shown in verbosity level 2 and above).</li>
213
- </ul>
214
- </dd>
215
- <dt>November 7, 2016 - bake-toolkit 2.24.0</dt>
216
- <dd><ul class="first last simple">
217
- <li>Bugfix: qac: output was not synced immediately to the console on some systems.</li>
218
- <li>Changed: qac: patching of cct introduced with 2.23.9 now opt-in via command line argument: &#8211;qaccctpatch.</li>
219
- <li>Changed: qac: default build output directory is now &#8220;build/.qac/&#8221; instead of &#8220;build/&#8221; (which does not overwrite regular build output anymore).</li>
220
- <li>Changed: if default build folder is used, the parent folder &#8220;build&#8221; will be also removed when the project is cleaned if the &#8220;build&#8221; folder will become empty.</li>
221
- <li>Added: bakeclean script to delete all .bake, .bake/../build and .bake/../build_* folders</li>
222
- <li>Added: prebuild feature now uses objects instead of the library if objects exist.</li>
223
- <li>Changed: default executable file ending on non-Windows systems now &#8220;&#8221; (except Diab and Greenhills, here it is always &#8221;.elf&#8221;).</li>
224
- </ul>
225
- </dd>
226
- <dt>October 26, 2016 - bake-toolkit 2.23.12</dt>
227
- <dd><ul class="first last simple">
228
- <li>Bugfix: qac: now also files from .qacdata folder are filtered out.</li>
229
- <li>Bugfix: qac: modules were not be filtered out correctly, e.g. swcAbcd was not filtered out if swcAbc was compiled.</li>
230
- <li>Removed: qac: qac.rcf will not be searched anymore (most probably this feature was never used).</li>
231
- <li>Added: qac: qac.cct will be searched up to root; if found, the content will be appended to the original cct unless specified otherwise.</li>
232
- </ul>
233
- </dd>
234
- <dt>October 26, 2016 - bake-toolkit 2.23.9</dt>
235
- <dd><ul class="first last simple">
236
- <li>Bugfix: qac: command line options not correctly handed over to bake (bakeqac has been aborted in this case).</li>
237
- <li>Bugfix: qac: On some systems some warnings were not suppressed. Added a few defines to cct which hopefully fixes this.</li>
238
- <li>Bugfix: qac: &#8211;qacretry did not work with &#8211;qacnofilter.</li>
239
- </ul>
240
- </dd>
241
- <dt>October 20, 2016 - bake-toolkit 2.23.8</dt>
242
- <dd><ul class="first last simple">
243
- <li>Bugfix: qac: &#8220;License Refused&#8221; for *.c Files not treated as an error anymore, which was a problem for &#8220;&#8211;qacretry&#8221;.</li>
244
- <li>Changed: qac: default qacdata folder is now &#8221;.qacdata&#8221;</li>
245
- <li>Changed: qac: warnings are now sorted by line numbers per file</li>
246
- <li>Changed: qac: &#8220;&#8211;qacfilter off|on&#8221; (default on) was changed to &#8220;&#8211;qacnofilter&#8221; (if skipped, filters are active)</li>
247
- <li>Changed: qac: &#8220;&#8211;qacnoformat was reanmed to &#8220;&#8211;qacrawformat&#8221;</li>
248
- <li>Cosmetic: qac: if license retry timeout is reached, an additional info is printed.</li>
249
- <li>Added: qac: With &#8211;qacdoc a link to the appropriate documentation page is printed for every warning.</li>
250
- </ul>
251
- </dd>
252
- <dt>October 17, 2016 - bake-toolkit 2.23.7</dt>
253
- <dd><ul class="first last simple">
254
- <li>Changed: renamed qac build steps from create, build and result to admin, analyze and view (the original qac names).</li>
255
- <li>Bugfix: qac view step might have been executed although build has been failed.</li>
256
- <li>Bugfix: qac view step with never executed analyze step might have been crashed.</li>
257
- <li>Bugfix: qac C++11 and C++14 switches were broken.</li>
258
- </ul>
259
- </dd>
260
- <dt>October 14, 2016 - bake-toolkit 2.23.6</dt>
261
- <dd><ul class="first last simple">
262
- <li>Bugfix: qac license refused error now really shown.</li>
263
- <li>Changed: QAC_RCF environment variable not supported anymore. Instead a file qac.rcf will be searched upwards from bake main project folder.</li>
264
- <li>Changed: qac messages reformatted, MISRA rule now completely shown. For plain qac style use &#8211;qacnoformat.</li>
265
- <li>Added: number of qac messages are printed at the end.</li>
266
- <li>Added: bakeqac now supports -a &lt;color&gt; like bake.</li>
267
- <li>Added: with &#8211;qacretry &lt;seconds&gt; a retry timeout can be specified if license is refused, default is no retry.</li>
268
- </ul>
269
- </dd>
270
- <dt>October 14, 2016 - bake-toolkit 2.23.5</dt>
271
- <dd><ul class="first last simple">
272
- <li>Bugfix: qac cct auto detection fixed.</li>
273
- <li>Bugfix: &#8211;prepro option fixed.</li>
274
- </ul>
275
- </dd>
276
- <dt>October 14, 2016 - bake-toolkit 2.23.4</dt>
277
- <dd><ul class="first last simple">
278
- <li>Bugfix: qac during analyse step license error not detected properly.</li>
279
- </ul>
280
- </dd>
281
- <dt>October 13, 2016 - bake-toolkit 2.23.3</dt>
282
- <dd><ul class="first last simple">
283
- <li>Bugfix: improved auto detection of cct for qac.</li>
284
- <li>Bugfix: print qac output in case of error.</li>
285
- <li>Changed: QAC_HOME can end now with a slash.</li>
286
- <li>Changed: qacli call now relative to QAC_HOME.</li>
287
- <li>Changed: qac create will now be done regardless if qacdata exists.</li>
288
- </ul>
289
- </dd>
290
- <dt>October 13, 2016 - bake-toolkit 2.23.2</dt>
291
- <dd><ul class="first last simple">
292
- <li>Added: bakeqac, see documentation.</li>
293
- </ul>
294
- </dd>
295
- <dt>October 5, 2016 - bake-toolkit 2.22.0</dt>
296
- <dd><ul class="first last simple">
297
- <li>Changed: when building, only the return value of the compiler is taken into account, not the result of the error parser anymore. Old behaviour can be switched on by command line argument.</li>
298
- <li>Bugfix: again fixed reading of dependency files, added several unittests.</li>
299
- <li>Internal: based on new rtext 0.9.0 and rgen 0.8.2 now.</li>
300
- </ul>
301
- </dd>
302
- <dt>September 30, 2016 - bake-toolkit 2.21.0</dt>
303
- <dd><ul class="first last simple">
304
- <li>Changed: version and time infos are suppressed now per default. Version can be seen with &#8211;help or &#8211;version, time can be seen with &#8211;time.</li>
305
- <li>Changed: option &#8211;writeCC2J renamed to &#8211;compilation-db, which has the default filename compilation-db.json now.</li>
306
- <li>Added: option &#8211;incs-and-defs=json prints infos about includes and defines of all projects in json format.</li>
307
- </ul>
308
- </dd>
309
- <dt>September 28, 2016 - bake-toolkit 2.20.4</dt>
310
- <dd><ul class="first last simple">
311
- <li>Bugfix: fixed auto-detected of dependency files</li>
312
- </ul>
313
- </dd>
314
- <dt>September 21, 2016 - bake-toolkit 2.20.3</dt>
315
- <dd><ul class="first last simple">
316
- <li>Bugfix: reading dependency files was broken for TI compiler, format is now auto-detected independent from compiler version</li>
317
- </ul>
318
- </dd>
319
- <dt>September 13, 2016 - bake-toolkit 2.20.2</dt>
320
- <dd><ul class="first last simple">
321
- <li>Bugfix: <em>prebuild</em> libs were not linked if all original sources were removed</li>
322
- </ul>
323
- </dd>
324
- <dt>September 5, 2016 - bake-toolkit 2.20.1</dt>
325
- <dd><ul class="first last simple">
326
- <li>Added: inject feature for dependencies</li>
327
- <li>Added: option to generate a dot graph file</li>
328
- <li>Added: <em>prebuild</em> feature for distribution builds</li>
329
- <li>Added: commandline option <em>&#8211;build_</em> to enable the old outputdir behaviour: <em>build_</em> instead of <em>build/</em></li>
330
- <li>Added: printing out more information when loading Project.metas in verbosity level 3</li>
331
- <li>Changed: circular dependency warning moved from verbosity level 1 to 3</li>
332
- <li>Added: ToolchainName is now a predefined variable for Project.meta</li>
333
- <li>Added: &#8211;compile-only option (which is equal to the workaround -f &#8221;.&#8221;)</li>
334
- <li>Bugfix: &#8211;adapt commandline option accepts absolute paths now</li>
335
- <li>Changed: removed the <em>bundle</em> feature</li>
336
- </ul>
337
- </dd>
338
- <dt>August 12, 2016 - bake-toolkit 2.19.2</dt>
339
- <dd><ul class="first last simple">
340
- <li>Bugfix: fixed TI linker error parser</li>
341
- </ul>
342
- </dd>
343
- <dt>August 4, 2016 - Eclipse plugin 1.7.1</dt>
344
- <dd><ul class="first last simple">
345
- <li>Bugfix: error markers may not created correctly if projects had &#8220;^&#8221; in the name</li>
346
- </ul>
347
- </dd>
348
- <dt>August 1, 2016 - bake-toolkit 2.19.1</dt>
349
- <dd><ul class="first last simple">
350
- <li>Bugfix: made the new &#8220;listening to raw character 0x3&#8221; more robust</li>
351
- </ul>
352
- </dd>
353
- <dt>July 28, 2016 - bake-toolkit 2.19.0</dt>
354
- <dd><ul class="first last simple">
355
- <li>Changed: default output dir is now build/&lt;something&gt; instead of build_&lt;something&gt;</li>
356
- <li>Added: listening to raw character 0x3 on stdin to abort bake/bakery (needed for some Cygwin installations)</li>
357
- <li>Internal: switching from rgen 0.8.0 to rgen 0.8.1 (which should have no functional impact)</li>
358
- </ul>
359
- </dd>
360
- <dt>June 22, 2016 - bake-toolkit 2.18.0</dt>
361
- <dd><ul class="first last">
362
- <li><p class="first">Bugfix: order if linker libs fixed. For compatibility, a new command line flag &#8220;&#8211;link-2-17&#8221; to get the old behaviour was added.</p>
363
- <table border="1" class="docutils">
364
- <colgroup>
365
- <col width="50%" />
366
- <col width="50%" />
367
- </colgroup>
368
- <thead valign="bottom">
369
- <tr class="row-odd"><th class="head">Example</th>
370
- <th class="head">&nbsp;</th>
371
- </tr>
372
- </thead>
373
- <tbody valign="top">
374
- <tr class="row-even"><td>Dependencies</td>
375
- <td>A-&gt;B-&gt;D and A-&gt;C-&gt;D</td>
376
- </tr>
377
- <tr class="row-odd"><td>New correct link order</td>
378
- <td>A, B, C, D</td>
379
- </tr>
380
- <tr class="row-even"><td>Old wrong link order (&#8211;link-2-17)</td>
381
- <td>A, B, D, C</td>
382
- </tr>
383
- </tbody>
384
- </table>
385
- </li>
386
- </ul>
387
- </dd>
388
- <dt>May 4, 2016 - bake-toolkit 2.17.4</dt>
389
- <dd><ul class="first last simple">
390
- <li>Bugfix: bakery returned 1 for successful builds</li>
391
- <li>Changed: bakery now lists all failed unit tests at the end</li>
392
- </ul>
393
- </dd>
394
- <dt>April 13, 2016 - bake-toolkit 2.17.3</dt>
395
- <dd><ul class="first last simple">
396
- <li>Bugfix: Commands injected by adapt feature were executed in wrong directory</li>
397
- <li>Bugfix: Added an error if two sources would result in the same object file</li>
398
- </ul>
399
- </dd>
400
- <dt>April 6, 2016 - bake-toolkit 2.17.2</dt>
401
- <dd><ul class="first last simple">
402
- <li>Bugfix: &#8220;&#8211;link-only&#8221; option has ignored libraries from makefiles</li>
403
- </ul>
404
- </dd>
405
- <dt>March 15, 2016 - bake-toolkit 2.17.1</dt>
406
- <dd><ul class="first last simple">
407
- <li>Bugfix: configs with inherited DefaultToolchains were not listed on command line (via &#8220;&#8211;list&#8221;)</li>
408
- <li>Changed: if build config name was omitted on commandline, a default config is specified and this default config has no DefaultToolchain, bake lists all possible build configs (same as &#8220;&#8211;list&#8221;)</li>
409
- <li>Added: warning if sources files were compiled several times for one binary</li>
410
- </ul>
411
- </dd>
412
- <dt>March 15, 2015 - Eclipse plugin 1.7.0</dt>
413
- <dd><ul class="first last simple">
414
- <li>Bugfix: config names written in inverted commas or with special characters were not recognized by &#8220;Select bake Config&#8221; menu</li>
415
- <li>Removed: multi-console option, which was rarely used and not working correctly anymore with latest Eclipse version</li>
416
- <li>Added: option to disable/enable console scroll-lock/word-wrap when starting a build</li>
417
- <li>Cosmetic: config names are now displayed in &#8220;Select bake Config&#8221; in the same order as in Project.meta</li>
418
- <li>Cosmetic: bake console does not open automatically anymore when starting Eclipse</li>
419
- </ul>
420
- </dd>
421
- <dt>February 26, 2016 - bake-toolkit 2.16.1</dt>
422
- <dd><ul class="first last simple">
423
- <li>Added: experimental bundle feature</li>
424
- <li>Changed: &#8220;&#8211;threads&#8221; now deprected, use &#8220;-j&#8221; instead</li>
425
- <li>Bugfix: in rare cases the cache from a copied/moved Project.meta file was reused instead of reloading the file. This could lead to errors.</li>
426
- </ul>
427
- </dd>
428
- <dt>February 11, 2016 - bake-toolkit 2.15.0</dt>
429
- <dd><ul class="first last simple">
430
- <li>Added: multiple inheritance for configs</li>
431
- <li>Added: ArtifactName can be specified for libraries</li>
432
- <li>Added: Merged configs are printed out when running bake with &#8211;debug</li>
433
- <li>Added: info output if &#8220;path magic&#8221; hides local pathes for IncludeDir</li>
434
- <li>Bugfix: fixed passing arguments from bakery to bake</li>
435
- </ul>
436
- </dd>
437
- <dt>January 14, 2016 - bake-toolkit 2.14.0</dt>
438
- <dd><ul class="first last simple">
439
- <li>Added: possibility to change configs via command line, e.g. changing compiler, see &#8220;adapt&#8221; docu page</li>
440
- <li>Changed: extending configs in a Project.meta file made more generic, see &#8220;derive&#8221; docu page</li>
441
- <li>Changed: default order of filenames changed, now order in Project.meta has the highest priority as intended. Results of glob patterns are sorted alphabetically as before.</li>
442
- <li>Changed: libraries from makefiles are linked now after other libraries defined from the same config</li>
443
- <li>Added: IncludeDir now possible for CustomConfigs</li>
444
- <li>Bugfix: &#8211;abs-paths now works with &#8211;incs-and-defs</li>
445
- </ul>
446
- </dd>
447
- <dt>December 23, 2015 - bake-toolkit 2.13.1</dt>
448
- <dd><ul class="first last simple">
449
- <li>Bugfix: merging configs was extremely slow in 2.12.2 and 2.13.0</li>
450
- </ul>
451
- </dd>
452
- <dt>December 23, 2015 - bake-toolkit 2.13.0</dt>
453
- <dd><ul class="first last">
454
- <li><p class="first">Bugfix: It was possible that the archiver and linker were called for &#8211;prepro and &#8211;link-only builds</p>
455
- </li>
456
- <li><p class="first">Added: possibility to specify minimum and maximum required bake version in Project.meta file</p>
457
- </li>
458
- <li><p class="first">Added: option to omit -b when executing the bakery</p>
459
- </li>
460
- <li><p class="first">Added: bakery now searches recursively for bake projects</p>
461
- </li>
462
- <li><p class="first">Changed: some commandline arguments changed, deprecated arguments still supported</p>
463
- <table border="1" class="docutils">
464
- <colgroup>
465
- <col width="44%" />
466
- <col width="56%" />
467
- </colgroup>
468
- <thead valign="bottom">
469
- <tr class="row-odd"><th class="head">New argument</th>
470
- <th class="head">Deprecated argument</th>
471
- </tr>
472
- </thead>
473
- <tbody valign="top">
474
- <tr class="row-even"><td>&#8211;do</td>
475
- <td>&#8211;include_filter</td>
476
- </tr>
477
- <tr class="row-odd"><td>&#8211;omit</td>
478
- <td>&#8211;exclude_filter</td>
479
- </tr>
480
- <tr class="row-even"><td>&#8211;show_configs</td>
481
- <td>&#8211;list</td>
482
- </tr>
483
- <tr class="row-odd"><td>&#8211;link-only</td>
484
- <td>&#8211;link_only</td>
485
- </tr>
486
- <tr class="row-even"><td>&#8211;generate-doc</td>
487
- <td>&#8211;docu</td>
488
- </tr>
489
- <tr class="row-odd"><td>&#8211;lint-min</td>
490
- <td>&#8211;lint_min</td>
491
- </tr>
492
- <tr class="row-even"><td>&#8211;lint-max</td>
493
- <td>&#8211;lint_max</td>
494
- </tr>
495
- <tr class="row-odd"><td>&#8211;ignore-cache</td>
496
- <td>&#8211;ignore_cache</td>
497
- </tr>
498
- <tr class="row-even"><td>&#8211;toolchain-info</td>
499
- <td>&#8211;toolchain_info</td>
500
- </tr>
501
- <tr class="row-odd"><td>&#8211;toolchain-names</td>
502
- <td>&#8211;toolchain_names</td>
503
- </tr>
504
- <tr class="row-even"><td>&#8211;abs-paths</td>
505
- <td>&#8211;show_abs_paths</td>
506
- </tr>
507
- <tr class="row-odd"><td>&#8211;no-autodir</td>
508
- <td>&#8211;no_autodir</td>
509
- </tr>
510
- <tr class="row-even"><td>&#8211;incs-and-defs</td>
511
- <td>&#8211;show_incs_and_defs</td>
512
- </tr>
513
- <tr class="row-odd"><td>&#8211;conversion-info</td>
514
- <td>&#8211;conversion_info</td>
515
- </tr>
516
- <tr class="row-even"><td>&#8211;doc</td>
517
- <td>&#8211;show_doc</td>
518
- </tr>
519
- <tr class="row-odd"><td>&#8211;license</td>
520
- <td>&#8211;show_license</td>
521
- </tr>
522
- </tbody>
523
- </table>
524
- </li>
525
- </ul>
526
- </dd>
527
- <dt>December 16, 2015 - bake-toolkit 2.12.2</dt>
528
- <dd><ul class="first last simple">
529
- <li>Bugfix: extending a client config (merging) could have broken the parent config</li>
530
- <li>Changed: empty libraries will not be created and linked anymore</li>
531
- <li>Changed: added inject as alias for infix</li>
532
- </ul>
533
- </dd>
534
- <dt>November 16, 2015 - bake-toolkit 2.12.1</dt>
535
- <dd><ul class="first last simple">
536
- <li>Bugfix: inherit and infix features may have calculated wrong relative paths</li>
537
- </ul>
538
- </dd>
539
- <dt>October 26, 2015 - Eclipse plugin 1.6.0</dt>
540
- <dd><ul class="first last simple">
541
- <li>Added: possibility to specify folders to exclude when importing projects</li>
542
- <li>Bugfix: fixed exception when trying to build after starting eclipse with a closed project</li>
543
- </ul>
544
- </dd>
545
- <dt>October 14, 2015 - bake-toolkit 2.12.0</dt>
546
- <dd><ul class="first last simple">
547
- <li>Changed: now ALL startup and exit steps are executed regardless if the previous steps were successful even if stopOnFirstError was configured</li>
548
- <li>Bugfix: relative pathes between roots based on roots.bake were calculated incorrectly</li>
549
- </ul>
550
- </dd>
551
- <dt>October 2, 2015 - bake-toolkit 2.11.4</dt>
552
- <dd><ul class="first last simple">
553
- <li>Bugfix: bake aborted in larger workspaces with 2.11.3 right before linking</li>
554
- </ul>
555
- </dd>
556
- <dt>September 8, 2015 - bake-toolkit 2.11.3</dt>
557
- <dd><ul class="first last simple">
558
- <li>Bugfix: linker executed even if a dependency has an error</li>
559
- <li>Bugfix: now the new docu is really added to the gem</li>
560
- </ul>
561
- </dd>
562
- <dt>September 3, 2015 - bake-toolkit 2.11.2</dt>
563
- <dd><ul class="first last simple">
564
- <li>Bugfix: all files were always be recompiled with ruby &lt; 1.9.3</li>
565
- <li>Changed: switched to new docu style, thanks Nico!</li>
566
- </ul>
567
- </dd>
568
- <dt>August 4, 2015 - bake-toolkit 2.11.1</dt>
569
- <dd><ul class="first last simple">
570
- <li>Added: project dir output for conversion tool</li>
571
- <li>Moved: wishlist to github</li>
572
- </ul>
573
- </dd>
574
- <dt>July 31, 2015 - bake-toolkit 2.11.0</dt>
575
- <dd><ul class="first last simple">
576
- <li>Added: new parameters for includeDir: inherit and infix</li>
577
- <li>Added: dependency output for conversion tool</li>
578
- <li>Bugfix: makefile flags where not used when cleaning the workspace</li>
579
- </ul>
580
- </dd>
581
- <dt>July 6, 2015 - bake-toolkit 2.10.3</dt>
582
- <dd><ul class="first last simple">
583
- <li>Bugfix: Build stopped unintentionally when using -r</li>
584
- </ul>
585
- </dd>
586
- <dt>July 3, 2015 - bake-toolkit 2.10.2</dt>
587
- <dd><ul class="first last simple">
588
- <li>Bugfix: PostSteps were unintentionally executed if a dependent step (e.g. linking) was not executed due to an error in another project (e.g. compiler error)</li>
589
- </ul>
590
- </dd>
591
- <dt>July 1, 2015 - bake-toolkit 2.10.1</dt>
592
- <dd><ul class="first last simple">
593
- <li>Added: Possibility to add descriptions for configs which will be printed when using &#8211;show_configs</li>
594
- <li>Bugfix: link_only did not link only if not all sources of the main project were not built before</li>
595
- <li>Bugfix: Ctrl-C on command line did not work properly under Linux</li>
596
- </ul>
597
- </dd>
598
- <dt>July 1, 2015 - Eclipse plugin 1.5.1</dt>
599
- <dd><ul class="first last simple">
600
- <li>Bugfix: AdjustIncludes broken for subfolder projects (with a &#8220;^&#8221; in the name)</li>
601
- <li>Bugfix: Error parser broken for subfolder projects (with a &#8220;^&#8221; in the name)</li>
602
- <li>Bugfix: Configs with inherited DefaultToolchain were not selectable to build</li>
603
- </ul>
604
- </dd>
605
- <dt>June 10, 2015 - bake-toolkit 2.9.2</dt>
606
- <dd><ul class="first last simple">
607
- <li>Cosmetic: Redundant include directories are now removed before calling the compiler</li>
608
- <li>Bugfix: Moving cached meta files was not recognized correctly, wrong path references may have been used</li>
609
- </ul>
610
- </dd>
611
- <dt>June 8, 2015 - bake-toolkit 2.9.1</dt>
612
- <dd><ul class="first last simple">
613
- <li>Changed: &#8220;&#8211;doc&#8221; replaced by &#8220;&#8211;show_doc&#8221; to avoid confusion</li>
614
- </ul>
615
- </dd>
616
- <dt>June 5, 2015 - bake-toolkit 2.9.0</dt>
617
- <dd><ul class="first last simple">
618
- <li>Added: &#8220;&#8211;create&#8221; command line option to create project templates</li>
619
- <li>Added: &#8220;&#8211;conversion_info&#8221; command line option for bake conversion tool</li>
620
- <li>Cosmetic: made output clearer if &#8220;&#8211;link_only&#8221; is used for non ExecutableConfigs</li>
621
- </ul>
622
- </dd>
623
- <dt>June 5, 2015 - Eclipse plugin 1.4.5</dt>
624
- <dd><ul class="first last simple">
625
- <li>Bugfix: input streams from bake were closed too early under Linux - console window output and AdjustCDT feature should work correctly now</li>
626
- <li>Added: &#8220;Link This Project Only&#8221; shortcut added</li>
627
- <li>Added: Files under &#8220;build_*&#8221; and &#8221;.bake&#8221; are now automatically marked as derived (not shown in &#8220;Open Resource&#8221; dialog)</li>
628
- <li>Changed: error message dialog of AdjustCDT now displays the end instead of the beginning of very long error messages</li>
629
- </ul>
630
- </dd>
631
- <dt>May 19, 2015 - bake-toolkit 2.8.0</dt>
632
- <dd><ul class="first last simple">
633
- <li>Bugfix: when building a project with -p name, not only name was built, but all projects which start with the string name</li>
634
- <li>Added: more info why Project.meta files are reloaded</li>
635
- <li>Added: createVSProjects can create VS2013 projects</li>
636
- </ul>
637
- </dd>
638
- <dt>April 22, 2015 - bake-toolkit 2.7.0</dt>
639
- <dd><ul class="first last simple">
640
- <li>Added: possibility to use Eclipse file ordering for compilation (eclipseOrder attribute for DefaultToolchain)</li>
641
- <li>Changed: $(:) and $(/) are now mapped to Ruby internal variables <a class="reference external" href="File::PATH_SEPARATOR">File::PATH_SEPARATOR</a> and <a class="reference external" href="File::SEPARATOR">File::SEPARATOR</a>.</li>
642
- <li>This fixes the result in Cygwin/MinGW environments</li>
643
- <li>Bugfix: cmdline files are now written even if the build step fails</li>
644
- </ul>
645
- </dd>
646
- <dt>April 14, 2015 - bake-toolkit 2.6.0</dt>
647
- <dd><ul class="first last simple">
648
- <li>Added: validExitCodes attribute to steps (if a step has valid exit codes != 0)</li>
649
- <li>Added: StartupSteps and ExitSteps (always executed before and after a build)</li>
650
- </ul>
651
- </dd>
652
- <dt>April 8, 2015 - bake-toolkit 2.5.0</dt>
653
- <dd><ul class="first last simple">
654
- <li>Added: OS dependent variable $(:), which is used for setting the PATH variable</li>
655
- </ul>
656
- </dd>
657
- <dt>March 30, 2015 - bake-toolkit 2.4.3</dt>
658
- <dd><ul class="first last simple">
659
- <li>Added: If Project.meta files are updated, sources will only be recompiled if necessary</li>
660
- <li>Added: Set command in Project.meta has now an env attribute to store variables also in system environment which makes them accessible from user scripts</li>
661
- <li>Added: GCC_ENV toolchain (uses environment variables)</li>
662
- <li>Added: Improved MSVC support</li>
663
- </ul>
664
- </dd>
665
- <dt>March 16, 2015 - VS plugin 1.0.1</dt>
666
- <dd><ul class="first last simple">
667
- <li>Added: Support for VS2013</li>
668
- </ul>
669
- </dd>
670
- <dt>March 12, 2015 - bake-toolkit 2.3.4</dt>
671
- <dd><ul class="first last simple">
672
- <li>Changed: Clang command is now &#8220;clang&#8221; per default instead of llvm-gcc</li>
673
- <li>Added: CLANG_ANALYZE toolchain</li>
674
- <li>Added: MSVC toolchain</li>
675
- <li>Bugfix: some minor fixes</li>
676
- </ul>
677
- </dd>
678
- <dt>February 27, 2015 - Eclipse plugin 1.3.0</dt>
679
- <dd><ul class="first last simple">
680
- <li>Added: bake projects with equal names can be imported now</li>
681
- </ul>
682
- </dd>
683
- <dt>February 19, 2015 - bake-toolkit 2.2.2</dt>
684
- <dd><ul class="first last simple">
685
- <li>Changed: output dirs are now prefixed with &#8220;build_&#8221; per default</li>
686
- <li>Changed: introduced complex variable $(OutputDir,projectName,configName)</li>
687
- <li>Changed: reworked merge strategy of two configs, especially toolchain options</li>
688
- <li>Added: variables can be nested now</li>
689
- <li>Bugfix: fixed dependency header check for Unix when running Windows on a virtual machine</li>
690
- <li>Bugfix: variable OutputDir did not take overwritten output directory from toolchain into account</li>
691
- <li>Cosmetic: do not show internal pipes anymore when printing command lines</li>
692
- </ul>
693
- </dd>
694
- <dt>January 26, 2015 - bake-toolkit 2.1.1</dt>
695
- <dd><ul class="first last simple">
696
- <li>Bugfix: dependent header file check in 2.1.0 was broken</li>
697
- <li>Changed: files defined via glob pattern are sorted alphabetically now</li>
698
- </ul>
699
- </dd>
700
- <dt>January 23, 2015 - bake-toolkit 2.1.0</dt>
701
- <dd><ul class="first last simple">
702
- <li>Bugfix: fixed crash in warning output if setting variable via cmd did not work</li>
703
- <li>Workaround: dependent header files are now ignored on Windows if path starts with &#8220;/&#8221; and file cannot be found</li>
704
- <li>Changed: output of lint is now ignored, linting will only fails if it cannot be executed</li>
705
- <li>Changed: introduced new verbose mode -v3, shifted some output to this level</li>
706
- <li>Added: a dependency project can be specified with parent folders if it is ambiguous, e.g. Dependency &#8220;my/folder/proj&#8221;, config: lib</li>
707
- <li>Added: experimental CC2J output</li>
708
- </ul>
709
- </dd>
710
- <dt>January 23, 2015 - Eclipse plugin 1.2.1</dt>
711
- <dd><ul class="first last simple">
712
- <li>Bugfix: importing projects with existing .(c)project files may be placed in wrong folder</li>
713
- </ul>
714
- </dd>
715
- <dt>January 15, 2015 - bake-toolkit 2.0.10</dt>
716
- <dd><ul class="first last simple">
717
- <li>Bugfix: spaces in paths were not handled correctly in all cases</li>
718
- <li>Bugfix: dependency files of Keil compiler not treated correctly</li>
719
- <li>Added: showing why files are built in verbose mode -v2</li>
720
- <li>Added: whole workspace can be linted now (projects will be linted separately)</li>
721
- <li>Changed: removed bake-doc command, use bake &#8211;doc instead</li>
722
- <li>Changed: if no default project is specified, possible build configs are shown on command line again like in bake 1.x</li>
723
- </ul>
724
- </dd>
725
- <dt>January 7, 2015 - bake-toolkit 2.0.3</dt>
726
- <dd><ul class="first last">
727
- <li><dl class="first docutils">
728
- <dt>Changed: default configuration is chosen if configuration name is omitted. This applies to command line as well as to Dependency definitions, e.g.:</dt>
729
- <dd><ul class="first">
730
- <li><p class="first">Project.meta</p>
731
- <blockquote>
732
- <div><div class="highlight-console"><div class="highlight"><pre><span class="go">Dependency canDriver # no config attribute</span>
733
- </pre></div>
734
- </div>
735
- </div></blockquote>
736
- </li>
737
- <li><p class="first">Command line</p>
738
- <blockquote>
739
- <div><div class="highlight-console"><div class="highlight"><pre><span class="gp">User@Host:~$</span> bake -m bla/myProj
740
- </pre></div>
741
- </div>
742
- </div></blockquote>
743
- </li>
744
- </ul>
745
- <div class="last admonition note">
746
- <p class="first admonition-title">Note</p>
747
- <p class="last">To show the possible configs of a project, use the <cite>&#8211;show_configs</cite> command line option.</p>
748
- </div>
749
- </dd>
750
- </dl>
751
- </li>
752
- <li><p class="first">Changed: more than one config of a project can be used in one build.</p>
753
- <blockquote>
754
- <div><p>Example:</p>
755
- <div class="highlight-console"><div class="highlight"><pre><span class="go">Dependency canDriver, config: C1</span>
756
- <span class="go">Dependency canDriver, config: C2</span>
757
- </pre></div>
758
- </div>
759
- <p>To reference a config of the current project, omit the project name, e.g.:</p>
760
- <div class="highlight-console"><div class="highlight"><pre><span class="go">Dependency config: C3</span>
761
- </pre></div>
762
- </div>
763
- <p>To build a single project, you can still use -p command line argument:</p>
764
- <div class="highlight-console"><div class="highlight"><pre><span class="gp">User@Host:~$</span> bake Debug -p canDriver
765
- </pre></div>
766
- </div>
767
- <p>However, if canDriver has more than one config in the workspace, all configs will be built. To build only a single config, use a comma separator like this:</p>
768
- <div class="highlight-console"><div class="highlight"><pre><span class="gp">User@Host:~$</span> bake Debug -p canDriver,C1
769
- </pre></div>
770
- </div>
771
- </div></blockquote>
772
- </li>
773
- <li><dl class="first docutils">
774
- <dt>Changed: the default output folder has been changed due to the new feature of having several configs of a project in one workspace.</dt>
775
- <dd><table border="1" class="first docutils">
776
- <colgroup>
777
- <col width="12%" />
778
- <col width="36%" />
779
- <col width="53%" />
780
- </colgroup>
781
- <thead valign="bottom">
782
- <tr class="row-odd"><th class="head"></th>
783
- <th class="head">Old</th>
784
- <th class="head">New</th>
785
- </tr>
786
- </thead>
787
- <tbody valign="top">
788
- <tr class="row-even"><td>Main project</td>
789
- <td>$(MainConfigName)</td>
790
- <td>$(MainConfigName)</td>
791
- </tr>
792
- <tr class="row-odd"><td>Sub Project</td>
793
- <td>$(MainConfigName)_$(MainProjectName)</td>
794
- <td>$(ConfigName)_$(MainProjectName)_$(MainConfigName)</td>
795
- </tr>
796
- </tbody>
797
- </table>
798
- <div class="last admonition warning">
799
- <p class="first admonition-title">Warning</p>
800
- <p>Be careful if you have something like this in Project.meta:</p>
801
- <div class="highlight-console"><div class="highlight"><pre><span class="go">ExternalLibrary &quot;bspCoreZ6/$(MainConfigName)_$(MainProjectName)/src/coreZ6/startup/startupCode.o&quot;, search:false</span>
802
- </pre></div>
803
- </div>
804
- <p class="last">This refers to the old output directory. Change it or if you want to support old and new bake versions,
805
- write a PreStep which copies the file from the new location to the old one.</p>
806
- </div>
807
- </dd>
808
- </dl>
809
- </li>
810
- <li><p class="first">Changed: with -f a pattern can be specified, not only a single file. All files matching this string will be compiled.</p>
811
- </li>
812
- <li><p class="first">Changed: variables in Dependency definitions are not allowed anymore to avoid inconsistencies.</p>
813
- </li>
814
- <li><p class="first">Changed: no error will be reported anymore if makefile has no clean target.</p>
815
- </li>
816
- <li><p class="first">Changed: source files will now be compiled and archived ordered by the Files definition in Project.meta, not by a Eclipse-backward-compatibility-ordering.</p>
817
- </li>
818
- <li><p class="first">Changed: reworked some error messages, more error annotations are shown in IDEs</p>
819
- </li>
820
- <li><p class="first">Added: &#8220;&#8211;include_filter&#8221; and &#8220;&#8211;exclude_filter&#8221; also work for main step of CustomConfig</p>
821
- </li>
822
- <li><p class="first">Added: possibility to add comments in roots.bake</p>
823
- </li>
824
- <li><p class="first">Added: new variables CPPPath, CPath, ASMPath, ArchiverPath and LinkerPath. These variables can also be used in InternalDefines and InternalInclude files.</p>
825
- </li>
826
- <li><p class="first">Added: lint is not restricted to GCC toolchain anymore.</p>
827
- </li>
828
- <li><p class="first">Added: &#8211;docu option. Specify the docu command line in Docu tag of the (Default)Toolchain.</p>
829
- </li>
830
- <li><p class="first">Removed: support for Ruby 1.8. Use Ruby 1.9 or higher.</p>
831
- </li>
832
- <li><p class="first">Removed: dependencies to cxxproject and rake gems</p>
833
- </li>
834
- <li><p class="first">Removed: &#8220;-j&#8221; as default flag when calling makefiles. This must be explicitly specified.</p>
835
- </li>
836
- <li><p class="first">Removed: option to check for unnecessary includes</p>
837
- </li>
838
- <li><dl class="first docutils">
839
- <dt>Removed: hardcoded TI compiler commands and flags</dt>
840
- <dd><table border="1" class="first last docutils">
841
- <colgroup>
842
- <col width="21%" />
843
- <col width="69%" />
844
- <col width="10%" />
845
- </colgroup>
846
- <thead valign="bottom">
847
- <tr class="row-odd"><th class="head"></th>
848
- <th class="head">Old</th>
849
- <th class="head">New</th>
850
- </tr>
851
- </thead>
852
- <tbody valign="top">
853
- <tr class="row-even"><td>Compiler command</td>
854
- <td>$(ti_home)/ccsv5/tools/compiler/tms470/bin/cl470</td>
855
- <td>ti_cl</td>
856
- </tr>
857
- <tr class="row-odd"><td>Compiler flags</td>
858
- <td>-mv7A8 -g &#8211;include_path=&#8221;#{ti_home}/ccsv5/tools/compiler/tms470/include&#8221;
859
- &#8211;diag_warning=225 -me &#8211;abi=eabi &#8211;code_state=32 &#8211;preproc_with_compile</td>
860
- <td>&nbsp;</td>
861
- </tr>
862
- <tr class="row-even"><td>Archiver command</td>
863
- <td>$(ti_home)/ccsv5/tools/compiler/tms470/bin/ar470</td>
864
- <td>ti_ar</td>
865
- </tr>
866
- <tr class="row-odd"><td>Linker command</td>
867
- <td>$(ti_home)/ccsv5/tools/compiler/tms470/bin/cl470</td>
868
- <td>ti_cl</td>
869
- </tr>
870
- <tr class="row-even"><td>Linker flags</td>
871
- <td>-mv7A8 -g &#8211;diag_warning=225 -me &#8211;abi=eabi &#8211;code_state=32 -z
872
- &#8211;warn_sections -i&#8221;$(ti_home)/ccsv5/tools/compiler/tms470/lib&#8221;
873
- -i&#8221;$(ti_home)/ccsv5/tools/compiler/tms470/include&#8221;</td>
874
- <td>&nbsp;</td>
875
- </tr>
876
- <tr class="row-odd"><td>Linker lib prefix flags</td>
877
- <td>-lDebug/configPkg/linker.cmd</td>
878
- <td>&nbsp;</td>
879
- </tr>
880
- </tbody>
881
- </table>
882
- </dd>
883
- </dl>
884
- </li>
885
- <li><p class="first">Bugfix: variables in add and remove attributes of Flags now work as intended</p>
886
- </li>
887
- <li><p class="first">Bugfix: output folder was not created if no sources are specified for LibraryConfig and ExecutableConfig.</p>
888
- </li>
889
- <li><p class="first">Bugfix: &#8220;-p&#8221; was not forwarded in bakery.</p>
890
- </li>
891
- <li><p class="first">Cosmetic: bakery now calls bake with relative pathnames, which results in nicer outputs.</p>
892
- </li>
893
- </ul>
894
- </dd>
895
- <dt>December 19, 2014 - Eclipse plugin 1.2.0</dt>
896
- <dd><ul class="first last simple">
897
- <li>Bugfix: it is now ensured, that bake will be started from Eclipse working directory</li>
898
- <li>Bugfix: projects created with the &#8220;new bake project wizard&#8221; are now placed in the correct folder.</li>
899
- <li>Added: Eclipse working directory shown in bake preference dialog (important if -w option is used with relative paths)</li>
900
- <li>Added: Options to recreate .(c)project files when importing bake projects</li>
901
- <li>Changed: Eclipse configurations will be named &#8220;bake&#8221; and not &#8220;Do not use this config, use bake instead&#8221;</li>
902
- </ul>
903
- </dd>
904
- <dt>December 16, 2014 - Eclipse plugin 1.1.1</dt>
905
- <dd><ul class="first last simple">
906
- <li>Bugfix: Adjust include and defines broken feature used wrong command line option.</li>
907
- </ul>
908
- </dd>
909
- <dt>November 7, 2014 - bake-toolkit 1.8.0, Eclipse plugin 1.1.0</dt>
910
- <dd><ul class="first last simple">
911
- <li>Added: InternalIncludes and InternalDefines in DefaultToolchain, which are forwarded to the IDE.</li>
912
- <li>Changed: No default options for PC-lint in combination with GCC will be provided anymore. Use the official way, see co-gcc.lnt in PC-lint installation.</li>
913
- <li>Bugfix: verbose output for replacing non-existing environment variables broken.</li>
914
- </ul>
915
- </dd>
916
- <dt>November 4, 2014 - bake-toolkit 1.7.0</dt>
917
- <dd><ul class="first last simple">
918
- <li>Added: Option to define output directory relative/absolute for each project or for all projects.</li>
919
- <li>Added: &#8211;set command line option to set variables</li>
920
- <li>Added: Optional &#8220;Description&#8221; tag for projects in Project.meta</li>
921
- <li>Changed: Variables in DefaultToolchain will be substituted separately for each project.</li>
922
- </ul>
923
- </dd>
924
- <dt>August 8, 2014 - bake-toolkit 1.6.3</dt>
925
- <dd><ul class="first last simple">
926
- <li>Fixed: possible uninitialized variable could lead to crash bake</li>
927
- </ul>
928
- </dd>
929
- <dt>August 6, 2014 - bake-toolkit 1.6.2</dt>
930
- <dd><ul class="first last simple">
931
- <li>Fixed: clear clearn- and clobber-lists at startup</li>
932
- <li>Fixed: Variables not substituted in ArtifactName and ArtifactNameBase</li>
933
- <li>Added: Cyclic variable substitution</li>
934
- </ul>
935
- </dd>
936
- <dt>August 5, 2014 - bake-toolkit 1.6.1</dt>
937
- <dd><ul class="first last simple">
938
- <li>Added: Fixed variable substitution</li>
939
- </ul>
940
- </dd>
941
- <dt>August 1, 2014 - bake-toolkit 1.6.0</dt>
942
- <dd><ul class="first last simple">
943
- <li>Added: The value of a variable can be the result of a command line</li>
944
- </ul>
945
- </dd>
946
- <dt>July 18, 2014 - bake-toolkit 1.5.0</dt>
947
- <dd><ul class="first last simple">
948
- <li>Added: Dependencies can be overwritten in inherited projects</li>
949
- <li>Removed: defines cannot be filtered anymore via command line</li>
950
- </ul>
951
- </dd>
952
- <dt>June 6, 2014 - bake-toolkit 1.4.0</dt>
953
- <dd><ul class="first last simple">
954
- <li>Bugfix: variables can be used in &#8220;Set&#8221; now</li>
955
- <li>Added: variable &#8220;MainProjectDir&#8221;</li>
956
- </ul>
957
- </dd>
958
- <dt>May 23, 2014 - bake-toolkit 1.3.0</dt>
959
- <dd><ul class="first last simple">
960
- <li>Added: defines can be filtered now via command line</li>
961
- </ul>
962
- </dd>
963
- <dt>May 2, 2014 - bake-toolkit 1.2.1</dt>
964
- <dd><ul class="first last simple">
965
- <li>Added: Set keyword for defining variables</li>
966
- <li>Changed: &#8220;executed in&#8221;-output now in separate line</li>
967
- </ul>
968
- </dd>
969
- <dt>March 14, 2014 - bake-toolkit 1.1.0</dt>
970
- <dd><ul class="first last simple">
971
- <li>Added: Lint support</li>
972
- <li>Added: $(ProjectDir) variable</li>
973
- </ul>
974
- </dd>
975
- <dt>March 7, 2014 - bake-toolkit 1.0.27</dt>
976
- <dd><ul class="first last simple">
977
- <li>Cosmetic: some pictures in documentation were missing</li>
978
- </ul>
979
- </dd>
980
- <dt>March 5, 2014 - bake-toolkit 1.0.26</dt>
981
- <dd><ul class="first last simple">
982
- <li>Bugfix: in rare cases invalid characters from compiler output were not handled correctly</li>
983
- <li>Bugfix: changing workspace roots on command line now always regenerates build tree</li>
984
- <li>Added: Variable $(Roots) for IncludeDir directives</li>
985
- <li>Changed: dependency files for all compilers will be generated inclusive system headers</li>
986
- <li>Changed: abort earlier if main directory has no Project.meta</li>
987
- <li>Changed: every environment variable is expanded to an empty string if not defined</li>
988
- </ul>
989
- </dd>
990
- <dt>January 21, 2014 - bake-toolkit 1.0.25</dt>
991
- <dd><ul class="first last simple">
992
- <li>Added: configs can now be inherited</li>
993
- <li>Added: command bake-doc opens bake doc</li>
994
- <li>Changed: dependency files for Greenhills compiler will be generated with -MD instead of -MMD</li>
995
- </ul>
996
- </dd>
997
- <dt>September 10, 2013 - bake-toolkit 1.0.24</dt>
998
- <dd><ul class="first last simple">
999
- <li>Changed: Improved Keil linker error parser.</li>
1000
- </ul>
1001
- </dd>
1002
- <dt>September 9, 2013 - bake-toolkit 1.0.23</dt>
1003
- <dd><ul class="first last simple">
1004
- <li>Added: Keil support.</li>
1005
- <li>Bugfix: minor fixes.</li>
1006
- </ul>
1007
- </dd>
1008
- <dt>August 21, 2013 - bake-toolkit 1.0.22</dt>
1009
- <dd><ul class="first last simple">
1010
- <li>Bugfix: Searching for project folders did not work correctly.</li>
1011
- </ul>
1012
- </dd>
1013
- <dt>August 20, 2013 - Eclipse plugin 1.0.5.0</dt>
1014
- <dd><ul class="first last simple">
1015
- <li>Bugfix: Adjust includes in CDT is working again after Java Update.</li>
1016
- </ul>
1017
- </dd>
1018
- <dt>August 1, 2013 - bake-toolkit 1.0.21</dt>
1019
- <dd><ul class="first last simple">
1020
- <li>Bugfix: projects folders which are junctions were not found anymore after the last update.</li>
1021
- </ul>
1022
- </dd>
1023
- <dt>July 25, 2013 - bake-toolkit 1.0.20, Eclipse plugin 1.0.4.0</dt>
1024
- <dd><ul class="first last simple">
1025
- <li>Added: projects can be placed more than one level below workspaces roots</li>
1026
- </ul>
1027
- </dd>
1028
- <dt>June 21, 2013 - bake-toolkit 1.0.19</dt>
1029
- <dd><ul class="first last simple">
1030
- <li>Added: support for GreenHills compiler.</li>
1031
- </ul>
1032
- </dd>
1033
- <dt>May 29, 2013 - bake-toolkit 1.0.18</dt>
1034
- <dd><ul class="first last simple">
1035
- <li>Bugfix: typo in require, which has broken bake in case sensitive file systems.</li>
1036
- </ul>
1037
- </dd>
1038
- <dt>May 28, 2013 - bake-toolkit 1.0.17</dt>
1039
- <dd><ul class="first last simple">
1040
- <li>Bugfix: error levels greater than 255 of external processes were not be recognized correctly in some cases.</li>
1041
- </ul>
1042
- </dd>
1043
- <dt>May 16, 2013 - Eclipse plugin 1.0.2.0</dt>
1044
- <dd><ul class="first last simple">
1045
- <li>Bugfix: bake did not start correctly with latest Java version installed.</li>
1046
- </ul>
1047
- </dd>
1048
- <dt>April 22, 2013 - bake-toolkit 1.0.16</dt>
1049
- <dd><ul class="first last simple">
1050
- <li>Changed: default roots of bakery are now directory of Collection.meta and it&#8217;s parent directory.</li>
1051
- </ul>
1052
- </dd>
1053
- <dt>April 19, 2013 - bake-toolkit 1.0.15</dt>
1054
- <dd><ul class="first last simple">
1055
- <li>Bugfix: bakery could not build projects with spaces in oathname.</li>
1056
- </ul>
1057
- </dd>
1058
- <dt>April 19, 2013 - bake-toolkit 1.0.13</dt>
1059
- <dd><ul class="first last simple">
1060
- <li>Bugfix: some bake options specified on bakery command line were not accepted.</li>
1061
- </ul>
1062
- </dd>
1063
- <dt>April 17, 2013 - bake-toolkit 1.0.12</dt>
1064
- <dd><ul class="first last simple">
1065
- <li>Changed: Output folders are not deleted and rebuilt if no source files are available but the archive file.</li>
1066
- <li>Added: Option &#8211;clobber deletes .bake cache file.</li>
1067
- <li>Added: Collections can reference collections.</li>
1068
- <li>Added: collection names can be specified without typing &#8220;-b&#8221;</li>
1069
- </ul>
1070
- </dd>
1071
- <dt>April 4, 2013 - bake-toolkit 1.0.11</dt>
1072
- <dd><ul class="first last simple">
1073
- <li>Bugfix: Executing batch files in CommandLine on Windows were broken.</li>
1074
- <li>April 2, 2013 - bake-toolkit 1.0.10</li>
1075
- <li>Bugfix: options &#8220;&#8211;toolchain_names&#8221; now working as intended</li>
1076
- <li>Bugfix: default flags for makefiles (-j) no longer ignored</li>
1077
- <li>Changed: flags for makefiles are now defined in subtags instead in attributes to be consistent with other flag definitions</li>
1078
- <li>Added: &#8221;..&#8221; in Files and ExcludeFiles now allowed</li>
1079
- <li>Added: command line switch to turn off &#8220;directory magic&#8221;</li>
1080
- <li>Added: build config can be specified without typing &#8220;-b&#8221;</li>
1081
- <li>Cosmetic: better error output if compiler not found</li>
1082
- </ul>
1083
- </dd>
1084
- <dt>March 22, 2013 - bake-toolkit 1.0.9</dt>
1085
- <dd><ul class="first last simple">
1086
- <li>Cosmetic: Changed option &#8211;print_less to -v0 and -v to -v2. Default is -v1.</li>
1087
- </ul>
1088
- </dd>
1089
- <dt>March 7, 2013 - bake-toolkit 1.0.8</dt>
1090
- <dd><ul class="first last simple">
1091
- <li>Added: Linkerscript can be referenced from other projects</li>
1092
- </ul>
1093
- </dd>
1094
- <dt>February 13, 2013 - bake-toolkit 1.0.7</dt>
1095
- <dd><ul class="first last simple">
1096
- <li>Added: OS dependent variable $(/)</li>
1097
- </ul>
1098
- </dd>
1099
- <dt>January 21, 2013 - bake-toolkit 1.0.6</dt>
1100
- <dd><ul class="first last simple">
1101
- <li>Added: support for Visual Studio</li>
1102
- </ul>
1103
- </dd>
1104
- <dt>January 15, 2013 - bake-toolkit 1.0.5</dt>
1105
- <dd><ul class="first last simple">
1106
- <li>Changed: no indirect dependency to progressbar gem anymore</li>
1107
- </ul>
1108
- </dd>
1109
- <dt>January 14, 2013 - bake-toolkit 1.0.4</dt>
1110
- <dd><ul class="first last simple">
1111
- <li>Added: a new cache validation check.</li>
1112
- </ul>
1113
- </dd>
1114
- <dt>January 2, 2013 - bake-toolkit 1.0.3</dt>
1115
- <dd><ul class="first last simple">
1116
- <li>Bugfix: option to build a single file did not accept a filename with absolute path.</li>
1117
- </ul>
1118
- </dd>
1119
- <dt>October 7, 2012 - bake-toolkit 1.0.2</dt>
1120
- <dd><ul class="first last simple">
1121
- <li>Changed: Renamed gem from &#8220;bake&#8221; to &#8220;bake-toolkit&#8221;.</li>
1122
- </ul>
1123
- </dd>
1124
- <dt>September 18, 2012 - bake 1.0.1</dt>
1125
- <dd><ul class="first last simple">
1126
- <li>Changed: bake now based on rgen 0.6.0 and rtext 0.2.0, which are available on rubygems.</li>
1127
- </ul>
1128
- </dd>
1129
- <dt>August 31, 2012 - bake 1.0.0</dt>
1130
- <dd><ul class="first last simple">
1131
- <li>First official release</li>
1132
- </ul>
1133
- </dd>
1134
- </dl>
1135
- </div>
1136
-
1137
-
1138
- </div>
1139
-
1140
- </div>
1141
- </div>
1142
- <footer class="footer">
1143
- <div class="container">
1144
- <p class="pull-right">
1145
- <a href="#">Back to top</a>
1146
-
1147
- </p>
1148
- <p>
1149
- &copy; Copyright 2016, E.S.R.Labs AG.<br/>
1150
- Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.<br/>
1151
- </p>
1152
- </div>
1153
- </footer>
1154
- </body>
1
+ <!DOCTYPE html>
2
+
3
+
4
+ <html xmlns="http://www.w3.org/1999/xhtml">
5
+ <head>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7
+
8
+ <title>Changelog &mdash; bake documentation</title>
9
+
10
+ <link rel="stylesheet" href="_static/basic.css" type="text/css" />
11
+ <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
12
+ <link rel="stylesheet" href="_static/bootswatch-3.3.4/sandstone/bootstrap.min.css" type="text/css" />
13
+ <link rel="stylesheet" href="_static/bootstrap-sphinx.css" type="text/css" />
14
+
15
+ <script type="text/javascript">
16
+ var DOCUMENTATION_OPTIONS = {
17
+ URL_ROOT: './',
18
+ VERSION: '',
19
+ COLLAPSE_INDEX: false,
20
+ FILE_SUFFIX: '.html',
21
+ HAS_SOURCE: true
22
+ };
23
+ </script>
24
+ <script type="text/javascript" src="_static/jquery.js"></script>
25
+ <script type="text/javascript" src="_static/underscore.js"></script>
26
+ <script type="text/javascript" src="_static/doctools.js"></script>
27
+ <script type="text/javascript" src="_static/js/jquery-1.11.0.min.js"></script>
28
+ <script type="text/javascript" src="_static/js/jquery-fix.js"></script>
29
+ <script type="text/javascript" src="_static/bootstrap-3.3.4/js/bootstrap.min.js"></script>
30
+ <script type="text/javascript" src="_static/bootstrap-sphinx.js"></script>
31
+ <link rel="shortcut icon" href="_static/logo_tiny_32.ico"/>
32
+ <link rel="top" title="bake documentation" href="index.html" />
33
+ <link rel="next" title="License" href="license.html" />
34
+ <link rel="prev" title="Known Issues" href="known_issues.html" />
35
+ <meta charset='utf-8'>
36
+ <meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'>
37
+ <meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1'>
38
+ <meta name="apple-mobile-web-app-capable" content="yes">
39
+
40
+ </head>
41
+ <body role="document">
42
+
43
+ <div id="navbar" class="navbar navbar-default navbar-fixed-top">
44
+ <div class="container">
45
+ <div class="navbar-header">
46
+ <!-- .btn-navbar is used as the toggle for collapsed navbar content -->
47
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-collapse">
48
+ <span class="icon-bar"></span>
49
+ <span class="icon-bar"></span>
50
+ <span class="icon-bar"></span>
51
+ </button>
52
+ <a class="navbar-brand" href="index.html"><img src="_static/logo_tiny_48.png">
53
+ </a>
54
+ <span class="navbar-text navbar-version pull-left"><b></b></span>
55
+ </div>
56
+
57
+ <div class="collapse navbar-collapse nav-collapse">
58
+ <ul class="nav navbar-nav">
59
+
60
+
61
+ <li class="dropdown globaltoc-container">
62
+ <a role="button"
63
+ id="dLabelGlobalToc"
64
+ data-toggle="dropdown"
65
+ data-target="#"
66
+ href="index.html">Section <b class="caret"></b></a>
67
+ <ul class="dropdown-menu globaltoc"
68
+ role="menu"
69
+ aria-labelledby="dLabelGlobalToc"><ul class="current">
70
+ <li class="toctree-l1"><a class="reference internal" href="why_bake/why_bake.html">Why you should use bake</a></li>
71
+ <li class="toctree-l1"><a class="reference internal" href="install/install_bake.html">Install bake</a></li>
72
+ <li class="toctree-l1"><a class="reference internal" href="quickstart/quickstart.html">Quickstart</a></li>
73
+ <li class="toctree-l1"><a class="reference internal" href="concepts/concepts.html">Concepts</a></li>
74
+ <li class="toctree-l1"><a class="reference internal" href="syntax/syntax.html">Syntax</a></li>
75
+ <li class="toctree-l1"><a class="reference internal" href="commandline/commandline.html">Commandline</a></li>
76
+ <li class="toctree-l1"><a class="reference internal" href="ide/ide_integrations.html">IDE Support</a></li>
77
+ <li class="toctree-l1"><a class="reference internal" href="tips_and_tricks/tips_and_tricks.html">Additional features</a></li>
78
+ <li class="toctree-l1"><a class="reference internal" href="performance/performance.html">Performance</a></li>
79
+ <li class="toctree-l1"><a class="reference internal" href="known_issues.html">Known Issues</a></li>
80
+ <li class="toctree-l1 current"><a class="current reference internal" href="">Changelog</a></li>
81
+ <li class="toctree-l1"><a class="reference internal" href="license.html">License</a></li>
82
+ </ul>
83
+ <ul>
84
+ <li class="toctree-l1"><a class="reference internal" href="internal.html">Internal developing notes</a></li>
85
+ </ul>
86
+ </ul>
87
+ </li>
88
+
89
+ <li class="dropdown">
90
+ <a role="button"
91
+ id="dLabelLocalToc"
92
+ data-toggle="dropdown"
93
+ data-target="#"
94
+ href="#">SubSections <b class="caret"></b></a>
95
+ <ul class="dropdown-menu localtoc"
96
+ role="menu"
97
+ aria-labelledby="dLabelLocalToc"><ul>
98
+ <li><a class="reference internal" href="#">Changelog</a></li>
99
+ </ul>
100
+ </ul>
101
+ </li>
102
+
103
+
104
+
105
+
106
+
107
+ <li>
108
+ <a href="known_issues.html" title="Previous Chapter: Known Issues"><span class="glyphicon glyphicon-chevron-left visible-sm"></span><span class="hidden-sm hidden-tablet">&laquo; Known Issues</span>
109
+ </a>
110
+ </li>
111
+ <li>
112
+ <a href="license.html" title="Next Chapter: License"><span class="glyphicon glyphicon-chevron-right visible-sm"></span><span class="hidden-sm hidden-tablet">License &raquo;</span>
113
+ </a>
114
+ </li>
115
+
116
+
117
+
118
+
119
+
120
+ </ul>
121
+
122
+
123
+
124
+ <form class="navbar-form navbar-right" action="search.html" method="get">
125
+ <div class="form-group">
126
+ <input type="text" name="q" class="form-control" placeholder="Search" />
127
+ </div>
128
+ <input type="hidden" name="check_keywords" value="yes" />
129
+ <input type="hidden" name="area" value="default" />
130
+ </form>
131
+
132
+ </div>
133
+ </div>
134
+ </div>
135
+
136
+ <div class="container">
137
+ <div class="row">
138
+ <div class="col-md-12">
139
+
140
+ <div class="section" id="changelog">
141
+ <h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this headline">¶</a></h1>
142
+ <dl class="docutils">
143
+ <dt>January 4, 2017 - bake-toolkit 2.29.0</dt>
144
+ <dd><ul class="first last simple">
145
+ <li>Added: CleanSteps, executed only when calling bake with &#8220;-c&#8221; or &#8220;&#8211;rebuild&#8221;.</li>
146
+ <li>Added: Wildcard &#8220;*&#8221; is allowed for project/config names in Adapt.</li>
147
+ <li>Bugfix: In certain circumstances an Adapt was not applied to subconfigs of the Project.meta where Adapt was defined.</li>
148
+ </ul>
149
+ </dd>
150
+ <dt>January 4, 2017 - bake-toolkit 2.28.1</dt>
151
+ <dd><ul class="first last simple">
152
+ <li>Bugfix: Build does not break anymore if &#8220;LintPolicy&#8221; is still defined in Project.meta. Now only a warning is printed out.</li>
153
+ </ul>
154
+ </dd>
155
+ <dt>January 3, 2017 - bake-toolkit 2.28.0</dt>
156
+ <dd><ul class="first last simple">
157
+ <li>Added: private flag for configs (cannot be referenced directly from outside of the project).</li>
158
+ <li>Added: attribute &#8220;echo: off&#8221; for CommandLine and Makefile.</li>
159
+ <li>Added: &#8220;&#8211;file-list&#8221; shows all files and headers of the projects.</li>
160
+ <li>Removed: lint support.</li>
161
+ <li>Bugfix: environment variables (specified with &#8220;Set&#8221;) can now be set individually for different configs.</li>
162
+ <li>Changed: qac: again slightly modified cip workaround.</li>
163
+ </ul>
164
+ </dd>
165
+ <dt>January 2, 2017 - bake-toolkit 2.27.0</dt>
166
+ <dd><ul class="first last simple">
167
+ <li>Added: local <em>Adapt</em> with conditions (e.g. toolchain), see <a class="reference internal" href="syntax/adapt_configs.html#adapt-reference"><span>Adapt configs</span></a>.</li>
168
+ <li>Changed: qac: cip workaround slightly adapted, removed temporary debug output.</li>
169
+ </ul>
170
+ </dd>
171
+ <dt>December 23, 2016 - bake-toolkit 2.26.1</dt>
172
+ <dd><ul class="first last simple">
173
+ <li>Changed: qac: next try to add a workaround for the cip file bug.</li>
174
+ <li>Cosmetic: fixed possible wrong message when reloading metas (&#8220;corrupt&#8221; instead of &#8220;changed&#8221;)</li>
175
+ </ul>
176
+ </dd>
177
+ <dt>December 20, 2016 - bake-toolkit 2.26.0</dt>
178
+ <dd><ul class="first last simple">
179
+ <li>Changed: before this version, &#8220;-w&#8221; command line args (which define the workspace roots) have overwritten roots.bake file. Now these roots will be
180
+ merged. First &#8220;-w&#8221;, then roots.bake. Note: this will not break current builds.</li>
181
+ </ul>
182
+ </dd>
183
+ <dt>December 16, 2016 - bake-toolkit 2.25.1</dt>
184
+ <dd><ul class="first last simple">
185
+ <li>Bugfix: a null pointer exception could occur in 2.25.0, which happened in a complex scenario with multiple dependencies to a default config which extends another config with dependencies.
186
+ Luckily, this bugfix goes along with a small performance improvement when loading uncached meta files.</li>
187
+ </ul>
188
+ </dd>
189
+ <dt>December 15, 2016 - bake-toolkit 2.25.0</dt>
190
+ <dd><ul class="first last simple">
191
+ <li>Changed (!): before this version, all &#8220;IncludeDir&#8221;s were evaluated prior to the &#8220;Dependency&#8221;s to calculate the include path string for the compiler. Now the line order
192
+ is taken into account. To get the same include path string as in 2.24.x, shift all &#8220;IncludeDir&#8221;s in front of the first &#8220;Dependency&#8221;.</li>
193
+ <li>Added: it is possible to mark an IncludeDir with &#8220;system: true&#8221;, which means that e.g. for gcc &#8220;-isystem&#8221; is used instead of &#8220;-I&#8221;. Very useful for third party libs.</li>
194
+ <li>Bugfix: qac: adapted parser to new gcc version strings. On some machines an incorrect CCT was chosen.</li>
195
+ <li>Bugfix: when building with &#8220;-p &lt;projectname&gt;&#8221;, bake has not only built &lt;projectname&gt;, but also all injected dependencies of &lt;projectname&gt;, which was not intended.</li>
196
+ <li>Added: qac: additional step to generate reports, activate it manually with &#8220;&#8211;qacstep report&#8221;, see documentation.</li>
197
+ <li>Cosmetic: Adapt.meta files are also cached now.</li>
198
+ <li>Temporary: cip bug workaround from 2.24.2 does not work, added some debug output to get more infos - sorry for the spam - will be removed soon.</li>
199
+ </ul>
200
+ </dd>
201
+ <dt>December 5, 2016 - bake-toolkit 2.24.3</dt>
202
+ <dd><ul class="first last simple">
203
+ <li>Added: qac: if &#8220;&lt;mainConfigName&gt;Qac&#8221; is found in main project, it will be used instead of &#8220;&lt;mainConfigName&gt;&#8221;</li>
204
+ <li>Added: First version of bake-format script, thanks to gizmomogwai</li>
205
+ </ul>
206
+ </dd>
207
+ <dt>November 24, 2016 - bake-toolkit 2.24.2</dt>
208
+ <dd><ul class="first last simple">
209
+ <li>Bugfix: qac: fixed recognition of platform for cygwin with gcc &gt;= 5.0</li>
210
+ <li>Bugfix: qac: default folder of qacdata is now &lt;main project&gt;/.qacdata instead of &lt;working dir&gt;/.qacdata</li>
211
+ <li>Bugfix: qac: workaround for &#8220;qacli admin&#8221;: retry up to 10 times if cip file is empty (getting compiler data)</li>
212
+ </ul>
213
+ </dd>
214
+ <dt>November 16, 2016 - bake-toolkit 2.24.1</dt>
215
+ <dd><ul class="first last simple">
216
+ <li>Bugfix: qac.cct was not appended if &#8211;cct is used.</li>
217
+ <li>Bugfix: qac: abort if QAC_HOME is set to empty string.</li>
218
+ <li>Bugfix: qac: improved recognition of gcc platform.</li>
219
+ <li>Changed: improved warning if the path in IncludeDir matches to several folders (warning will be shown in verbosity level 2 and above).</li>
220
+ </ul>
221
+ </dd>
222
+ <dt>November 7, 2016 - bake-toolkit 2.24.0</dt>
223
+ <dd><ul class="first last simple">
224
+ <li>Bugfix: qac: output was not synced immediately to the console on some systems.</li>
225
+ <li>Changed: qac: patching of cct introduced with 2.23.9 now opt-in via command line argument: &#8211;qaccctpatch.</li>
226
+ <li>Changed: qac: default build output directory is now &#8220;build/.qac/&#8221; instead of &#8220;build/&#8221; (which does not overwrite regular build output anymore).</li>
227
+ <li>Changed: if default build folder is used, the parent folder &#8220;build&#8221; will be also removed when the project is cleaned if the &#8220;build&#8221; folder will become empty.</li>
228
+ <li>Added: bakeclean script to delete all .bake, .bake/../build and .bake/../build_* folders</li>
229
+ <li>Added: prebuild feature now uses objects instead of the library if objects exist.</li>
230
+ <li>Changed: default executable file ending on non-Windows systems now &#8220;&#8221; (except Diab and Greenhills, here it is always &#8221;.elf&#8221;).</li>
231
+ </ul>
232
+ </dd>
233
+ <dt>October 26, 2016 - bake-toolkit 2.23.12</dt>
234
+ <dd><ul class="first last simple">
235
+ <li>Bugfix: qac: now also files from .qacdata folder are filtered out.</li>
236
+ <li>Bugfix: qac: modules were not be filtered out correctly, e.g. swcAbcd was not filtered out if swcAbc was compiled.</li>
237
+ <li>Removed: qac: qac.rcf will not be searched anymore (most probably this feature was never used).</li>
238
+ <li>Added: qac: qac.cct will be searched up to root; if found, the content will be appended to the original cct unless specified otherwise.</li>
239
+ </ul>
240
+ </dd>
241
+ <dt>October 26, 2016 - bake-toolkit 2.23.9</dt>
242
+ <dd><ul class="first last simple">
243
+ <li>Bugfix: qac: command line options not correctly handed over to bake (bakeqac has been aborted in this case).</li>
244
+ <li>Bugfix: qac: On some systems some warnings were not suppressed. Added a few defines to cct which hopefully fixes this.</li>
245
+ <li>Bugfix: qac: &#8211;qacretry did not work with &#8211;qacnofilter.</li>
246
+ </ul>
247
+ </dd>
248
+ <dt>October 20, 2016 - bake-toolkit 2.23.8</dt>
249
+ <dd><ul class="first last simple">
250
+ <li>Bugfix: qac: &#8220;License Refused&#8221; for *.c Files not treated as an error anymore, which was a problem for &#8220;&#8211;qacretry&#8221;.</li>
251
+ <li>Changed: qac: default qacdata folder is now &#8221;.qacdata&#8221;</li>
252
+ <li>Changed: qac: warnings are now sorted by line numbers per file</li>
253
+ <li>Changed: qac: &#8220;&#8211;qacfilter off|on&#8221; (default on) was changed to &#8220;&#8211;qacnofilter&#8221; (if skipped, filters are active)</li>
254
+ <li>Changed: qac: &#8220;&#8211;qacnoformat was reanmed to &#8220;&#8211;qacrawformat&#8221;</li>
255
+ <li>Cosmetic: qac: if license retry timeout is reached, an additional info is printed.</li>
256
+ <li>Added: qac: With &#8211;qacdoc a link to the appropriate documentation page is printed for every warning.</li>
257
+ </ul>
258
+ </dd>
259
+ <dt>October 17, 2016 - bake-toolkit 2.23.7</dt>
260
+ <dd><ul class="first last simple">
261
+ <li>Changed: renamed qac build steps from create, build and result to admin, analyze and view (the original qac names).</li>
262
+ <li>Bugfix: qac view step might have been executed although build has been failed.</li>
263
+ <li>Bugfix: qac view step with never executed analyze step might have been crashed.</li>
264
+ <li>Bugfix: qac C++11 and C++14 switches were broken.</li>
265
+ </ul>
266
+ </dd>
267
+ <dt>October 14, 2016 - bake-toolkit 2.23.6</dt>
268
+ <dd><ul class="first last simple">
269
+ <li>Bugfix: qac license refused error now really shown.</li>
270
+ <li>Changed: QAC_RCF environment variable not supported anymore. Instead a file qac.rcf will be searched upwards from bake main project folder.</li>
271
+ <li>Changed: qac messages reformatted, MISRA rule now completely shown. For plain qac style use &#8211;qacnoformat.</li>
272
+ <li>Added: number of qac messages are printed at the end.</li>
273
+ <li>Added: bakeqac now supports -a &lt;color&gt; like bake.</li>
274
+ <li>Added: with &#8211;qacretry &lt;seconds&gt; a retry timeout can be specified if license is refused, default is no retry.</li>
275
+ </ul>
276
+ </dd>
277
+ <dt>October 14, 2016 - bake-toolkit 2.23.5</dt>
278
+ <dd><ul class="first last simple">
279
+ <li>Bugfix: qac cct auto detection fixed.</li>
280
+ <li>Bugfix: &#8211;prepro option fixed.</li>
281
+ </ul>
282
+ </dd>
283
+ <dt>October 14, 2016 - bake-toolkit 2.23.4</dt>
284
+ <dd><ul class="first last simple">
285
+ <li>Bugfix: qac during analyse step license error not detected properly.</li>
286
+ </ul>
287
+ </dd>
288
+ <dt>October 13, 2016 - bake-toolkit 2.23.3</dt>
289
+ <dd><ul class="first last simple">
290
+ <li>Bugfix: improved auto detection of cct for qac.</li>
291
+ <li>Bugfix: print qac output in case of error.</li>
292
+ <li>Changed: QAC_HOME can end now with a slash.</li>
293
+ <li>Changed: qacli call now relative to QAC_HOME.</li>
294
+ <li>Changed: qac create will now be done regardless if qacdata exists.</li>
295
+ </ul>
296
+ </dd>
297
+ <dt>October 13, 2016 - bake-toolkit 2.23.2</dt>
298
+ <dd><ul class="first last simple">
299
+ <li>Added: bakeqac, see documentation.</li>
300
+ </ul>
301
+ </dd>
302
+ <dt>October 5, 2016 - bake-toolkit 2.22.0</dt>
303
+ <dd><ul class="first last simple">
304
+ <li>Changed: when building, only the return value of the compiler is taken into account, not the result of the error parser anymore. Old behaviour can be switched on by command line argument.</li>
305
+ <li>Bugfix: again fixed reading of dependency files, added several unittests.</li>
306
+ <li>Internal: based on new rtext 0.9.0 and rgen 0.8.2 now.</li>
307
+ </ul>
308
+ </dd>
309
+ <dt>September 30, 2016 - bake-toolkit 2.21.0</dt>
310
+ <dd><ul class="first last simple">
311
+ <li>Changed: version and time infos are suppressed now per default. Version can be seen with &#8211;help or &#8211;version, time can be seen with &#8211;time.</li>
312
+ <li>Changed: option &#8211;writeCC2J renamed to &#8211;compilation-db, which has the default filename compilation-db.json now.</li>
313
+ <li>Added: option &#8211;incs-and-defs=json prints infos about includes and defines of all projects in json format.</li>
314
+ </ul>
315
+ </dd>
316
+ <dt>September 28, 2016 - bake-toolkit 2.20.4</dt>
317
+ <dd><ul class="first last simple">
318
+ <li>Bugfix: fixed auto-detected of dependency files</li>
319
+ </ul>
320
+ </dd>
321
+ <dt>September 21, 2016 - bake-toolkit 2.20.3</dt>
322
+ <dd><ul class="first last simple">
323
+ <li>Bugfix: reading dependency files was broken for TI compiler, format is now auto-detected independent from compiler version</li>
324
+ </ul>
325
+ </dd>
326
+ <dt>September 13, 2016 - bake-toolkit 2.20.2</dt>
327
+ <dd><ul class="first last simple">
328
+ <li>Bugfix: <em>prebuild</em> libs were not linked if all original sources were removed</li>
329
+ </ul>
330
+ </dd>
331
+ <dt>September 5, 2016 - bake-toolkit 2.20.1</dt>
332
+ <dd><ul class="first last simple">
333
+ <li>Added: inject feature for dependencies</li>
334
+ <li>Added: option to generate a dot graph file</li>
335
+ <li>Added: <em>prebuild</em> feature for distribution builds</li>
336
+ <li>Added: commandline option <em>&#8211;build_</em> to enable the old outputdir behaviour: <em>build_</em> instead of <em>build/</em></li>
337
+ <li>Added: printing out more information when loading Project.metas in verbosity level 3</li>
338
+ <li>Changed: circular dependency warning moved from verbosity level 1 to 3</li>
339
+ <li>Added: ToolchainName is now a predefined variable for Project.meta</li>
340
+ <li>Added: &#8211;compile-only option (which is equal to the workaround -f &#8221;.&#8221;)</li>
341
+ <li>Bugfix: &#8211;adapt commandline option accepts absolute paths now</li>
342
+ <li>Changed: removed the <em>bundle</em> feature</li>
343
+ </ul>
344
+ </dd>
345
+ <dt>August 12, 2016 - bake-toolkit 2.19.2</dt>
346
+ <dd><ul class="first last simple">
347
+ <li>Bugfix: fixed TI linker error parser</li>
348
+ </ul>
349
+ </dd>
350
+ <dt>August 4, 2016 - Eclipse plugin 1.7.1</dt>
351
+ <dd><ul class="first last simple">
352
+ <li>Bugfix: error markers may not created correctly if projects had &#8220;^&#8221; in the name</li>
353
+ </ul>
354
+ </dd>
355
+ <dt>August 1, 2016 - bake-toolkit 2.19.1</dt>
356
+ <dd><ul class="first last simple">
357
+ <li>Bugfix: made the new &#8220;listening to raw character 0x3&#8221; more robust</li>
358
+ </ul>
359
+ </dd>
360
+ <dt>July 28, 2016 - bake-toolkit 2.19.0</dt>
361
+ <dd><ul class="first last simple">
362
+ <li>Changed: default output dir is now build/&lt;something&gt; instead of build_&lt;something&gt;</li>
363
+ <li>Added: listening to raw character 0x3 on stdin to abort bake/bakery (needed for some Cygwin installations)</li>
364
+ <li>Internal: switching from rgen 0.8.0 to rgen 0.8.1 (which should have no functional impact)</li>
365
+ </ul>
366
+ </dd>
367
+ <dt>June 22, 2016 - bake-toolkit 2.18.0</dt>
368
+ <dd><ul class="first last">
369
+ <li><p class="first">Bugfix: order if linker libs fixed. For compatibility, a new command line flag &#8220;&#8211;link-2-17&#8221; to get the old behaviour was added.</p>
370
+ <table border="1" class="docutils">
371
+ <colgroup>
372
+ <col width="50%" />
373
+ <col width="50%" />
374
+ </colgroup>
375
+ <thead valign="bottom">
376
+ <tr class="row-odd"><th class="head">Example</th>
377
+ <th class="head">&nbsp;</th>
378
+ </tr>
379
+ </thead>
380
+ <tbody valign="top">
381
+ <tr class="row-even"><td>Dependencies</td>
382
+ <td>A-&gt;B-&gt;D and A-&gt;C-&gt;D</td>
383
+ </tr>
384
+ <tr class="row-odd"><td>New correct link order</td>
385
+ <td>A, B, C, D</td>
386
+ </tr>
387
+ <tr class="row-even"><td>Old wrong link order (&#8211;link-2-17)</td>
388
+ <td>A, B, D, C</td>
389
+ </tr>
390
+ </tbody>
391
+ </table>
392
+ </li>
393
+ </ul>
394
+ </dd>
395
+ <dt>May 4, 2016 - bake-toolkit 2.17.4</dt>
396
+ <dd><ul class="first last simple">
397
+ <li>Bugfix: bakery returned 1 for successful builds</li>
398
+ <li>Changed: bakery now lists all failed unit tests at the end</li>
399
+ </ul>
400
+ </dd>
401
+ <dt>April 13, 2016 - bake-toolkit 2.17.3</dt>
402
+ <dd><ul class="first last simple">
403
+ <li>Bugfix: Commands injected by adapt feature were executed in wrong directory</li>
404
+ <li>Bugfix: Added an error if two sources would result in the same object file</li>
405
+ </ul>
406
+ </dd>
407
+ <dt>April 6, 2016 - bake-toolkit 2.17.2</dt>
408
+ <dd><ul class="first last simple">
409
+ <li>Bugfix: &#8220;&#8211;link-only&#8221; option has ignored libraries from makefiles</li>
410
+ </ul>
411
+ </dd>
412
+ <dt>March 15, 2016 - bake-toolkit 2.17.1</dt>
413
+ <dd><ul class="first last simple">
414
+ <li>Bugfix: configs with inherited DefaultToolchains were not listed on command line (via &#8220;&#8211;list&#8221;)</li>
415
+ <li>Changed: if build config name was omitted on commandline, a default config is specified and this default config has no DefaultToolchain, bake lists all possible build configs (same as &#8220;&#8211;list&#8221;)</li>
416
+ <li>Added: warning if sources files were compiled several times for one binary</li>
417
+ </ul>
418
+ </dd>
419
+ <dt>March 15, 2015 - Eclipse plugin 1.7.0</dt>
420
+ <dd><ul class="first last simple">
421
+ <li>Bugfix: config names written in inverted commas or with special characters were not recognized by &#8220;Select bake Config&#8221; menu</li>
422
+ <li>Removed: multi-console option, which was rarely used and not working correctly anymore with latest Eclipse version</li>
423
+ <li>Added: option to disable/enable console scroll-lock/word-wrap when starting a build</li>
424
+ <li>Cosmetic: config names are now displayed in &#8220;Select bake Config&#8221; in the same order as in Project.meta</li>
425
+ <li>Cosmetic: bake console does not open automatically anymore when starting Eclipse</li>
426
+ </ul>
427
+ </dd>
428
+ <dt>February 26, 2016 - bake-toolkit 2.16.1</dt>
429
+ <dd><ul class="first last simple">
430
+ <li>Added: experimental bundle feature</li>
431
+ <li>Changed: &#8220;&#8211;threads&#8221; now deprected, use &#8220;-j&#8221; instead</li>
432
+ <li>Bugfix: in rare cases the cache from a copied/moved Project.meta file was reused instead of reloading the file. This could lead to errors.</li>
433
+ </ul>
434
+ </dd>
435
+ <dt>February 11, 2016 - bake-toolkit 2.15.0</dt>
436
+ <dd><ul class="first last simple">
437
+ <li>Added: multiple inheritance for configs</li>
438
+ <li>Added: ArtifactName can be specified for libraries</li>
439
+ <li>Added: Merged configs are printed out when running bake with &#8211;debug</li>
440
+ <li>Added: info output if &#8220;path magic&#8221; hides local pathes for IncludeDir</li>
441
+ <li>Bugfix: fixed passing arguments from bakery to bake</li>
442
+ </ul>
443
+ </dd>
444
+ <dt>January 14, 2016 - bake-toolkit 2.14.0</dt>
445
+ <dd><ul class="first last simple">
446
+ <li>Added: possibility to change configs via command line, e.g. changing compiler, see &#8220;adapt&#8221; docu page</li>
447
+ <li>Changed: extending configs in a Project.meta file made more generic, see &#8220;derive&#8221; docu page</li>
448
+ <li>Changed: default order of filenames changed, now order in Project.meta has the highest priority as intended. Results of glob patterns are sorted alphabetically as before.</li>
449
+ <li>Changed: libraries from makefiles are linked now after other libraries defined from the same config</li>
450
+ <li>Added: IncludeDir now possible for CustomConfigs</li>
451
+ <li>Bugfix: &#8211;abs-paths now works with &#8211;incs-and-defs</li>
452
+ </ul>
453
+ </dd>
454
+ <dt>December 23, 2015 - bake-toolkit 2.13.1</dt>
455
+ <dd><ul class="first last simple">
456
+ <li>Bugfix: merging configs was extremely slow in 2.12.2 and 2.13.0</li>
457
+ </ul>
458
+ </dd>
459
+ <dt>December 23, 2015 - bake-toolkit 2.13.0</dt>
460
+ <dd><ul class="first last">
461
+ <li><p class="first">Bugfix: It was possible that the archiver and linker were called for &#8211;prepro and &#8211;link-only builds</p>
462
+ </li>
463
+ <li><p class="first">Added: possibility to specify minimum and maximum required bake version in Project.meta file</p>
464
+ </li>
465
+ <li><p class="first">Added: option to omit -b when executing the bakery</p>
466
+ </li>
467
+ <li><p class="first">Added: bakery now searches recursively for bake projects</p>
468
+ </li>
469
+ <li><p class="first">Changed: some commandline arguments changed, deprecated arguments still supported</p>
470
+ <table border="1" class="docutils">
471
+ <colgroup>
472
+ <col width="44%" />
473
+ <col width="56%" />
474
+ </colgroup>
475
+ <thead valign="bottom">
476
+ <tr class="row-odd"><th class="head">New argument</th>
477
+ <th class="head">Deprecated argument</th>
478
+ </tr>
479
+ </thead>
480
+ <tbody valign="top">
481
+ <tr class="row-even"><td>&#8211;do</td>
482
+ <td>&#8211;include_filter</td>
483
+ </tr>
484
+ <tr class="row-odd"><td>&#8211;omit</td>
485
+ <td>&#8211;exclude_filter</td>
486
+ </tr>
487
+ <tr class="row-even"><td>&#8211;show_configs</td>
488
+ <td>&#8211;list</td>
489
+ </tr>
490
+ <tr class="row-odd"><td>&#8211;link-only</td>
491
+ <td>&#8211;link_only</td>
492
+ </tr>
493
+ <tr class="row-even"><td>&#8211;generate-doc</td>
494
+ <td>&#8211;docu</td>
495
+ </tr>
496
+ <tr class="row-odd"><td>&#8211;lint-min</td>
497
+ <td>&#8211;lint_min</td>
498
+ </tr>
499
+ <tr class="row-even"><td>&#8211;lint-max</td>
500
+ <td>&#8211;lint_max</td>
501
+ </tr>
502
+ <tr class="row-odd"><td>&#8211;ignore-cache</td>
503
+ <td>&#8211;ignore_cache</td>
504
+ </tr>
505
+ <tr class="row-even"><td>&#8211;toolchain-info</td>
506
+ <td>&#8211;toolchain_info</td>
507
+ </tr>
508
+ <tr class="row-odd"><td>&#8211;toolchain-names</td>
509
+ <td>&#8211;toolchain_names</td>
510
+ </tr>
511
+ <tr class="row-even"><td>&#8211;abs-paths</td>
512
+ <td>&#8211;show_abs_paths</td>
513
+ </tr>
514
+ <tr class="row-odd"><td>&#8211;no-autodir</td>
515
+ <td>&#8211;no_autodir</td>
516
+ </tr>
517
+ <tr class="row-even"><td>&#8211;incs-and-defs</td>
518
+ <td>&#8211;show_incs_and_defs</td>
519
+ </tr>
520
+ <tr class="row-odd"><td>&#8211;conversion-info</td>
521
+ <td>&#8211;conversion_info</td>
522
+ </tr>
523
+ <tr class="row-even"><td>&#8211;doc</td>
524
+ <td>&#8211;show_doc</td>
525
+ </tr>
526
+ <tr class="row-odd"><td>&#8211;license</td>
527
+ <td>&#8211;show_license</td>
528
+ </tr>
529
+ </tbody>
530
+ </table>
531
+ </li>
532
+ </ul>
533
+ </dd>
534
+ <dt>December 16, 2015 - bake-toolkit 2.12.2</dt>
535
+ <dd><ul class="first last simple">
536
+ <li>Bugfix: extending a client config (merging) could have broken the parent config</li>
537
+ <li>Changed: empty libraries will not be created and linked anymore</li>
538
+ <li>Changed: added inject as alias for infix</li>
539
+ </ul>
540
+ </dd>
541
+ <dt>November 16, 2015 - bake-toolkit 2.12.1</dt>
542
+ <dd><ul class="first last simple">
543
+ <li>Bugfix: inherit and infix features may have calculated wrong relative paths</li>
544
+ </ul>
545
+ </dd>
546
+ <dt>October 26, 2015 - Eclipse plugin 1.6.0</dt>
547
+ <dd><ul class="first last simple">
548
+ <li>Added: possibility to specify folders to exclude when importing projects</li>
549
+ <li>Bugfix: fixed exception when trying to build after starting eclipse with a closed project</li>
550
+ </ul>
551
+ </dd>
552
+ <dt>October 14, 2015 - bake-toolkit 2.12.0</dt>
553
+ <dd><ul class="first last simple">
554
+ <li>Changed: now ALL startup and exit steps are executed regardless if the previous steps were successful even if stopOnFirstError was configured</li>
555
+ <li>Bugfix: relative pathes between roots based on roots.bake were calculated incorrectly</li>
556
+ </ul>
557
+ </dd>
558
+ <dt>October 2, 2015 - bake-toolkit 2.11.4</dt>
559
+ <dd><ul class="first last simple">
560
+ <li>Bugfix: bake aborted in larger workspaces with 2.11.3 right before linking</li>
561
+ </ul>
562
+ </dd>
563
+ <dt>September 8, 2015 - bake-toolkit 2.11.3</dt>
564
+ <dd><ul class="first last simple">
565
+ <li>Bugfix: linker executed even if a dependency has an error</li>
566
+ <li>Bugfix: now the new docu is really added to the gem</li>
567
+ </ul>
568
+ </dd>
569
+ <dt>September 3, 2015 - bake-toolkit 2.11.2</dt>
570
+ <dd><ul class="first last simple">
571
+ <li>Bugfix: all files were always be recompiled with ruby &lt; 1.9.3</li>
572
+ <li>Changed: switched to new docu style, thanks Nico!</li>
573
+ </ul>
574
+ </dd>
575
+ <dt>August 4, 2015 - bake-toolkit 2.11.1</dt>
576
+ <dd><ul class="first last simple">
577
+ <li>Added: project dir output for conversion tool</li>
578
+ <li>Moved: wishlist to github</li>
579
+ </ul>
580
+ </dd>
581
+ <dt>July 31, 2015 - bake-toolkit 2.11.0</dt>
582
+ <dd><ul class="first last simple">
583
+ <li>Added: new parameters for includeDir: inherit and infix</li>
584
+ <li>Added: dependency output for conversion tool</li>
585
+ <li>Bugfix: makefile flags where not used when cleaning the workspace</li>
586
+ </ul>
587
+ </dd>
588
+ <dt>July 6, 2015 - bake-toolkit 2.10.3</dt>
589
+ <dd><ul class="first last simple">
590
+ <li>Bugfix: Build stopped unintentionally when using -r</li>
591
+ </ul>
592
+ </dd>
593
+ <dt>July 3, 2015 - bake-toolkit 2.10.2</dt>
594
+ <dd><ul class="first last simple">
595
+ <li>Bugfix: PostSteps were unintentionally executed if a dependent step (e.g. linking) was not executed due to an error in another project (e.g. compiler error)</li>
596
+ </ul>
597
+ </dd>
598
+ <dt>July 1, 2015 - bake-toolkit 2.10.1</dt>
599
+ <dd><ul class="first last simple">
600
+ <li>Added: Possibility to add descriptions for configs which will be printed when using &#8211;show_configs</li>
601
+ <li>Bugfix: link_only did not link only if not all sources of the main project were not built before</li>
602
+ <li>Bugfix: Ctrl-C on command line did not work properly under Linux</li>
603
+ </ul>
604
+ </dd>
605
+ <dt>July 1, 2015 - Eclipse plugin 1.5.1</dt>
606
+ <dd><ul class="first last simple">
607
+ <li>Bugfix: AdjustIncludes broken for subfolder projects (with a &#8220;^&#8221; in the name)</li>
608
+ <li>Bugfix: Error parser broken for subfolder projects (with a &#8220;^&#8221; in the name)</li>
609
+ <li>Bugfix: Configs with inherited DefaultToolchain were not selectable to build</li>
610
+ </ul>
611
+ </dd>
612
+ <dt>June 10, 2015 - bake-toolkit 2.9.2</dt>
613
+ <dd><ul class="first last simple">
614
+ <li>Cosmetic: Redundant include directories are now removed before calling the compiler</li>
615
+ <li>Bugfix: Moving cached meta files was not recognized correctly, wrong path references may have been used</li>
616
+ </ul>
617
+ </dd>
618
+ <dt>June 8, 2015 - bake-toolkit 2.9.1</dt>
619
+ <dd><ul class="first last simple">
620
+ <li>Changed: &#8220;&#8211;doc&#8221; replaced by &#8220;&#8211;show_doc&#8221; to avoid confusion</li>
621
+ </ul>
622
+ </dd>
623
+ <dt>June 5, 2015 - bake-toolkit 2.9.0</dt>
624
+ <dd><ul class="first last simple">
625
+ <li>Added: &#8220;&#8211;create&#8221; command line option to create project templates</li>
626
+ <li>Added: &#8220;&#8211;conversion_info&#8221; command line option for bake conversion tool</li>
627
+ <li>Cosmetic: made output clearer if &#8220;&#8211;link_only&#8221; is used for non ExecutableConfigs</li>
628
+ </ul>
629
+ </dd>
630
+ <dt>June 5, 2015 - Eclipse plugin 1.4.5</dt>
631
+ <dd><ul class="first last simple">
632
+ <li>Bugfix: input streams from bake were closed too early under Linux - console window output and AdjustCDT feature should work correctly now</li>
633
+ <li>Added: &#8220;Link This Project Only&#8221; shortcut added</li>
634
+ <li>Added: Files under &#8220;build_*&#8221; and &#8221;.bake&#8221; are now automatically marked as derived (not shown in &#8220;Open Resource&#8221; dialog)</li>
635
+ <li>Changed: error message dialog of AdjustCDT now displays the end instead of the beginning of very long error messages</li>
636
+ </ul>
637
+ </dd>
638
+ <dt>May 19, 2015 - bake-toolkit 2.8.0</dt>
639
+ <dd><ul class="first last simple">
640
+ <li>Bugfix: when building a project with -p name, not only name was built, but all projects which start with the string name</li>
641
+ <li>Added: more info why Project.meta files are reloaded</li>
642
+ <li>Added: createVSProjects can create VS2013 projects</li>
643
+ </ul>
644
+ </dd>
645
+ <dt>April 22, 2015 - bake-toolkit 2.7.0</dt>
646
+ <dd><ul class="first last simple">
647
+ <li>Added: possibility to use Eclipse file ordering for compilation (eclipseOrder attribute for DefaultToolchain)</li>
648
+ <li>Changed: $(:) and $(/) are now mapped to Ruby internal variables <a class="reference external" href="File::PATH_SEPARATOR">File::PATH_SEPARATOR</a> and <a class="reference external" href="File::SEPARATOR">File::SEPARATOR</a>.</li>
649
+ <li>This fixes the result in Cygwin/MinGW environments</li>
650
+ <li>Bugfix: cmdline files are now written even if the build step fails</li>
651
+ </ul>
652
+ </dd>
653
+ <dt>April 14, 2015 - bake-toolkit 2.6.0</dt>
654
+ <dd><ul class="first last simple">
655
+ <li>Added: validExitCodes attribute to steps (if a step has valid exit codes != 0)</li>
656
+ <li>Added: StartupSteps and ExitSteps (always executed before and after a build)</li>
657
+ </ul>
658
+ </dd>
659
+ <dt>April 8, 2015 - bake-toolkit 2.5.0</dt>
660
+ <dd><ul class="first last simple">
661
+ <li>Added: OS dependent variable $(:), which is used for setting the PATH variable</li>
662
+ </ul>
663
+ </dd>
664
+ <dt>March 30, 2015 - bake-toolkit 2.4.3</dt>
665
+ <dd><ul class="first last simple">
666
+ <li>Added: If Project.meta files are updated, sources will only be recompiled if necessary</li>
667
+ <li>Added: Set command in Project.meta has now an env attribute to store variables also in system environment which makes them accessible from user scripts</li>
668
+ <li>Added: GCC_ENV toolchain (uses environment variables)</li>
669
+ <li>Added: Improved MSVC support</li>
670
+ </ul>
671
+ </dd>
672
+ <dt>March 16, 2015 - VS plugin 1.0.1</dt>
673
+ <dd><ul class="first last simple">
674
+ <li>Added: Support for VS2013</li>
675
+ </ul>
676
+ </dd>
677
+ <dt>March 12, 2015 - bake-toolkit 2.3.4</dt>
678
+ <dd><ul class="first last simple">
679
+ <li>Changed: Clang command is now &#8220;clang&#8221; per default instead of llvm-gcc</li>
680
+ <li>Added: CLANG_ANALYZE toolchain</li>
681
+ <li>Added: MSVC toolchain</li>
682
+ <li>Bugfix: some minor fixes</li>
683
+ </ul>
684
+ </dd>
685
+ <dt>February 27, 2015 - Eclipse plugin 1.3.0</dt>
686
+ <dd><ul class="first last simple">
687
+ <li>Added: bake projects with equal names can be imported now</li>
688
+ </ul>
689
+ </dd>
690
+ <dt>February 19, 2015 - bake-toolkit 2.2.2</dt>
691
+ <dd><ul class="first last simple">
692
+ <li>Changed: output dirs are now prefixed with &#8220;build_&#8221; per default</li>
693
+ <li>Changed: introduced complex variable $(OutputDir,projectName,configName)</li>
694
+ <li>Changed: reworked merge strategy of two configs, especially toolchain options</li>
695
+ <li>Added: variables can be nested now</li>
696
+ <li>Bugfix: fixed dependency header check for Unix when running Windows on a virtual machine</li>
697
+ <li>Bugfix: variable OutputDir did not take overwritten output directory from toolchain into account</li>
698
+ <li>Cosmetic: do not show internal pipes anymore when printing command lines</li>
699
+ </ul>
700
+ </dd>
701
+ <dt>January 26, 2015 - bake-toolkit 2.1.1</dt>
702
+ <dd><ul class="first last simple">
703
+ <li>Bugfix: dependent header file check in 2.1.0 was broken</li>
704
+ <li>Changed: files defined via glob pattern are sorted alphabetically now</li>
705
+ </ul>
706
+ </dd>
707
+ <dt>January 23, 2015 - bake-toolkit 2.1.0</dt>
708
+ <dd><ul class="first last simple">
709
+ <li>Bugfix: fixed crash in warning output if setting variable via cmd did not work</li>
710
+ <li>Workaround: dependent header files are now ignored on Windows if path starts with &#8220;/&#8221; and file cannot be found</li>
711
+ <li>Changed: output of lint is now ignored, linting will only fails if it cannot be executed</li>
712
+ <li>Changed: introduced new verbose mode -v3, shifted some output to this level</li>
713
+ <li>Added: a dependency project can be specified with parent folders if it is ambiguous, e.g. Dependency &#8220;my/folder/proj&#8221;, config: lib</li>
714
+ <li>Added: experimental CC2J output</li>
715
+ </ul>
716
+ </dd>
717
+ <dt>January 23, 2015 - Eclipse plugin 1.2.1</dt>
718
+ <dd><ul class="first last simple">
719
+ <li>Bugfix: importing projects with existing .(c)project files may be placed in wrong folder</li>
720
+ </ul>
721
+ </dd>
722
+ <dt>January 15, 2015 - bake-toolkit 2.0.10</dt>
723
+ <dd><ul class="first last simple">
724
+ <li>Bugfix: spaces in paths were not handled correctly in all cases</li>
725
+ <li>Bugfix: dependency files of Keil compiler not treated correctly</li>
726
+ <li>Added: showing why files are built in verbose mode -v2</li>
727
+ <li>Added: whole workspace can be linted now (projects will be linted separately)</li>
728
+ <li>Changed: removed bake-doc command, use bake &#8211;doc instead</li>
729
+ <li>Changed: if no default project is specified, possible build configs are shown on command line again like in bake 1.x</li>
730
+ </ul>
731
+ </dd>
732
+ <dt>January 7, 2015 - bake-toolkit 2.0.3</dt>
733
+ <dd><ul class="first last">
734
+ <li><dl class="first docutils">
735
+ <dt>Changed: default configuration is chosen if configuration name is omitted. This applies to command line as well as to Dependency definitions, e.g.:</dt>
736
+ <dd><ul class="first">
737
+ <li><p class="first">Project.meta</p>
738
+ <blockquote>
739
+ <div><div class="highlight-console"><div class="highlight"><pre><span class="go">Dependency canDriver # no config attribute</span>
740
+ </pre></div>
741
+ </div>
742
+ </div></blockquote>
743
+ </li>
744
+ <li><p class="first">Command line</p>
745
+ <blockquote>
746
+ <div><div class="highlight-console"><div class="highlight"><pre><span class="gp">User@Host:~$</span> bake -m bla/myProj
747
+ </pre></div>
748
+ </div>
749
+ </div></blockquote>
750
+ </li>
751
+ </ul>
752
+ <div class="last admonition note">
753
+ <p class="first admonition-title">Note</p>
754
+ <p class="last">To show the possible configs of a project, use the <cite>&#8211;show_configs</cite> command line option.</p>
755
+ </div>
756
+ </dd>
757
+ </dl>
758
+ </li>
759
+ <li><p class="first">Changed: more than one config of a project can be used in one build.</p>
760
+ <blockquote>
761
+ <div><p>Example:</p>
762
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">Dependency canDriver, config: C1</span>
763
+ <span class="go">Dependency canDriver, config: C2</span>
764
+ </pre></div>
765
+ </div>
766
+ <p>To reference a config of the current project, omit the project name, e.g.:</p>
767
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">Dependency config: C3</span>
768
+ </pre></div>
769
+ </div>
770
+ <p>To build a single project, you can still use -p command line argument:</p>
771
+ <div class="highlight-console"><div class="highlight"><pre><span class="gp">User@Host:~$</span> bake Debug -p canDriver
772
+ </pre></div>
773
+ </div>
774
+ <p>However, if canDriver has more than one config in the workspace, all configs will be built. To build only a single config, use a comma separator like this:</p>
775
+ <div class="highlight-console"><div class="highlight"><pre><span class="gp">User@Host:~$</span> bake Debug -p canDriver,C1
776
+ </pre></div>
777
+ </div>
778
+ </div></blockquote>
779
+ </li>
780
+ <li><dl class="first docutils">
781
+ <dt>Changed: the default output folder has been changed due to the new feature of having several configs of a project in one workspace.</dt>
782
+ <dd><table border="1" class="first docutils">
783
+ <colgroup>
784
+ <col width="12%" />
785
+ <col width="36%" />
786
+ <col width="53%" />
787
+ </colgroup>
788
+ <thead valign="bottom">
789
+ <tr class="row-odd"><th class="head"></th>
790
+ <th class="head">Old</th>
791
+ <th class="head">New</th>
792
+ </tr>
793
+ </thead>
794
+ <tbody valign="top">
795
+ <tr class="row-even"><td>Main project</td>
796
+ <td>$(MainConfigName)</td>
797
+ <td>$(MainConfigName)</td>
798
+ </tr>
799
+ <tr class="row-odd"><td>Sub Project</td>
800
+ <td>$(MainConfigName)_$(MainProjectName)</td>
801
+ <td>$(ConfigName)_$(MainProjectName)_$(MainConfigName)</td>
802
+ </tr>
803
+ </tbody>
804
+ </table>
805
+ <div class="last admonition warning">
806
+ <p class="first admonition-title">Warning</p>
807
+ <p>Be careful if you have something like this in Project.meta:</p>
808
+ <div class="highlight-console"><div class="highlight"><pre><span class="go">ExternalLibrary &quot;bspCoreZ6/$(MainConfigName)_$(MainProjectName)/src/coreZ6/startup/startupCode.o&quot;, search:false</span>
809
+ </pre></div>
810
+ </div>
811
+ <p class="last">This refers to the old output directory. Change it or if you want to support old and new bake versions,
812
+ write a PreStep which copies the file from the new location to the old one.</p>
813
+ </div>
814
+ </dd>
815
+ </dl>
816
+ </li>
817
+ <li><p class="first">Changed: with -f a pattern can be specified, not only a single file. All files matching this string will be compiled.</p>
818
+ </li>
819
+ <li><p class="first">Changed: variables in Dependency definitions are not allowed anymore to avoid inconsistencies.</p>
820
+ </li>
821
+ <li><p class="first">Changed: no error will be reported anymore if makefile has no clean target.</p>
822
+ </li>
823
+ <li><p class="first">Changed: source files will now be compiled and archived ordered by the Files definition in Project.meta, not by a Eclipse-backward-compatibility-ordering.</p>
824
+ </li>
825
+ <li><p class="first">Changed: reworked some error messages, more error annotations are shown in IDEs</p>
826
+ </li>
827
+ <li><p class="first">Added: &#8220;&#8211;include_filter&#8221; and &#8220;&#8211;exclude_filter&#8221; also work for main step of CustomConfig</p>
828
+ </li>
829
+ <li><p class="first">Added: possibility to add comments in roots.bake</p>
830
+ </li>
831
+ <li><p class="first">Added: new variables CPPPath, CPath, ASMPath, ArchiverPath and LinkerPath. These variables can also be used in InternalDefines and InternalInclude files.</p>
832
+ </li>
833
+ <li><p class="first">Added: lint is not restricted to GCC toolchain anymore.</p>
834
+ </li>
835
+ <li><p class="first">Added: &#8211;docu option. Specify the docu command line in Docu tag of the (Default)Toolchain.</p>
836
+ </li>
837
+ <li><p class="first">Removed: support for Ruby 1.8. Use Ruby 1.9 or higher.</p>
838
+ </li>
839
+ <li><p class="first">Removed: dependencies to cxxproject and rake gems</p>
840
+ </li>
841
+ <li><p class="first">Removed: &#8220;-j&#8221; as default flag when calling makefiles. This must be explicitly specified.</p>
842
+ </li>
843
+ <li><p class="first">Removed: option to check for unnecessary includes</p>
844
+ </li>
845
+ <li><dl class="first docutils">
846
+ <dt>Removed: hardcoded TI compiler commands and flags</dt>
847
+ <dd><table border="1" class="first last docutils">
848
+ <colgroup>
849
+ <col width="21%" />
850
+ <col width="69%" />
851
+ <col width="10%" />
852
+ </colgroup>
853
+ <thead valign="bottom">
854
+ <tr class="row-odd"><th class="head"></th>
855
+ <th class="head">Old</th>
856
+ <th class="head">New</th>
857
+ </tr>
858
+ </thead>
859
+ <tbody valign="top">
860
+ <tr class="row-even"><td>Compiler command</td>
861
+ <td>$(ti_home)/ccsv5/tools/compiler/tms470/bin/cl470</td>
862
+ <td>ti_cl</td>
863
+ </tr>
864
+ <tr class="row-odd"><td>Compiler flags</td>
865
+ <td>-mv7A8 -g &#8211;include_path=&#8221;#{ti_home}/ccsv5/tools/compiler/tms470/include&#8221;
866
+ &#8211;diag_warning=225 -me &#8211;abi=eabi &#8211;code_state=32 &#8211;preproc_with_compile</td>
867
+ <td>&nbsp;</td>
868
+ </tr>
869
+ <tr class="row-even"><td>Archiver command</td>
870
+ <td>$(ti_home)/ccsv5/tools/compiler/tms470/bin/ar470</td>
871
+ <td>ti_ar</td>
872
+ </tr>
873
+ <tr class="row-odd"><td>Linker command</td>
874
+ <td>$(ti_home)/ccsv5/tools/compiler/tms470/bin/cl470</td>
875
+ <td>ti_cl</td>
876
+ </tr>
877
+ <tr class="row-even"><td>Linker flags</td>
878
+ <td>-mv7A8 -g &#8211;diag_warning=225 -me &#8211;abi=eabi &#8211;code_state=32 -z
879
+ &#8211;warn_sections -i&#8221;$(ti_home)/ccsv5/tools/compiler/tms470/lib&#8221;
880
+ -i&#8221;$(ti_home)/ccsv5/tools/compiler/tms470/include&#8221;</td>
881
+ <td>&nbsp;</td>
882
+ </tr>
883
+ <tr class="row-odd"><td>Linker lib prefix flags</td>
884
+ <td>-lDebug/configPkg/linker.cmd</td>
885
+ <td>&nbsp;</td>
886
+ </tr>
887
+ </tbody>
888
+ </table>
889
+ </dd>
890
+ </dl>
891
+ </li>
892
+ <li><p class="first">Bugfix: variables in add and remove attributes of Flags now work as intended</p>
893
+ </li>
894
+ <li><p class="first">Bugfix: output folder was not created if no sources are specified for LibraryConfig and ExecutableConfig.</p>
895
+ </li>
896
+ <li><p class="first">Bugfix: &#8220;-p&#8221; was not forwarded in bakery.</p>
897
+ </li>
898
+ <li><p class="first">Cosmetic: bakery now calls bake with relative pathnames, which results in nicer outputs.</p>
899
+ </li>
900
+ </ul>
901
+ </dd>
902
+ <dt>December 19, 2014 - Eclipse plugin 1.2.0</dt>
903
+ <dd><ul class="first last simple">
904
+ <li>Bugfix: it is now ensured, that bake will be started from Eclipse working directory</li>
905
+ <li>Bugfix: projects created with the &#8220;new bake project wizard&#8221; are now placed in the correct folder.</li>
906
+ <li>Added: Eclipse working directory shown in bake preference dialog (important if -w option is used with relative paths)</li>
907
+ <li>Added: Options to recreate .(c)project files when importing bake projects</li>
908
+ <li>Changed: Eclipse configurations will be named &#8220;bake&#8221; and not &#8220;Do not use this config, use bake instead&#8221;</li>
909
+ </ul>
910
+ </dd>
911
+ <dt>December 16, 2014 - Eclipse plugin 1.1.1</dt>
912
+ <dd><ul class="first last simple">
913
+ <li>Bugfix: Adjust include and defines broken feature used wrong command line option.</li>
914
+ </ul>
915
+ </dd>
916
+ <dt>November 7, 2014 - bake-toolkit 1.8.0, Eclipse plugin 1.1.0</dt>
917
+ <dd><ul class="first last simple">
918
+ <li>Added: InternalIncludes and InternalDefines in DefaultToolchain, which are forwarded to the IDE.</li>
919
+ <li>Changed: No default options for PC-lint in combination with GCC will be provided anymore. Use the official way, see co-gcc.lnt in PC-lint installation.</li>
920
+ <li>Bugfix: verbose output for replacing non-existing environment variables broken.</li>
921
+ </ul>
922
+ </dd>
923
+ <dt>November 4, 2014 - bake-toolkit 1.7.0</dt>
924
+ <dd><ul class="first last simple">
925
+ <li>Added: Option to define output directory relative/absolute for each project or for all projects.</li>
926
+ <li>Added: &#8211;set command line option to set variables</li>
927
+ <li>Added: Optional &#8220;Description&#8221; tag for projects in Project.meta</li>
928
+ <li>Changed: Variables in DefaultToolchain will be substituted separately for each project.</li>
929
+ </ul>
930
+ </dd>
931
+ <dt>August 8, 2014 - bake-toolkit 1.6.3</dt>
932
+ <dd><ul class="first last simple">
933
+ <li>Fixed: possible uninitialized variable could lead to crash bake</li>
934
+ </ul>
935
+ </dd>
936
+ <dt>August 6, 2014 - bake-toolkit 1.6.2</dt>
937
+ <dd><ul class="first last simple">
938
+ <li>Fixed: clear clearn- and clobber-lists at startup</li>
939
+ <li>Fixed: Variables not substituted in ArtifactName and ArtifactNameBase</li>
940
+ <li>Added: Cyclic variable substitution</li>
941
+ </ul>
942
+ </dd>
943
+ <dt>August 5, 2014 - bake-toolkit 1.6.1</dt>
944
+ <dd><ul class="first last simple">
945
+ <li>Added: Fixed variable substitution</li>
946
+ </ul>
947
+ </dd>
948
+ <dt>August 1, 2014 - bake-toolkit 1.6.0</dt>
949
+ <dd><ul class="first last simple">
950
+ <li>Added: The value of a variable can be the result of a command line</li>
951
+ </ul>
952
+ </dd>
953
+ <dt>July 18, 2014 - bake-toolkit 1.5.0</dt>
954
+ <dd><ul class="first last simple">
955
+ <li>Added: Dependencies can be overwritten in inherited projects</li>
956
+ <li>Removed: defines cannot be filtered anymore via command line</li>
957
+ </ul>
958
+ </dd>
959
+ <dt>June 6, 2014 - bake-toolkit 1.4.0</dt>
960
+ <dd><ul class="first last simple">
961
+ <li>Bugfix: variables can be used in &#8220;Set&#8221; now</li>
962
+ <li>Added: variable &#8220;MainProjectDir&#8221;</li>
963
+ </ul>
964
+ </dd>
965
+ <dt>May 23, 2014 - bake-toolkit 1.3.0</dt>
966
+ <dd><ul class="first last simple">
967
+ <li>Added: defines can be filtered now via command line</li>
968
+ </ul>
969
+ </dd>
970
+ <dt>May 2, 2014 - bake-toolkit 1.2.1</dt>
971
+ <dd><ul class="first last simple">
972
+ <li>Added: Set keyword for defining variables</li>
973
+ <li>Changed: &#8220;executed in&#8221;-output now in separate line</li>
974
+ </ul>
975
+ </dd>
976
+ <dt>March 14, 2014 - bake-toolkit 1.1.0</dt>
977
+ <dd><ul class="first last simple">
978
+ <li>Added: Lint support</li>
979
+ <li>Added: $(ProjectDir) variable</li>
980
+ </ul>
981
+ </dd>
982
+ <dt>March 7, 2014 - bake-toolkit 1.0.27</dt>
983
+ <dd><ul class="first last simple">
984
+ <li>Cosmetic: some pictures in documentation were missing</li>
985
+ </ul>
986
+ </dd>
987
+ <dt>March 5, 2014 - bake-toolkit 1.0.26</dt>
988
+ <dd><ul class="first last simple">
989
+ <li>Bugfix: in rare cases invalid characters from compiler output were not handled correctly</li>
990
+ <li>Bugfix: changing workspace roots on command line now always regenerates build tree</li>
991
+ <li>Added: Variable $(Roots) for IncludeDir directives</li>
992
+ <li>Changed: dependency files for all compilers will be generated inclusive system headers</li>
993
+ <li>Changed: abort earlier if main directory has no Project.meta</li>
994
+ <li>Changed: every environment variable is expanded to an empty string if not defined</li>
995
+ </ul>
996
+ </dd>
997
+ <dt>January 21, 2014 - bake-toolkit 1.0.25</dt>
998
+ <dd><ul class="first last simple">
999
+ <li>Added: configs can now be inherited</li>
1000
+ <li>Added: command bake-doc opens bake doc</li>
1001
+ <li>Changed: dependency files for Greenhills compiler will be generated with -MD instead of -MMD</li>
1002
+ </ul>
1003
+ </dd>
1004
+ <dt>September 10, 2013 - bake-toolkit 1.0.24</dt>
1005
+ <dd><ul class="first last simple">
1006
+ <li>Changed: Improved Keil linker error parser.</li>
1007
+ </ul>
1008
+ </dd>
1009
+ <dt>September 9, 2013 - bake-toolkit 1.0.23</dt>
1010
+ <dd><ul class="first last simple">
1011
+ <li>Added: Keil support.</li>
1012
+ <li>Bugfix: minor fixes.</li>
1013
+ </ul>
1014
+ </dd>
1015
+ <dt>August 21, 2013 - bake-toolkit 1.0.22</dt>
1016
+ <dd><ul class="first last simple">
1017
+ <li>Bugfix: Searching for project folders did not work correctly.</li>
1018
+ </ul>
1019
+ </dd>
1020
+ <dt>August 20, 2013 - Eclipse plugin 1.0.5.0</dt>
1021
+ <dd><ul class="first last simple">
1022
+ <li>Bugfix: Adjust includes in CDT is working again after Java Update.</li>
1023
+ </ul>
1024
+ </dd>
1025
+ <dt>August 1, 2013 - bake-toolkit 1.0.21</dt>
1026
+ <dd><ul class="first last simple">
1027
+ <li>Bugfix: projects folders which are junctions were not found anymore after the last update.</li>
1028
+ </ul>
1029
+ </dd>
1030
+ <dt>July 25, 2013 - bake-toolkit 1.0.20, Eclipse plugin 1.0.4.0</dt>
1031
+ <dd><ul class="first last simple">
1032
+ <li>Added: projects can be placed more than one level below workspaces roots</li>
1033
+ </ul>
1034
+ </dd>
1035
+ <dt>June 21, 2013 - bake-toolkit 1.0.19</dt>
1036
+ <dd><ul class="first last simple">
1037
+ <li>Added: support for GreenHills compiler.</li>
1038
+ </ul>
1039
+ </dd>
1040
+ <dt>May 29, 2013 - bake-toolkit 1.0.18</dt>
1041
+ <dd><ul class="first last simple">
1042
+ <li>Bugfix: typo in require, which has broken bake in case sensitive file systems.</li>
1043
+ </ul>
1044
+ </dd>
1045
+ <dt>May 28, 2013 - bake-toolkit 1.0.17</dt>
1046
+ <dd><ul class="first last simple">
1047
+ <li>Bugfix: error levels greater than 255 of external processes were not be recognized correctly in some cases.</li>
1048
+ </ul>
1049
+ </dd>
1050
+ <dt>May 16, 2013 - Eclipse plugin 1.0.2.0</dt>
1051
+ <dd><ul class="first last simple">
1052
+ <li>Bugfix: bake did not start correctly with latest Java version installed.</li>
1053
+ </ul>
1054
+ </dd>
1055
+ <dt>April 22, 2013 - bake-toolkit 1.0.16</dt>
1056
+ <dd><ul class="first last simple">
1057
+ <li>Changed: default roots of bakery are now directory of Collection.meta and it&#8217;s parent directory.</li>
1058
+ </ul>
1059
+ </dd>
1060
+ <dt>April 19, 2013 - bake-toolkit 1.0.15</dt>
1061
+ <dd><ul class="first last simple">
1062
+ <li>Bugfix: bakery could not build projects with spaces in oathname.</li>
1063
+ </ul>
1064
+ </dd>
1065
+ <dt>April 19, 2013 - bake-toolkit 1.0.13</dt>
1066
+ <dd><ul class="first last simple">
1067
+ <li>Bugfix: some bake options specified on bakery command line were not accepted.</li>
1068
+ </ul>
1069
+ </dd>
1070
+ <dt>April 17, 2013 - bake-toolkit 1.0.12</dt>
1071
+ <dd><ul class="first last simple">
1072
+ <li>Changed: Output folders are not deleted and rebuilt if no source files are available but the archive file.</li>
1073
+ <li>Added: Option &#8211;clobber deletes .bake cache file.</li>
1074
+ <li>Added: Collections can reference collections.</li>
1075
+ <li>Added: collection names can be specified without typing &#8220;-b&#8221;</li>
1076
+ </ul>
1077
+ </dd>
1078
+ <dt>April 4, 2013 - bake-toolkit 1.0.11</dt>
1079
+ <dd><ul class="first last simple">
1080
+ <li>Bugfix: Executing batch files in CommandLine on Windows were broken.</li>
1081
+ <li>April 2, 2013 - bake-toolkit 1.0.10</li>
1082
+ <li>Bugfix: options &#8220;&#8211;toolchain_names&#8221; now working as intended</li>
1083
+ <li>Bugfix: default flags for makefiles (-j) no longer ignored</li>
1084
+ <li>Changed: flags for makefiles are now defined in subtags instead in attributes to be consistent with other flag definitions</li>
1085
+ <li>Added: &#8221;..&#8221; in Files and ExcludeFiles now allowed</li>
1086
+ <li>Added: command line switch to turn off &#8220;directory magic&#8221;</li>
1087
+ <li>Added: build config can be specified without typing &#8220;-b&#8221;</li>
1088
+ <li>Cosmetic: better error output if compiler not found</li>
1089
+ </ul>
1090
+ </dd>
1091
+ <dt>March 22, 2013 - bake-toolkit 1.0.9</dt>
1092
+ <dd><ul class="first last simple">
1093
+ <li>Cosmetic: Changed option &#8211;print_less to -v0 and -v to -v2. Default is -v1.</li>
1094
+ </ul>
1095
+ </dd>
1096
+ <dt>March 7, 2013 - bake-toolkit 1.0.8</dt>
1097
+ <dd><ul class="first last simple">
1098
+ <li>Added: Linkerscript can be referenced from other projects</li>
1099
+ </ul>
1100
+ </dd>
1101
+ <dt>February 13, 2013 - bake-toolkit 1.0.7</dt>
1102
+ <dd><ul class="first last simple">
1103
+ <li>Added: OS dependent variable $(/)</li>
1104
+ </ul>
1105
+ </dd>
1106
+ <dt>January 21, 2013 - bake-toolkit 1.0.6</dt>
1107
+ <dd><ul class="first last simple">
1108
+ <li>Added: support for Visual Studio</li>
1109
+ </ul>
1110
+ </dd>
1111
+ <dt>January 15, 2013 - bake-toolkit 1.0.5</dt>
1112
+ <dd><ul class="first last simple">
1113
+ <li>Changed: no indirect dependency to progressbar gem anymore</li>
1114
+ </ul>
1115
+ </dd>
1116
+ <dt>January 14, 2013 - bake-toolkit 1.0.4</dt>
1117
+ <dd><ul class="first last simple">
1118
+ <li>Added: a new cache validation check.</li>
1119
+ </ul>
1120
+ </dd>
1121
+ <dt>January 2, 2013 - bake-toolkit 1.0.3</dt>
1122
+ <dd><ul class="first last simple">
1123
+ <li>Bugfix: option to build a single file did not accept a filename with absolute path.</li>
1124
+ </ul>
1125
+ </dd>
1126
+ <dt>October 7, 2012 - bake-toolkit 1.0.2</dt>
1127
+ <dd><ul class="first last simple">
1128
+ <li>Changed: Renamed gem from &#8220;bake&#8221; to &#8220;bake-toolkit&#8221;.</li>
1129
+ </ul>
1130
+ </dd>
1131
+ <dt>September 18, 2012 - bake 1.0.1</dt>
1132
+ <dd><ul class="first last simple">
1133
+ <li>Changed: bake now based on rgen 0.6.0 and rtext 0.2.0, which are available on rubygems.</li>
1134
+ </ul>
1135
+ </dd>
1136
+ <dt>August 31, 2012 - bake 1.0.0</dt>
1137
+ <dd><ul class="first last simple">
1138
+ <li>First official release</li>
1139
+ </ul>
1140
+ </dd>
1141
+ </dl>
1142
+ </div>
1143
+
1144
+
1145
+ </div>
1146
+
1147
+ </div>
1148
+ </div>
1149
+ <footer class="footer">
1150
+ <div class="container">
1151
+ <p class="pull-right">
1152
+ <a href="#">Back to top</a>
1153
+
1154
+ </p>
1155
+ <p>
1156
+ &copy; Copyright 2016, E.S.R.Labs AG.<br/>
1157
+ Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.3.1.<br/>
1158
+ </p>
1159
+ </div>
1160
+ </footer>
1161
+ </body>
1155
1162
  </html>