File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 25
25
libc : musl
26
26
gcc_install : clang lld
27
27
gcc : clang
28
+ gxx : clang++
28
29
# libc is intentionally not set here, as prebuild-install requires libc to not be set for glibc builds
29
30
- triple : " linux-gnu"
30
31
platform : debian
@@ -48,17 +49,20 @@ jobs:
48
49
platform : debian
49
50
gcc_install : gcc g++
50
51
gcc : gcc
52
+ gxx : g++
51
53
- arch : arm64
52
54
platform : debian
53
55
gcc_install : gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
54
56
gcc : aarch64-linux-gnu-gcc
57
+ gxx : aarch64-linux-gnu-g++
55
58
# debian uses the triple `arm-linux-gnueabihf` instead of alpine's `armv7-alpine-linux-musleabihf`
56
59
# because of this, we explicitly override triple_arch for debian arm
57
60
- triple_arch : arm
58
61
arch : arm
59
62
platform : debian
60
63
gcc_install : gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
61
64
gcc : arm-linux-gnueabihf-gcc
65
+ gxx : arm-linux-gnueabihf-g++
62
66
63
67
steps :
64
68
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ set(triple $ENV{TRIPLE})
3
3
4
4
# use clang and lld
5
5
set (CMAKE_C_COMPILER $ENV{GCC} )
6
- set (CMAKE_CXX_COMPILER $ENV{GCC } )
6
+ set (CMAKE_CXX_COMPILER $ENV{GXX } )
7
7
if (CMAKE_C_COMPILER MATCHES clang)
8
8
add_link_options ("-fuse-ld=lld" )
9
9
endif ()
You can’t perform that action at this time.
0 commit comments