Skip to content

Commit 02a9678

Browse files
committed
Add libc++ installation for 32-bit arch
Bump llvm to 16.0.5
1 parent 147bb3e commit 02a9678

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/nightly-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
BUILD_TOOLCHAIN="./configure --prefix=/opt/riscv --with-arch=${TARGET_TUPLE[0]} --with-abi=${TARGET_TUPLE[1]}"
7272
if [ "${{ matrix.mode }}" == "linux" ]; then # build toolchain with llvm
7373
$BUILD_TOOLCHAIN --enable-llvm --enable-linux
74-
sudo make -j $(nproc) all build-sim SIM=qemu
74+
sudo make -j $(nproc) all
7575
else
7676
$BUILD_TOOLCHAIN
7777
sudo make -j $(nproc) ${{ matrix.mode }}

Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -937,7 +937,7 @@ stamps/build-llvm-linux: $(LLVM_SRCDIR) $(LLVM_SRC_GIT) \
937937
-DLLVM_PARALLEL_LINK_JOBS=4
938938
$(MAKE) -C $(notdir $@)
939939
$(MAKE) -C $(notdir $@) install
940-
cp $(notdir $@)/lib/riscv64-unknown-linux-gnu/libc++* $(SYSROOT)/lib
940+
cp $(notdir $@)/lib/riscv$(XLEN)-unknown-linux-gnu/libc++* $(SYSROOT)/lib
941941
cd $(INSTALL_DIR)/bin && ln -s clang $(LINUX_TUPLE)-clang
942942
mkdir -p $(dir $@) && touch $@
943943

llvm

Submodule llvm updated from 088f336 to 185b81e

0 commit comments

Comments
 (0)