diff options
author | 1138-4EB <1138-4EB@users.noreply.github.com> | 2018-09-11 02:38:16 +0100 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2018-09-13 07:53:27 +0200 |
commit | e8ffea0c97583b564770e3ace87fa9641983ef64 (patch) | |
tree | 039913632b0eb2e234a997a5677f80252bf11517 /dist/travis | |
parent | b6b0da0650aebe89967fbb91cae698b2164922cf (diff) | |
download | ghdl-e8ffea0c97583b564770e3ace87fa9641983ef64.tar.gz ghdl-e8ffea0c97583b564770e3ace87fa9641983ef64.tar.bz2 ghdl-e8ffea0c97583b564770e3ace87fa9641983ef64.zip |
add option llvm-6.0 to travis build script
Diffstat (limited to 'dist/travis')
-rwxr-xr-x | dist/travis/build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dist/travis/build.sh b/dist/travis/build.sh index 514b841c9..b7518dc30 100755 --- a/dist/travis/build.sh +++ b/dist/travis/build.sh @@ -123,6 +123,10 @@ case "$BLD" in CXX="clang++-5.0" config_opts="--with-llvm-config=llvm-config-5.0 CXX=$CXX" ;; + llvm-6.0) + CXX="clang++-6.0" + config_opts="--with-llvm-config=llvm-config-6.0 CXX=$CXX" + ;; *) echo "$ANSI_RED[GHDL - build] Unknown build $BLD $ANSI_NOCOLOR" exit 1;; |