Skip to content

Commit

Permalink
Build against llvm 17 (#1489)
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 Jul 29, 2024
2 parents 6422c21 + 0cd945d commit 0bf071e
Show file tree
Hide file tree
Showing 15 changed files with 40 additions and 40 deletions.
24 changes: 12 additions & 12 deletions .azure-pipelines/azure-pipelines-linux.yml

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

8 changes: 4 additions & 4 deletions .azure-pipelines/azure-pipelines-win.yml

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

4 changes: 2 additions & 2 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bzip2:
c_compiler:
- clang
c_compiler_version:
- '16'
- '17'
c_stdlib:
- macosx_deployment_target
c_stdlib_version:
Expand All @@ -33,7 +33,7 @@ cuda_compiler_version:
cxx_compiler:
- clangxx
cxx_compiler_version:
- '16'
- '17'
gflags:
- '2.2'
glog:
Expand Down
4 changes: 2 additions & 2 deletions .ci_support/osx_arm64_.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bzip2:
c_compiler:
- clang
c_compiler_version:
- '16'
- '17'
c_stdlib:
- macosx_deployment_target
c_stdlib_version:
Expand All @@ -33,7 +33,7 @@ cuda_compiler_version:
cxx_compiler:
- clangxx
cxx_compiler_version:
- '16'
- '17'
gflags:
- '2.2'
glog:
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.

4 changes: 2 additions & 2 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
# linux-aarch hits a compiler bug with GCC 12, upgrade; needs override
# for two versions on linux: one for non-CUDA & one for 11.8
c_compiler_version: # [unix]
- 16 # [osx]
- 17 # [osx]
- 13 # [linux and (aarch64 or ppc64le)]
- 10 # [linux and (aarch64 or ppc64le)]
cxx_compiler_version: # [unix]
- 16 # [osx]
- 17 # [osx]
- 13 # [linux and (aarch64 or ppc64le)]
- 10 # [linux and (aarch64 or ppc64le)]
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{% set build_ext_version = "5.0.0" %}
{% set build_ext = "cuda" if cuda_enabled else "cpu" %}
{% set proc_build_number = "0" %}
{% set llvm_version = "16" %}
{% set llvm_version = "17" %}

# see https://github.com/apache/arrow/blob/apache-arrow-10.0.1/cpp/CMakeLists.txt#L88-L90
{% set so_version = (version.split(".")[0] | int * 100 + version.split(".")[1] | int) ~ "." ~ version.split(".")[2] ~ ".0" %}
Expand All @@ -22,7 +22,7 @@ source:
folder: testing

build:
number: 2
number: 3
# for cuda support, building with one version is enough to be compatible with
# all later versions, since arrow is only using libcuda, and not libcudart.
skip: true # [cuda_compiler_version not in ("None", cuda_compiler_version_min)]
Expand Down

0 comments on commit 0bf071e

Please sign in to comment.