summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yml1
-rw-r--r--make.lua1
2 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 19e73495..31c8d7f8 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -21,7 +21,6 @@ jobs:
matrix:
include:
- { os: ubuntu-18.04, target: linux, platform: linux-x64 }
- - { os: ubuntu-18.04, target: linux, platform: linux-arm64 }
- { os: macos-11, target: darwin, platform: darwin-x64 }
- { os: macos-11, target: darwin, platform: darwin-arm64 }
- { os: windows-latest, target: windows, platform: win32-ia32 }
diff --git a/make.lua b/make.lua
index b3b9400e..25e9d38d 100644
--- a/make.lua
+++ b/make.lua
@@ -28,6 +28,7 @@ elseif platform.OS == 'Linux' then
if lm.platform == nil then
elseif lm.platform == "linux-x64" then
elseif lm.platform == "linux-arm64" then
+ -- TODO: not implement
lm.compiler = "clang"
lm.target = "arm64-pc-linux-gnu"
else