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 263b118 commit ceafd40Copy full SHA for ceafd40
make/detect_platform.lua
@@ -24,8 +24,8 @@ elseif platform.os == 'linux' then
24
-- Use Zig for Linux builds to ensure glibc 2.17 compatibility
25
local use_zig = os.getenv("USE_ZIG")
26
if use_zig and use_zig ~= "0" and use_zig ~= "false" then
27
- lm.cc = 'zig cc'
28
- lm.cxx = 'zig c++'
+ -- Set compiler to zig (handles both C and C++)
+ lm.cc = 'zig c++'
29
lm.ar = 'zig ar'
30
31
if lm.platform == nil then
0 commit comments