Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
include:
- os: windows-latest
platform: win32-x64
- os: ubuntu-22.04
- os: ubuntu-24.04
platform: linux-x64
- os: ubuntu-22.04-arm
- os: ubuntu-24.04-arm
platform: linux-arm64
- os: macos-latest
platform: darwin-x64
Expand All @@ -28,6 +28,9 @@ jobs:
with:
submodules : recursive
- uses: actboy168/setup-luamake@master
- if: matrix.platform == 'linux-x64' || matrix.platform == 'linux-arm64'
run: |
sudo apt-get update && sudo apt-get install -y libiberty-dev
- run: luamake lua compile/download_deps.lua
- run: luamake -mode release -platform ${{ matrix.platform }}
- run: npm install -g @vscode/vsce ovsx
Expand Down
5 changes: 3 additions & 2 deletions compile/common/bee.lua
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ lm:source_set "source_bee" {
},
linux = {
sources = {
"!bee/crash/linux/**/",
need {
"linux",
"posix",
Expand Down Expand Up @@ -136,9 +135,11 @@ lm:source_set "source_bee" {
}
},
linux = {
ldflags = "-pthread",
ldflags = "-pthread -l:libbfd.a -l:libiberty.a -l:libsframe.a -l:libzstd.so -l:libz.so",
links = {
"stdc++fs",
"unwind",
"gcc_s"
}
},
macos = {
Expand Down
Loading