-
Notifications
You must be signed in to change notification settings - Fork 60
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
Add Mac fixes to hashstack's proteus configuration. #991
base: stable/proteus
Are you sure you want to change the base?
Changes from all commits
9277cfc
75424c8
69905c9
85eccd7
a71c15d
a24dd20
8acb539
dc71453
6f41242
451fe71
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
extends: [cmake_package] | ||
dependencies: | ||
build: [boost, zmq] | ||
|
||
sources: | ||
- url: https://gitlab.kitware.com/cmb/remus.git | ||
key: git:1148df5bb86a2dc9bd61d19edbe6f77c582a5641 | ||
|
||
defaults: | ||
relocatable: true | ||
|
||
build_stages: | ||
- name: configure | ||
extra: ['-D BUILD_SHARED_LIBS:BOOL=ON'] |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,9 @@ dependencies: | |
build: [mpi, parmetis, zoltan] | ||
|
||
sources: | ||
- url: https://github.com/SCOREC/core.git | ||
key: git:e219777edd875d35096dfedd7197300b8e2f3837 | ||
- url: https://github.com/tjcorona/core.git | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have your changes to scorec core not been merged in? Maybe we should put and if statement here to do this conditionally only for darwin or do it as a patch instead. Maybe @zhanga can look into the changes on scorec core. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the version we were using had the error, and the newest version of SCOREC/core wasn't compatible with other things. The easiest fix was to branch and patch the version we were using. |
||
key: git:374c1f0640d2a96242e7a5fd01fd27bd5a935b11 | ||
|
||
defaults: | ||
relocatable: true | ||
|
||
|
@@ -29,4 +29,3 @@ build_stages: | |
'-DZOLTAN_PREFIX:PATH=${ZOLTAN_DIR}', | ||
'-DPARMETIS_PREFIX:PATH=${PARMETIS_DIR}', | ||
] | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
extends: [cmake_package] | ||
dependencies: | ||
build: [boost, gdal, hdf5, netcdf4, mpi, python, remus, vtk, zmq] | ||
|
||
sources: | ||
- url: https://gitlab.kitware.com/tjcorona/smtk.git | ||
key: git:9c18b1d7207d17995ce260e095e7a5e9ae5f63cb | ||
|
||
defaults: | ||
relocatable: true | ||
|
||
build_stages: | ||
- name: configure | ||
extra: ['-D SMTK_ENABLE_VTK_SUPPORT:BOOL=ON', | ||
'-D SMTK_ENABLE_DISCRETE_SESSION:BOOL=ON', | ||
'-D SMTK_ENABLE_EXODUS_SESSION:BOOL=ON', | ||
'-D SMTK_ENABLE_MESH_SESSION:BOOL=ON', | ||
'-D SMTK_ENABLE_POLYGON_SESSION:BOOL=ON', | ||
'-D SMTK_ENABLE_REMOTE_SESSION:BOOL=ON', | ||
'-D SMTK_ENABLE_REMUS_SUPPORT:BOOL=ON', | ||
'-D SMTK_ENABLE_PYTHON_WRAPPING:BOOL=ON', | ||
'-D SMTK_USE_PYBIND11:BOOL=ON', | ||
'-D SMTK_USE_SYSTEM_MOAB:BOOL=OFF', | ||
'-D ENABLE_HDF5:BOOL=ON', | ||
'-D ENABLE_NETCDF:BOOL=ON', | ||
'-D NETCDF_ROOT:STRING=${NETCDF4_DIR}', | ||
'-D VTK_DIR:STRING=${VTK_DIR}', | ||
'-D PYTHON_LIBRARY:FILEPATH=${PYTHON_DIR}/lib/libpython2.7.dylib', | ||
'-D PYTHON_EXECUTABLE:FILEPATH=${PYTHON_DIR}/bin/python2.7', | ||
'-D PYTHON_INCLUDE_DIR:PATH=${PYTHON_DIR}/include/python2.7', | ||
'-D NETCDF_C_LIBRARY=${NETCDF4_DIR}/lib/libnetcdf.dylib'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What necessitated going backward on the release?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change was made by @mfarthin.