Skip to content

Commit c56bea0

Browse files
committed
Fix broken DebugOpt build on linux
1 parent 6914876 commit c56bea0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/llvm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
matrix:
1111
os: [ubuntu-22.04, macos-13]
1212
platform: [x64, arm64]
13-
build-cfg: [Debug, Release]
13+
build-cfg: [Debug, RelWithDebInfo, Release]
1414

1515
runs-on: ${{ matrix.os }}
1616

build/llvm/LLVM.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ end
142142

143143
function get_llvm_configuration_name(debug)
144144
if string.find(_OPTIONS["configuration"], "DebugOpt") then
145-
return os.istarget("windows") and "RelWithDebInfo" or "Release"
145+
return "RelWithDebInfo"
146146
end
147147
if string.find(_OPTIONS["configuration"], "Debug") then
148148
return "Debug"

0 commit comments

Comments
 (0)