File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed
Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 11language : csharp
22
3+ os :
4+ - linux
5+ - osx
6+
7+ mono :
8+ - latest
9+
310install :
411
512script :
6- - ./autogen.sh --prefix=/usr
13+ - ./autogen.sh
714 - make
815 - sudo make install
916 - xbuild ./src/fsharp-library-unittests-build.proj /p:TargetFramework=net40 /p:Configuration=Release
1017 - (cd tests/projects; ./build.sh)
1118 - (cd tests/fsharp/core; ./run-opt.sh)
12-
Original file line number Diff line number Diff line change 11#! /usr/bin/env sh
2+
3+ if [[ $TRAVIS_OS_NAME == osx ]];
4+ then
5+ monoVer=$( mono --version | head -n 1 | cut -d' ' -f 5)
6+ prefix=" /Library/Frameworks/Mono.framework/Versions/$monoVer " ;
7+ else prefix=" /usr" ;
8+ fi
9+
210which autoreconf > /dev/null || (echo " Please install autoconf" && exit 1)
3- autoreconf && ./configure $@
11+ autoreconf && ./configure --prefix= $prefix
You can’t perform that action at this time.
0 commit comments