We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ba7453 commit 2759c9aCopy full SHA for 2759c9a
make/copy_vcrt.lua
@@ -1,3 +1,6 @@
1
-local output = ...
+local output, arch = ...
2
local fs = require 'bee.filesystem'
3
-require 'msvc'.copy_vcrt('x64', fs.current_path() / output)
+require 'msvc'.copy_vcrt(
4
+ arch == "x86" and 'x86' or 'x64',
5
+ fs.current_path() / output
6
+)
0 commit comments