Skip to content

Commit

Permalink
Add c_stdlib to jigsaw build deps
Browse files Browse the repository at this point in the history
  • Loading branch information
xylar committed Jul 4, 2024
1 parent 9395b91 commit b34ab08
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions deploy/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,11 @@ def build_jigsaw(activate_env, conda_base, source_path, env_path, logger):
print('Building JIGSAW\n')
# add build tools to deployment env, not polaris env
jigsaw_build_deps = 'cxx-compiler cmake'
if platform.system() == 'Linux':
jigsaw_build_deps = f'{jigsaw_build_deps} sysroot_linux-64=2.17'
elif platform.system() == 'Darwin':
jigsaw_build_deps = \
f'{jigsaw_build_deps} macosx_deployment_target=10.13'
netcdf_lib = f'{env_path}/lib/libnetcdf.so'
cmake_args = f'-DCMAKE_BUILD_TYPE=Release -DNETCDF_LIBRARY={netcdf_lib}'

Expand Down

0 comments on commit b34ab08

Please sign in to comment.