aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-05-13 18:30:13 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-05-13 18:30:13 +0000
commit15792b0259ecf494314716cb523be6cd2dd295bc (patch)
tree6b86df084bc13e2c8c145fe77be6d8256db4fee8 /configure
parent7dad18b788dcb7646d776cf388af1a47b8b93ca8 (diff)
downloadexternal_llvm-15792b0259ecf494314716cb523be6cd2dd295bc.zip
external_llvm-15792b0259ecf494314716cb523be6cd2dd295bc.tar.gz
external_llvm-15792b0259ecf494314716cb523be6cd2dd295bc.tar.bz2
Fix the "stacker doesn't build without llvm-gcc" problem. The configure
script was defaulting the LLVMGCC variable to "llvm-gcc" if it couldn't find llvm-gcc and --with-llvmgccdir was not specified. In this case, there is no llvm-gcc available on the system so we shouldn't assume that the user's path will find it any better than configure could. The fix is to default it to an empty string. If LLVMGCC is empty, the makefiles will avoid building things that depend on llvm-gcc and give a nice warning message to that effect. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21953 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 0 insertions, 2 deletions
diff --git a/configure b/configure
index bbe4105cb..9485170 100755
--- a/configure
+++ b/configure
@@ -24648,7 +24648,6 @@ do
done
done
- test -z "$ac_cv_path_LLVMGCC" && ac_cv_path_LLVMGCC="llvm-gcc"
;;
esac
fi
@@ -24688,7 +24687,6 @@ do
done
done
- test -z "$ac_cv_path_LLVMGXX" && ac_cv_path_LLVMGXX="llvm-g++"
;;
esac
fi