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

Disable silent cmake and print CMakeCache.txt #3

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
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ script:
- export CHECK_AGAINST="$CHECK_AGAINST --check-against omnia/label/rc --check-against omnia/label/rccuda${CUDA_SHORT_VERSION}"
#- export CHECK_AGAINST="$CHECK_AGAINST --check-against omnia/label/beta --check-against omnia/label/betacuda${CUDA_SHORT_VERSION}"
#- export CHECK_AGAISNT="$CHECK_AGAINST --check-against omnia/label/dev --check-against omnia/label/devcuda${CUDA_SHORT_VERSION}"
- export CHECK_AGAINST="" # DEBUG
- if [[ "${TRAVIS_PULL_REQUEST}" == "false" && "${TRAVIS_BRANCH}" == "master" ]]; then
export UPLOAD="$CHECK_AGAINST --upload omnia";
else
Expand Down
3 changes: 3 additions & 0 deletions openmm/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,13 @@ elif [[ "$OSTYPE" == "darwin"* ]]; then
CMAKE_FLAGS+=" -DFFTW_THREADS_LIBRARY=$PREFIX/lib/libfftw3f_threads.dylib"
fi

env # DEBUG

# Build in subdirectory and install.
mkdir build
cd build
cmake .. $CMAKE_FLAGS
cat CMakeCache.txt # DEBUG
make -j$CPU_COUNT all

# PythonInstall uses the gcc/g++ 4.2.1 that anaconda was built with, so we can't add extraneous unrecognized compiler arguments.
Expand Down
2 changes: 1 addition & 1 deletion openmm/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ source:
git_tag: 689e2bc

patches:
- silent-cmake.patch
#- silent-cmake.patch
- silent-doxygen.patch
- silent-latexpdf.patch

Expand Down