Skip to content

Commit 6ad9efb

Browse files
committed
Update to llvm20
1 parent 7460ba8 commit 6ad9efb

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
test -n "$(docker image ls -q nes_clang_build_${{ matrix.osversion }})" && \
6161
docker image rm $(docker image ls -q nes_clang_build_${{ matrix.osversion }}) || \
6262
true
63+
6364
build-arm-linux:
6465
env:
6566
VCPKG_DEP_LIST: arm64-linux
@@ -68,8 +69,8 @@ jobs:
6869
strategy:
6970
matrix:
7071
osversion: [ubuntu-22.04]
71-
stdlib: [libc++, stdlibc++]
72-
sanitizer: [null, 'Address', 'Thread', 'Undefined']
72+
stdlib: [libc++]
73+
sanitizer: [null]
7374
steps:
7475
- uses: AutoModality/action-clean@v1
7576
- uses: actions/checkout@v2

build_ubuntu-arm64.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ local CXX_FLAGS=""
2121
local LINKER_FLAGS=""
2222
local ADDITIONAL_FLAGS=""
2323
if [ "$STDLIB" == "libc++" ]; then
24-
CXX_FLAGS="-stdlib=libc++ -std=c++20"
24+
CXX_FLAGS="-std=c++23 -stdlib=libc++"
2525
LINKER_FLAGS="-lc++"
2626
elif [ "$STDLIB" == "stdlibc++" ]; then
27-
CXX_FLAGS="-std=c++20"
27+
CXX_FLAGS="-std=c++23"
2828
LINKER_FLAGS=""
2929
else
3030
echo "Error: STDLIB env not set to either libc++ or stdlibc++."

llvm-project

0 commit comments

Comments
 (0)