summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xmake/modules/core/tools/cl.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmake/modules/core/tools/cl.lua b/xmake/modules/core/tools/cl.lua
index bf5bc786f..3ff02496c 100644
--- a/xmake/modules/core/tools/cl.lua
+++ b/xmake/modules/core/tools/cl.lua
@@ -98,12 +98,12 @@ function nf_symbol(self, level, target)
local flags = nil
if level == "debug" then
if target and target.symbolfile then
- flags = "-ZI -Fd" .. target:symbolfile()
- if self:has_flags({"-ZI", "-FS", "-Fd" .. os.tmpfile() .. ".pdb"}) then
+ flags = "-Zi -Fd" .. target:symbolfile()
+ if self:has_flags({"-Zi", "-FS", "-Fd" .. os.tmpfile() .. ".pdb"}) then
flags = "-FS " .. flags
end
else
- flags = "-ZI"
+ flags = "-Zi"
end
end