Skip to content

Commit

Permalink
fixed platform issue for sure
Browse files Browse the repository at this point in the history
  • Loading branch information
djdunning committed Jan 6, 2025
1 parent c5f3e66 commit ff301dd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .conda/elements/cuda/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ c_compiler:
cxx_compiler:
- gxx
target_platform:
- linux-64
- linux-64 # [linux]
#- linux-aarch64
#- linux-ppc64le
- osx-64 # [osx]
- osx-arm64 # [osx]
7 changes: 3 additions & 4 deletions .conda/elements/cuda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,14 @@ build:
number: 1
noarch: False
script_env:
- PLATFORM={{ target_platform }} # [linux]
- PLATFORM={{ target_platform }}
skip: True # [osx]
skip: False # [linux]

requirements: # [linux]
requirements:
build:
- cmake >=3.17.0
- {{ compiler('cxx') }}={{ linux_compiler_version }} # [linux]
#- {{ compiler('cxx') }}={{ macos_compiler_version }} # [osx]
- {{ compiler('cxx') }}={{ linux_compiler_version }}
- cuda-toolkit
- matar-cuda
- openmpi
Expand Down
4 changes: 3 additions & 1 deletion .conda/matar/cuda/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ c_compiler:
cxx_compiler:
- gxx
target_platform:
- linux-64
- linux-64 # [linux]
#- linux-aarch64
#- linux-ppc64le
- osx-64 # [osx]
- osx-arm64 # [osx]
4 changes: 2 additions & 2 deletions .conda/matar/cuda/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ build:
number: 1
noarch: False
script_env:
- PLATFORM={{ target_platform }} # [linux]
- PLATFORM={{ target_platform }}
skip: True # [osx]
skip: False # [linux]

requirements: #[linux]
requirements:
build:
- cmake >=3.17.0
- {{ compiler('cxx') }}={{ linux_compiler_version }}
Expand Down

0 comments on commit ff301dd

Please sign in to comment.