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

Update to GCC 10, clang 12 #2010

Merged
merged 5 commits into from
Feb 17, 2022
Merged
Changes from 3 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
16 changes: 8 additions & 8 deletions recipe/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ c_compiler:
- clang # [osx]
- vs2017 # [win]
c_compiler_version: # [unix]
- 11 # [osx]
- 9 # [linux]
- 12 # [osx]
- 10 # [linux]
- 7 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
- 9 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
- 9 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
Expand All @@ -20,22 +20,22 @@ cxx_compiler:
- clangxx # [osx]
- vs2017 # [win]
cxx_compiler_version: # [unix]
- 11 # [osx]
- 9 # [linux]
- 12 # [osx]
- 10 # [linux]
- 7 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
- 9 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
- 9 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
- 9 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
- 10 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
isuruf marked this conversation as resolved.
Show resolved Hide resolved
- 10 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
llvm_openmp: # [osx]
- 11 # [osx]
- 12 # [osx]
fortran_compiler: # [unix or win64]
- gfortran # [linux64 or (osx and x86_64)]
- gfortran # [aarch64 or ppc64le or armv7l or s390x]
- flang # [win64]
fortran_compiler_version: # [unix or win64]
- 11 # [osx and arm64]
- 9 # [osx and x86_64]
- 9 # [linux]
- 10 # [linux]
- 5 # [win64]
- 7 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
- 9 # [os.environ.get("CF_CUDA_ENABLED", "False") == "True" and linux64]
Expand Down