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
3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-linux.yml

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

3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-osx.yml

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

3 changes: 3 additions & 0 deletions .azure-pipelines/azure-pipelines-win.yml

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

17 changes: 13 additions & 4 deletions .scripts/build_steps.sh

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

3 changes: 3 additions & 0 deletions .scripts/run_docker_build.sh

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

15 changes: 11 additions & 4 deletions .scripts/run_osx_build.sh

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

12 changes: 10 additions & 2 deletions .scripts/run_win_build.bat

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

2 changes: 1 addition & 1 deletion README.md

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

16 changes: 8 additions & 8 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = "17.0.4" %}
{% set version = "17.0.5" %}
{% set major_ver = version.split(".")[0] %}

# as of LLVM 17, we expect an "rc" suffix for the release candidates
Expand All @@ -11,7 +11,7 @@ package:

source:
url: https://github.com/llvm/llvm-project/releases/download/llvmorg-{{ version.replace(".rc", "-rc") }}/llvm-project-{{ version.replace(".rc", "rc") }}.src.tar.xz
sha256: a225eb96f52e7d8c6c275b351fcc66d7a21d925eecff53730900404f244ff16a
sha256: 95d7eff82945cf05c16a1851d7b391fc2da726b87c1138125e3b6e4d300ab834
patches:
# - patches/intel-D47188-svml-VF.patch # Fixes vectorizer and extends SVML support
# - patches/expect-fastmath-entrypoints-in-add-TLI-mappings.ll.patch # adjusts test added in 10.0.0 for intel-D47188-svml-VF.patch effects
Expand Down Expand Up @@ -44,7 +44,7 @@ requirements:
outputs:
# Contains everything
- name: llvmdev
script: install_llvm.sh # [unix]
script: install_llvm.sh # [unix]
script: install_llvm.bat # [win]
build:
activate_in_script: true
Expand Down Expand Up @@ -98,7 +98,7 @@ outputs:
script: install_llvm.sh # [not win]
build:
activate_in_script: true
run_exports: # [not win]
run_exports: # [not win]
- {{ pin_subpackage("libllvm" + major_ver, max_pin="x.x") }} # [not win]
requirements:
build:
Expand All @@ -123,7 +123,7 @@ outputs:
# for run_exports
- name: llvm
build:
run_exports: # [not win]
run_exports: # [not win]
- {{ pin_subpackage("libllvm" + major_ver, max_pin="x.x") }} # [not win]
requirements:
build:
Expand All @@ -132,7 +132,7 @@ outputs:
- libxml2
- zlib
- zstd
run: # [not win]
run: # [not win]
- {{ pin_subpackage("libllvm" + major_ver, exact=True) }} # [not win]
run_constrained:
- llvmdev {{ version }}
Expand All @@ -145,7 +145,7 @@ outputs:

# Contains LLVM tools
- name: llvm-tools
script: install_llvm.sh # [unix]
script: install_llvm.sh # [unix]
script: install_llvm.bat # [win]
build:
activate_in_script: true
Expand Down Expand Up @@ -177,7 +177,7 @@ outputs:

# Contains LLVM-C shared library
- name: libllvm-c{{ major_ver }}
script: install_llvm.sh # [unix]
script: install_llvm.sh # [unix]
script: install_llvm.bat # [win]
build:
run_exports:
Expand Down