diff options
author | eine <eine@users.noreply.github.com> | 2020-07-24 16:46:06 +0200 |
---|---|---|
committer | eine <eine@users.noreply.github.com> | 2020-07-24 16:46:06 +0200 |
commit | 285ccdbd04eec0d2ddbae0296df5cae089f9739c (patch) | |
tree | 9e3e0e464e8253e9be732528a3161411afc88bd3 | |
parent | 541f64a647587f85373b197609a1f768ea1c847b (diff) | |
download | ghdl-285ccdbd04eec0d2ddbae0296df5cae089f9739c.tar.gz ghdl-285ccdbd04eec0d2ddbae0296df5cae089f9739c.tar.bz2 ghdl-285ccdbd04eec0d2ddbae0296df5cae089f9739c.zip |
ci: fix CXX override, needs to be clang++ (#888)
-rwxr-xr-x | dist/ci-run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/ci-run.sh b/dist/ci-run.sh index 838d97d4e..cd4a2572b 100755 --- a/dist/ci-run.sh +++ b/dist/ci-run.sh @@ -281,7 +281,7 @@ build () { CXX="" ;; llvm) - CXX="clang" + CXX="clang++" CONFIG_OPTS+=" --with-llvm-config CXX=$CXX" ;; llvm-3.5) |