We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6914876 commit c56bea0Copy full SHA for c56bea0
.github/workflows/llvm.yml
@@ -10,7 +10,7 @@ jobs:
10
matrix:
11
os: [ubuntu-22.04, macos-13]
12
platform: [x64, arm64]
13
- build-cfg: [Debug, Release]
+ build-cfg: [Debug, RelWithDebInfo, Release]
14
15
runs-on: ${{ matrix.os }}
16
build/llvm/LLVM.lua
@@ -142,7 +142,7 @@ end
142
143
function get_llvm_configuration_name(debug)
144
if string.find(_OPTIONS["configuration"], "DebugOpt") then
145
- return os.istarget("windows") and "RelWithDebInfo" or "Release"
+ return "RelWithDebInfo"
146
end
147
if string.find(_OPTIONS["configuration"], "Debug") then
148
return "Debug"
0 commit comments