Update clang linkage options.

This commit is contained in:
jzmaddock
2024-04-06 18:33:44 +01:00
parent e91fac8614
commit 02f8f3119e
2 changed files with 2 additions and 2 deletions

View File

@ -170,7 +170,7 @@ jobs:
run: CXX=clang++-18 ./config/clang.sh ./config/test_has_module_support.cpp ./config/has_module_support.cpp has_module_support
working-directory: ../boost-root/libs/regex/test/module
- name: Test
run: CXX=clang++-18 ./test.sh ./config/clang.sh
run: CXX=clang++-18 LIBRARIES="-licuuc -licudt -licuin" ./test.sh ./config/clang.sh
working-directory: ../boost-root/libs/regex/test/module
macos:
runs-on: macos-latest

View File

@ -33,4 +33,4 @@ module_usage="$module_usage -fmodule-file=$cxx_module_name=$module_base.pcm $mod
done
# Build the actual executable:
$CXX $CXXFLAGS $1 $module_usage -o $3 || exit 1
$CXX $CXXFLAGS $1 $module_usage $LIBRARIES -o $3 || exit 1