summaryrefslogtreecommitdiff
path: root/xmake/rules/utils
diff options
context:
space:
mode:
authorruki <[email protected]>2021-02-19 00:32:29 +0800
committerruki <[email protected]>2021-02-19 00:32:29 +0800
commit41e6c1d82e6417f8cc0818ae37ee2677fd3692c1 (patch)
tree0090471be91de0b49e5fa81eb191f784d09bc088 /xmake/rules/utils
parent16f8fb0248a252e185842ae2452975e6fd41aeb7 (diff)
improve export all
Diffstat (limited to 'xmake/rules/utils')
-rw-r--r--xmake/rules/utils/symbols/export_all/export_all.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/rules/utils/symbols/export_all/export_all.lua b/xmake/rules/utils/symbols/export_all/export_all.lua
index ec6115142..52408957c 100644
--- a/xmake/rules/utils/symbols/export_all/export_all.lua
+++ b/xmake/rules/utils/symbols/export_all/export_all.lua
@@ -58,7 +58,7 @@ function main (target, opt)
local symbol = line:match(".*External%s+| (.*)")
if symbol then
symbol = symbol:split('%s')[1]
- if not symbol:startswith("__") then
+ if not symbol:startswith("__") and not symbol:startswith("?") then
allsymbols:insert(symbol)
end
end