Skip to content

Commit c3d9a8d

Browse files
committed
enable msvc check
1 parent 3bb68cf commit c3d9a8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xmake/rules/utils/symbols/export_all/export_all.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function main(target, opt)
123123
-- get all symbols
124124
local allsymbols
125125
local msvc = toolchain.load("msvc", {plat = target:plat(), arch = target:arch()})
126-
if false then--msvc:check() then
126+
if msvc:check() then
127127
local dumpbin = assert(find_tool("dumpbin", {envs = msvc:runenvs()}), "dumpbin not found!")
128128
allsymbols = _get_allsymbols_by_dumpbin(target, dumpbin.program, {export_classes = export_classes})
129129
elseif target:has_tool("cc", "clang", "clang_cl", "clangxx") then

0 commit comments

Comments
 (0)