Skip to content

Commit

Permalink
Merge pull request #142 from h-vetinari/19
Browse files Browse the repository at this point in the history
LLVM v19.1.1
  • Loading branch information
h-vetinari authored Oct 10, 2024
2 parents e070d61 + 091e14d commit 47960cc
Show file tree
Hide file tree
Showing 12 changed files with 41 additions and 41 deletions.
8 changes: 4 additions & 4 deletions .azure-pipelines/azure-pipelines-linux.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions .azure-pipelines/azure-pipelines-osx.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ uname_kernel_release:
uname_machine:
- x86_64
version:
- 19.1.0
- 19.1.1
zip_keys:
- - cross_target_platform
- macos_machine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ uname_kernel_release:
uname_machine:
- arm64
version:
- 19.1.0
- 19.1.1
zip_keys:
- - cross_target_platform
- macos_machine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ uname_kernel_release:
uname_machine:
- x86_64
version:
- 19.1.0
- 19.1.1
zip_keys:
- - cross_target_platform
- macos_machine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ uname_kernel_release:
uname_machine:
- arm64
version:
- 19.1.0
- 19.1.1
zip_keys:
- - cross_target_platform
- macos_machine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ uname_kernel_release:
uname_machine:
- x86_64
version:
- 19.1.0
- 19.1.1
zip_keys:
- - cross_target_platform
- macos_machine
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ uname_kernel_release:
uname_machine:
- arm64
version:
- 19.1.0
- 19.1.1
zip_keys:
- - cross_target_platform
- macos_machine
Expand Down
32 changes: 16 additions & 16 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ MACOSX_DEPLOYMENT_TARGET: # [linux]
version:
- 17.0.6
- 18.1.8
- 19.1.0
- 19.1.1

# everything below is zipped
cross_target_platform:
Expand Down
6 changes: 3 additions & 3 deletions recipe/install-clang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ 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
if [[ "${CBUILD}" != ${CHOST} ]] && [[ "${target_platform}" != linux-* || ( ${version} != "17.0.6" && ${version} != "18.1.8") ]]; then
# before v19.1.1, `clang` on linux already had this symlink, see
# https://github.com/conda-forge/clangdev-feedstock/pull/322
ln -s clang ${CBUILD}-clang
ln -s clang-cpp ${CBUILD}-clang-cpp
fi
Expand Down
6 changes: 3 additions & 3 deletions recipe/install-clangxx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ echo CHOST is ${CHOST}

pushd "${PREFIX}"/bin
ln -s clang++ ${CHOST}-clang++
if [[ "${CHOST}" != "${CBUILD}" ]] && [[ "${target_platform}" != linux-* ]]; then
# on linux, the `clangxx` package already has a $TRIPLE-clang++, see
# https://github.com/conda-forge/clangdev-feedstock/pull/251
if [[ "${CBUILD}" != ${CHOST} ]] && [[ "${target_platform}" != linux-* || ( ${version} != "17.0.6" && ${version} != "18.1.8") ]]; then
# before v19.1.1, `clangxx` on linux already had this symlink, see
# https://github.com/conda-forge/clangdev-feedstock/pull/322
ln -s clang++ ${CBUILD}-clang++
fi
popd

0 comments on commit 47960cc

Please sign in to comment.