mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
For PR784:
Support Win32 platforms for llvm-gcc path. Patch by Anton Korobeynikov llvm-svn: 28426
This commit is contained in:
parent
52fde7f5ce
commit
f628e4e774
@ -320,7 +320,7 @@ AC_ARG_WITH(llvmgccdir,
|
||||
withval=default)
|
||||
case "$withval" in
|
||||
default) WITH_LLVMGCCDIR=default ;;
|
||||
/*) WITH_LLVMGCCDIR=$withval ;;
|
||||
/* | [[A-Za-z]]:[[\\/]]*) WITH_LLVMGCCDIR=$withval ;;
|
||||
*) AC_MSG_ERROR([Invalid path for --with-llvmgccdir. Provide full path]) ;;
|
||||
esac
|
||||
|
||||
|
2
configure
vendored
2
configure
vendored
@ -3150,7 +3150,7 @@ else
|
||||
fi;
|
||||
case "$withval" in
|
||||
default) WITH_LLVMGCCDIR=default ;;
|
||||
/*) WITH_LLVMGCCDIR=$withval ;;
|
||||
/* | [A-Za-z]:[\\/]*) WITH_LLVMGCCDIR=$withval ;;
|
||||
*) { { echo "$as_me:$LINENO: error: Invalid path for --with-llvmgccdir. Provide full path" >&5
|
||||
echo "$as_me: error: Invalid path for --with-llvmgccdir. Provide full path" >&2;}
|
||||
{ (exit 1); exit 1; }; } ;;
|
||||
|
Loading…
Reference in New Issue
Block a user