You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 30, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: .travis.yml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ env:
40
40
global:
41
41
- AM_MAKEFLAGS="-j4"
42
42
- CPPFLAGS="-I$HOME/bogus/include"
43
-
- LDFLAGS="-I$HOME/bogus/lib"
43
+
- LDFLAGS="-L$HOME/bogus/lib"
44
44
- LD_LIBRARY_PATH="$HOME/bogus/lib"
45
45
matrix:
46
46
- GCC_VERSION=default
@@ -57,6 +57,7 @@ before_install:
57
57
- if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$GCC_VERSION" == "5" ]] ; then sudo apt-get --assume-yes install gcc-5 g++-5 gfortran-5; fi
58
58
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then cd libfabric && ./autogen.sh && ./configure --prefix=$HOME/bogus --enable-usnic --disable-verbs $COMPILERS && make install && cd .. ; fi
59
59
- if [[ "$TRAVIS_OS_NAME" == "osx" ]] && [[ "$GCC_VERSION" == "5" ]] ; then brew update; brew unlink gcc ; brew install gcc; fi
60
+
- mkdir -p $HOME/bogus/include $HOME/bogus/lib
60
61
61
62
# Note that we use "make -k" to do the entire build, even if there was a
62
63
# build error in there somewhere. This prevents us from needing to submit
0 commit comments