diff options
author | Gabor Greif <ggreif@gmail.com> | 2019-12-24 09:44:42 -0500 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2019-12-24 09:44:42 -0500 |
commit | 7cfb9baf6c473edddb4d903d43f74df0d0b86fbe (patch) | |
tree | 7bb5bcd3c44de8cd48e04c16256830f681ea3567 | |
parent | 40327b037f7115f7b05cc0265acb787671bea294 (diff) | |
download | haskell-wip/ggreif-CcLlvmBackend.tar.gz |
use shell variable CcLlvmBackend for testwip/ggreif-CcLlvmBackend
Previously we used `AC_DEFINE`d variable `CC_LLVM_BACKEND` which has an empty shell expansion.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 8d6ceb9e65..a11af9f92d 100644 --- a/configure.ac +++ b/configure.ac @@ -1404,7 +1404,7 @@ echo "\ which is version : $GhcVersion " -if test "x$CC_LLVM_BACKEND" = "x1"; then +if test "x$CcLlvmBackend" = "xYES"; then CompilerName="clang " else CompilerName="gcc " |