Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LLVM 15.0.7 #91

Merged
merged 2 commits into from
Mar 5, 2023
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 @@ -32,5 +32,5 @@ zip_keys:
- uname_kernel_release
- FINAL_PYTHON_SYSCONFIGDATA_NAME
version:
- 13.0.1
- 14.0.6
- 15.0.7
9 changes: 6 additions & 3 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{% if version is not defined %}
{% set version = "14.0.6" %}
{% set version = "15.0.7" %}
{% endif %}
{% set major_ver = version.split(".")[0] %}

# make sure this does not reset (unless affected older LLVMs get dropped)
{% set build_number = 4 %}
{% set build_number = 0 %}
# keep build number increments for old compiler versions as necessary
{% if major_ver | int < 15 %}
{% set build_number = build_number + 4 %}
{% endif %}

package:
name: clang-compiler-activation
Expand Down