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 e357777 commit cd8ac1dCopy full SHA for cd8ac1d
make.lua
@@ -24,6 +24,15 @@ elseif platform.OS == 'Windows' then
24
else
25
error "unknown platform"
26
end
27
+elseif platform.OS == 'Linux' then
28
+ if lm.platform == nil then
29
+ elseif lm.platform == "linux-x64" then
30
+ elseif lm.platform == "linux-arm64" then
31
+ lm.compiler = "clang"
32
+ lm.target = "arm64-linux-gnu"
33
+ else
34
+ error "unknown platform"
35
+ end
36
37
38
lm:import "3rd/bee.lua/make.lua"
0 commit comments