Skip to content

Commit 01232a2

Browse files
committed
[CI] Fix LLVM target name
1 parent 8ef9fc8 commit 01232a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/apple-silicon-llvm-from-sources.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
mkdir build && cd build
2929
cmake -G Ninja \
3030
-DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS="clang" \
31-
-DLLVM_TARGETS_TO_BUILD="host;X86_64" -DLLVM_OPTIMIZED_TABLEGEN=ON \
31+
-DLLVM_TARGETS_TO_BUILD="host;X86" -DLLVM_OPTIMIZED_TABLEGEN=ON \
3232
../llvm
3333
# Note that only the required tools are built
3434
ninja clang opt lli not FileCheck

.github/workflows/x86-ubuntu-llvm-from-sources.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
ln -s /usr/bin/x86_64-linux-gnu-ld.gold ld
3232
cmake -G Ninja \
3333
-DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_PROJECTS="clang" \
34-
-DLLVM_TARGETS_TO_BUILD="X86_64;AArch64" -DLLVM_OPTIMIZED_TABLEGEN=ON \
34+
-DLLVM_TARGETS_TO_BUILD="X86;AArch64" -DLLVM_OPTIMIZED_TABLEGEN=ON \
3535
../llvm
3636
# Note that only the required tools are built
3737
ninja clang opt lli not FileCheck

0 commit comments

Comments
 (0)