From 0a23877633f40357605d6e4294ef7df7892996fa Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Thu, 13 Aug 2015 14:29:00 -0700 Subject: [PATCH] Add skipmscorlib option to build.sh In perperation for supporting mscorlib.dll builds on *NIX, provide a switch for the CI system to disable building mscorlib as part of the build, since we pick up the cross compiled Linux version and our mono seems to crash often in CI. Once this is checked in we can start having the CI jobs pass this switch without causing an error, then have a future commit which enables mscorlib building key off it. --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index 5e31a3f..14ef25f 100755 --- a/build.sh +++ b/build.sh @@ -196,6 +196,8 @@ for i in "$@" __ClangMajorVersion=3 __ClangMinorVersion=7 ;; + skipmscorlib) + ;; *) __UnprocessedBuildArgs="$__UnprocessedBuildArgs $i" esac -- 2.7.4