Skip to content

Commit

Permalink
Add all env vars & drop compiler bits
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham committed May 28, 2021
1 parent 356df82 commit fc355da
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
15 changes: 11 additions & 4 deletions conda/recipes/cucim/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,21 @@ build:
script_env:
- CC
- CXX
- CUDAHOSTCXx
- CUDAHOSTCXX
- PARALLEL_LEVEL
- VERSION_SUFFIX
- PROJECT_FLASH
- CCACHE_DIR
- CCACHE_NOHASHDIR
- CCACHE_COMPILERCHECK
- CMAKE_GENERATOR
- CMAKE_C_COMPILER_LAUNCHER
- CMAKE_CXX_COMPILER_LAUNCHER
- CMAKE_CUDA_COMPILER_LAUNCHER

requirements:
build:
- cmake >=3.18.0
- {{ compiler("c") }}
- {{ compiler("cxx") }}
- sysroot_linux-64 2.17
host:
- cudatoolkit {{ cuda_version }}.*
- python {{ python_version }}.*
Expand Down
17 changes: 14 additions & 3 deletions conda/recipes/libcucim/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,24 @@ source:
build:
number: {{ GIT_DESCRIBE_NUMBER }}
string: cuda{{ cuda_version }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }}
script_env:
- CC
- CXX
- CUDAHOSTCXX
- PARALLEL_LEVEL
- VERSION_SUFFIX
- PROJECT_FLASH
- CCACHE_DIR
- CCACHE_NOHASHDIR
- CCACHE_COMPILERCHECK
- CMAKE_GENERATOR
- CMAKE_C_COMPILER_LAUNCHER
- CMAKE_CXX_COMPILER_LAUNCHER
- CMAKE_CUDA_COMPILER_LAUNCHER

requirements:
build:
- cmake >=3.18.0
- {{ compiler("c") }}
- {{ compiler("cxx") }}
- sysroot_linux-64 2.17
- yasm # [x86_64]
host:
- cudatoolkit {{ cuda_version }}.*
Expand Down

0 comments on commit fc355da

Please sign in to comment.