diff --git a/recipe/install-clang.sh b/recipe/install-clang.sh index 62a15bf..094f176 100644 --- a/recipe/install-clang.sh +++ b/recipe/install-clang.sh @@ -6,9 +6,11 @@ CHOST=${macos_machine} pushd "${PREFIX}"/bin ln -s clang ${CHOST}-clang + ln -s clang-cpp ${CHOST}-clang-cpp if [[ "${CBUILD}" != ${CHOST} ]] && [[ "${target_platform}" != linux-* ]]; then # on linux, the `clang` package already has a $TRIPLE-clang, see # https://github.com/conda-forge/clangdev-feedstock/pull/251 ln -s clang ${CBUILD}-clang + ln -s clang-cpp ${CBUILD}-clang-cpp fi popd diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 722a718..1d3796a 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -9,7 +9,7 @@ {% set libcxx_major = 16 %} {% endif %} -{% set build_number = 17 %} +{% set build_number = 18 %} # pretend this variable is used, so that smithy populates the variant configs # [meson_release_flag] @@ -59,7 +59,9 @@ outputs: test: commands: - {{ CBUILD }}-clang --version + - {{ CBUILD }}-clang-cpp --version - {{ macos_machine }}-clang --version + - {{ macos_machine }}-clang-cpp --version - name: clang_{{ cross_target_platform }} script: install-clang-scripts.sh @@ -69,7 +71,9 @@ outputs: test: commands: - {{ CBUILD }}-clang --version + - {{ CBUILD }}-clang-cpp --version - {{ macos_machine }}-clang --version + - {{ macos_machine }}-clang-cpp --version - name: clangxx_impl_{{ cross_target_platform }} script: install-clangxx.sh @@ -147,6 +151,7 @@ outputs: test: commands: - {{ macos_machine }}-clang --version + - {{ macos_machine }}-clang-cpp --version - {{ macos_machine }}-clang++ --version about: home: https://llvm.org