We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1a63d9 commit 84db4ecCopy full SHA for 84db4ec
2 files changed
ChangeLog
@@ -1,3 +1,10 @@
1
+Fri May 10 16:09:37 UTC 2019 Chad Elliott <elliott_c@ociweb.com>
2
+
3
+ * templates/iar.mpd:
4
5
+ Added support for passing compiler flags through the compile_flags
6
+ template variable.
7
8
Mon May 6 16:35:07 UTC 2019 Chad Elliott <elliott_c@ociweb.com>
9
10
* templates/iar.mpt:
templates/iar.mpd
@@ -308,11 +308,17 @@
308
</option>
309
<option>
310
<name>IExtraOptionsCheck</name>
311
- <state>0</state>
+ <state><%if(compile_flags)%>1<%else%>0<%endif%></state>
312
313
314
<name>IExtraOptions</name>
315
+<%if(compile_flags)%>
316
+<%foreach(compile_flags)%>
317
+ <state><%compile_flag%></state>
318
+<%endfor%>
319
+<%else%>
320
<state></state>
321
+<%endif%>
322
323
324
<name>CCLangConformance</name>
0 commit comments