Skip to content

Commit f3d67d5

Browse files
authored
force clang-16 usage when compiling ubuntu portable shared libraries (#1560)
1 parent 5f9d8af commit f3d67d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

assembly/native/build-ubuntu-portable-libs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ else
2121
rm -rf .ninja* CMakeCache.txt
2222
fi
2323

24-
export CC=$(which clang)
25-
export CXX=$(which clang++)
24+
export CC=$(which clang-16)
25+
export CXX=$(which clang++-16)
2626
export CCACHE_DISABLE=1
2727

2828
if [ ! -d "lz4" ]; then

assembly/native/build-ubuntu-portable.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ else
2424
rm -rf .ninja* CMakeCache.txt
2525
fi
2626

27-
export CC=$(which clang)
28-
export CXX=$(which clang++)
27+
export CC=$(which clang-16)
28+
export CXX=$(which clang++-16)
2929
export CCACHE_DISABLE=1
3030

3131
if [ ! -d "lz4" ]; then

0 commit comments

Comments
 (0)