Skip to content

Commit

Permalink
Fix run_exports (#116)
Browse files Browse the repository at this point in the history
automerged PR by conda-forge/automerge-action
  • Loading branch information
github-actions[bot] authored Oct 23, 2023
2 parents 14dbe6a + df62034 commit 65caba8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% endif %}
{% set major_ver = version.split(".")[0] %}

{% set build_number = 5 %}
{% set build_number = 6 %}

package:
name: clang-compiler-activation
Expand Down Expand Up @@ -81,15 +81,6 @@ outputs:
- {{ pin_subpackage('clang_' ~ cross_target_platform, exact=True) }}
- gxx_impl_{{ target_platform }} # [linux]
- __osx >={{ MACOSX_DEPLOYMENT_TARGET }} # [osx and x86_64]
# Since transitive run_exports are not currently possible
# (here I would like the run dependency on clangxx to pull in the run_exports from it).
run_exports:
strong:
- libcxx >={{ version }}
# strictly speaking the constraint on libcxx should be enough,
# but let's be nice to the solver and mark all libcxx-dependent
# packages as requiring 10.13 (for clangxx >= 17).
- __osx >={{ MACOSX_DEPLOYMENT_TARGET }} # [osx and x86_64]
test:
commands:
- echo {{ MACOSX_DEPLOYMENT_TARGET }} # [linux]
Expand All @@ -111,6 +102,15 @@ outputs:
commands:
- {{ CBUILD }}-clang++ --version
- {{ macos_machine }}-clang++ --version
# Since transitive run_exports are not currently possible
# (here I would like the run dependency on clangxx to pull in the run_exports from it).
run_exports:
strong:
- libcxx >={{ version }}
# strictly speaking the constraint on libcxx should be enough,
# but let's be nice to the solver and mark all libcxx-dependent
# packages as requiring 10.13 (for clangxx >= 17).
- __osx >={{ MACOSX_DEPLOYMENT_TARGET }} # [osx and x86_64]

- name: clang_bootstrap_{{ cross_target_platform }}
script: install-clang-bootstrap.sh
Expand Down

0 comments on commit 65caba8

Please sign in to comment.