Thanks to "Gabor Greif" <ggreif@gmail.com> for reporting this problem.

The configure flag should be --with-default-sysroot as documented, and
not --with-sysroot.  The reason we don't want to define --with-sysroot
is that GCC has a configure flag by that name and it has a different
semantics.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155844 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Sebastian Pop
2012-04-30 20:06:58 +00:00
parent 1701105022
commit e4f1b370bf
2 changed files with 4 additions and 4 deletions

6
configure vendored
View File

@@ -5584,9 +5584,9 @@ _ACEOF
# Check whether --with-sysroot was given.
if test "${with_sysroot+set}" = set; then
withval=$with_sysroot;
# Check whether --with-default-sysroot was given.
if test "${with_default_sysroot+set}" = set; then
withval=$with_default_sysroot;
else
withval=""
fi