summaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorƁukasz Domeradzki <JustArchi@users.noreply.github.com>2016-08-24 04:42:55 +0200
committerJan Kotas <jkotas@microsoft.com>2016-08-23 19:42:55 -0700
commitbc2bcc0cde64d43019cfab61d4cc7f8cf783173f (patch)
treec921845c3fe16a348e903b25158e8f417e8547f4 /build.sh
parentecf77758f8364bfa3ba2494a22da81e1c5b368dc (diff)
downloadcoreclr-bc2bcc0cde64d43019cfab61d4cc7f8cf783173f.tar.gz
coreclr-bc2bcc0cde64d43019cfab61d4cc7f8cf783173f.tar.bz2
coreclr-bc2bcc0cde64d43019cfab61d4cc7f8cf783173f.zip
Allow to use clang 3.9 in build.sh (#6888)
Can be found e.g. in Debian Sid.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/build.sh b/build.sh
index 88decff8fe..2958703476 100755
--- a/build.sh
+++ b/build.sh
@@ -543,6 +543,11 @@ while :; do
__ClangMinorVersion=8
;;
+ clang3.9)
+ __ClangMajorVersion=3
+ __ClangMinorVersion=9
+ ;;
+
ninja)
__UseNinja=1
;;