diff options
Diffstat (limited to 'xmake/modules/core/tools/armcc.lua')
| -rw-r--r-- | xmake/modules/core/tools/armcc.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xmake/modules/core/tools/armcc.lua b/xmake/modules/core/tools/armcc.lua index 6215242ec..403e143f0 100644 --- a/xmake/modules/core/tools/armcc.lua +++ b/xmake/modules/core/tools/armcc.lua @@ -45,6 +45,13 @@ function nf_symbol(self, level) end end +-- make runtime flag +function nf_runtime(self, runtime) + if runtime == "microlib" then + return "-D__MICROLIB" + end +end + -- make the optimize flag function nf_optimize(self, level) local maps = |
