Skip to content

Commit

Permalink
Merge pull request #59 from certik/llvm_test
Browse files Browse the repository at this point in the history
Build against LLVM 16.06
  • Loading branch information
certik authored Oct 12, 2023
2 parents 700eb13 + f25ebfb commit 7d3a53d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
6 changes: 4 additions & 2 deletions .ci_support/osx_64_.yaml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
MACOSX_DEPLOYMENT_TARGET:
- '10.9'
MACOSX_SDK_VERSION:
- '11.3'
c_compiler:
- clang
c_compiler_version:
- '15'
- '16'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '15'
- '16'
macos_machine:
- x86_64-apple-darwin13.4.0
target_platform:
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 @@ -3,15 +3,15 @@ MACOSX_DEPLOYMENT_TARGET:
c_compiler:
- clang
c_compiler_version:
- '15'
- '16'
channel_sources:
- conda-forge
channel_targets:
- conda-forge main
cxx_compiler:
- clangxx
cxx_compiler_version:
- '15'
- '16'
macos_machine:
- arm64-apple-darwin20.0.0
target_platform:
Expand Down
6 changes: 4 additions & 2 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
MACOSX_SDK_VERSION: # [osx and x86_64]
- "11.3" # [osx and x86_64]
c_compiler_version: # [osx]
- 15 # [osx]
- 16 # [osx]
cxx_compiler_version: # [osx]
- 15 # [osx]
- 16 # [osx]
9 changes: 5 additions & 4 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ source:
- lto.patch

build:
number: 1
number: 2
skip: true # [py<36]

requirements:
Expand All @@ -23,16 +23,17 @@ requirements:
- make # [unix]
- xeus =3.0.5 # [build_platform != target_platform]
- xeus-zmq =1.0.2 # [build_platform != target_platform]
- llvmdev =15.0.7 # [build_platform != target_platform]
- llvmdev =16.0.6 # [build_platform != target_platform]
- xtl # [build_platform != target_platform]
- nlohmann_json # [build_platform != target_platform]
- cppzmq # [build_platform != target_platform]
- zlib # [build_platform != target_platform]
- zstd-static =1.5.5 # [build_platform != target_platform]
host:
- xeus =3.0.5
- xeus-zmq =1.0.2
- llvmdev =11.1.0 # [osx and x86_64]
- llvmdev =15.0.7 # [not osx or not x86_64]
- llvmdev =16.0.6 # [osx and x86_64]
- llvmdev =16.0.6 # [not osx or not x86_64]
- xtl
- nlohmann_json
- cppzmq
Expand Down

0 comments on commit 7d3a53d

Please sign in to comment.