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

Linux bld casadi #41

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions opensim/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cmake ../dependencies/ -LAH \
-DSUPERBUILD_spdlog=ON \
-DSUPERBUILD_ezc3d=ON \
-DOPENSIM_WITH_TROPTER=OFF \
-DOPENSIM_WITH_CASADI=OFF
-DOPENSIM_WITH_CASADI=ON

make -j8
cd ..
Expand Down Expand Up @@ -48,6 +48,6 @@ cmake ../ \
-DOPENSIM_BUILD_INDIVIDUAL_APPS=ON \
-DOPENSIM_COPY_DEPENDENCIES=ON \
-DOPENSIM_WITH_TROPTER=OFF \
-DOPENSIM_WITH_CASADI=OFF
-DOPENSIM_WITH_CASADI=ON
make -j8
make install
3 changes: 3 additions & 0 deletions opensim/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ cxx_compiler:
- vs2019 # [win]
- clangxx # [osx]
- gxx # [linux]
fortran_compiler:
- gfortran # [linux]

1 change: 1 addition & 0 deletions opensim/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ requirements:
- python {{ python }}
- {{ compiler('c') }}
- {{ compiler('cxx') }}
- {{ compiler('fortran') }} # [not win]
- openblas # [not win]
- make # [not win]

Expand Down
Loading