File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -93,12 +93,13 @@ jobs:
93
93
run : |
94
94
echo "DOCKER_TEST_IMAGE=$(echo multibuild/xenial_${{ matrix.PLAT}})" >> $GITHUB_ENV;
95
95
96
- - name : Setup gcc from homebrew
96
+ - name : Setup clang from homebrew
97
97
if : ${{ matrix.os == 'macos-13' }}
98
98
run : |
99
99
brew reinstall gcc
100
100
brew install coreutils
101
101
brew install llvm
102
+ echo "CC=/opt/homebrew/opt/llvm/bin/clang" >> $GITHUB_ENV;
102
103
103
104
- name : Print some Environment variable
104
105
run : |
Original file line number Diff line number Diff line change @@ -206,6 +206,12 @@ function do_build_lib {
206
206
echo " Due to the qemu versions 7.2 causing utest cases to fail,"
207
207
echo " the utest dsdot:dsdot_n_1 have been temporarily disabled."
208
208
fi
209
+ echo start building
210
+ echo " ========== gcc ============="
211
+ echo path $PATH
212
+ echo gcc path $( which gcc)
213
+ echo gcc version $( gcc --version)
214
+ echo " ========== gcc ============="
209
215
if [ " $dynamic_list " != " " ]; then
210
216
CFLAGS=" $CFLAGS -fvisibility=protected -Wno-uninitialized" \
211
217
make BUFFERSIZE=20 DYNAMIC_ARCH=1 QUIET_MAKE=1 \
@@ -220,11 +226,6 @@ function do_build_lib {
220
226
BINARY=" $bitness " $interface_flags \
221
227
TARGET=" $target "
222
228
fi
223
- echo start building
224
- echo " ========== gcc ============="
225
- echo gcc path $( which gcc)
226
- echo gcc version $( gcc --version)
227
- echo " ========== gcc ============="
228
229
make PREFIX=$BUILD_PREFIX $interface_flags install
229
230
popd
230
231
if [ " $nightly " = " 1" ]; then
You can’t perform that action at this time.
0 commit comments