mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
When looking for executable extensions, ignore .dSYM, as that's the debug info directory on Darwin.
llvm-svn: 56667
This commit is contained in:
parent
0d612aad67
commit
4e4fca3dfe
@ -25,7 +25,7 @@ else
|
|||||||
if AC_TRY_EVAL(ac_build_link); then
|
if AC_TRY_EVAL(ac_build_link); then
|
||||||
for file in conftest.*; do
|
for file in conftest.*; do
|
||||||
case $file in
|
case $file in
|
||||||
*.c | *.o | *.obj) ;;
|
*.c | *.o | *.obj | *.dSYM) ;;
|
||||||
*) ac_cv_build_exeext=`echo $file | sed -e s/conftest//` ;;
|
*) ac_cv_build_exeext=`echo $file | sed -e s/conftest//` ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
2
configure
vendored
2
configure
vendored
@ -4545,7 +4545,7 @@ echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
|
|||||||
(exit $ac_status); }; then
|
(exit $ac_status); }; then
|
||||||
for file in conftest.*; do
|
for file in conftest.*; do
|
||||||
case $file in
|
case $file in
|
||||||
*.c | *.o | *.obj) ;;
|
*.c | *.o | *.obj | *.dSYM) ;;
|
||||||
*) ac_cv_build_exeext=`echo $file | sed -e s/conftest//` ;;
|
*) ac_cv_build_exeext=`echo $file | sed -e s/conftest//` ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
Loading…
x
Reference in New Issue
Block a user