Skip to content

Commit 2191de9

Browse files
committed
Fix incorrect configuration mapping
1 parent c343746 commit 2191de9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/llvm-win.yml

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

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

.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, RelWithDebInfo, Release]
13+
build-cfg: [Debug, DebugOpt, Release]
1414

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

build/LLVM.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require "llvm/LLVM"
1212

1313
function SearchLLVM()
1414
LLVMRootDirDebug = builddir .. "/llvm/" .. get_llvm_package_name(nil, "Debug")
15-
LLVMRootDirRelWithDebInfo = builddir .. "/llvm/" .. get_llvm_package_name(nil, "RelWithDebInfo")
15+
LLVMRootDirRelWithDebInfo = builddir .. "/llvm/" .. get_llvm_package_name(nil, "DebugOpt")
1616
LLVMRootDirRelease = builddir .. "/llvm/" .. get_llvm_package_name()
1717

1818
if os.isdir(LLVMRootDirDebug) or os.isdir(LLVMRootDirRelWithDebInfo) or os.isdir(LLVMRootDirRelease) then

0 commit comments

Comments
 (0)