mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-27 00:21:03 +00:00
fix typo
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:
@@ -838,7 +838,7 @@ AC_ARG_WITH(gcc-toolchain,
|
|||||||
AC_DEFINE_UNQUOTED(GCC_INSTALL_PREFIX,"$withval",
|
AC_DEFINE_UNQUOTED(GCC_INSTALL_PREFIX,"$withval",
|
||||||
[Directory where gcc is installed.])
|
[Directory where gcc is installed.])
|
||||||
|
|
||||||
AC_ARG_WITH(sysroot,
|
AC_ARG_WITH(default-sysroot,
|
||||||
AS_HELP_STRING([--with-default-sysroot],
|
AS_HELP_STRING([--with-default-sysroot],
|
||||||
[Add --sysroot=<path> to all compiler invocations.]),,
|
[Add --sysroot=<path> to all compiler invocations.]),,
|
||||||
withval="")
|
withval="")
|
||||||
|
6
configure
vendored
6
configure
vendored
@@ -5584,9 +5584,9 @@ _ACEOF
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Check whether --with-sysroot was given.
|
# Check whether --with-default-sysroot was given.
|
||||||
if test "${with_sysroot+set}" = set; then
|
if test "${with_default_sysroot+set}" = set; then
|
||||||
withval=$with_sysroot;
|
withval=$with_default_sysroot;
|
||||||
else
|
else
|
||||||
withval=""
|
withval=""
|
||||||
fi
|
fi
|
||||||
|
Reference in New Issue
Block a user