diff options
author | Ćukasz Domeradzki <JustArchi@users.noreply.github.com> | 2016-08-24 04:42:55 +0200 |
---|---|---|
committer | Jan Kotas <jkotas@microsoft.com> | 2016-08-23 19:42:55 -0700 |
commit | bc2bcc0cde64d43019cfab61d4cc7f8cf783173f (patch) | |
tree | c921845c3fe16a348e903b25158e8f417e8547f4 /build.sh | |
parent | ecf77758f8364bfa3ba2494a22da81e1c5b368dc (diff) | |
download | coreclr-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-x | build.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -543,6 +543,11 @@ while :; do __ClangMinorVersion=8 ;; + clang3.9) + __ClangMajorVersion=3 + __ClangMinorVersion=9 + ;; + ninja) __UseNinja=1 ;; |