Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ channel_sources:
- conda-forge
- conda-forge
- conda-forge
- conda-forge,conda-forge/label/llvm_rc
- conda-forge/label/llvm_rc,conda-forge
channel_targets:
- conda-forge main
- conda-forge main
Expand Down
11 changes: 4 additions & 7 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,11 @@
{% set version = "18.1.8" %}
{% endif %}
{% set major_ver = version.split(".")[0] %}
# first version requiring `__osx >=10.13`; libcxx 18 still in progress
{% if major_ver|int >= 17 %}
{% set libcxx_major = 17 %}
{% else %}
{% set libcxx_major = 16 %}
{% endif %}
# in the past we've had to uncouple the compiler version from the version
# of the C++ stdlib; keep the variable in case this happens again
{% set libcxx_major = major_ver %}

{% set build_number = 18 %}
{% set build_number = 19 %}

# pretend this variable is used, so that smithy populates the variant configs
# [meson_release_flag]
Expand Down