mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-20 09:30:43 +00:00
2532fa21a9
- This currently just moves over all of the behavior from LLVM. Eventually all of the configure checks that are directly needed by the LLVM build setup should probably go away, and the project should manage their own configuration checks if necessary. - This is the 1st half of this work, the actual Makefile.common hasn't moved over yet. I've tried to stage this in such a way that incremental builds will properly reconfigure for most active developers (the Makefiles don't handle reconfiguring in a perfectly reliable way, and I haven't found an easy way to make them do so). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142456 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
1.5 KiB
Plaintext
43 lines
1.5 KiB
Plaintext
# Check for the extension used for executables on build platform.
|
|
# This is necessary for cross-compiling where the build platform
|
|
# may differ from the host platform.
|
|
AC_DEFUN([AC_BUILD_EXEEXT],
|
|
[
|
|
AC_MSG_CHECKING([for executable suffix on build platform])
|
|
AC_CACHE_VAL(ac_cv_build_exeext,
|
|
[if test "$CYGWIN" = yes || test "$MINGW32" = yes; then
|
|
ac_cv_build_exeext=.exe
|
|
else
|
|
ac_build_prefix=${build_alias}-
|
|
|
|
AC_CHECK_PROG(BUILD_CC, ${ac_build_prefix}gcc, ${ac_build_prefix}gcc)
|
|
if test -z "$BUILD_CC"; then
|
|
AC_CHECK_PROG(BUILD_CC, gcc, gcc)
|
|
if test -z "$BUILD_CC"; then
|
|
AC_CHECK_PROG(BUILD_CC, cc, cc, , , /usr/ucb/cc)
|
|
fi
|
|
fi
|
|
test -z "$BUILD_CC" && AC_MSG_ERROR([no acceptable cc found in \$PATH])
|
|
ac_build_link='${BUILD_CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&AS_MESSAGE_LOG_FD'
|
|
rm -f conftest*
|
|
echo 'int main () { return 0; }' > conftest.$ac_ext
|
|
ac_cv_build_exeext=
|
|
if AC_TRY_EVAL(ac_build_link); then
|
|
for file in conftest.*; do
|
|
case $file in
|
|
*.c | *.o | *.obj | *.dSYM) ;;
|
|
*) ac_cv_build_exeext=`echo $file | sed -e s/conftest//` ;;
|
|
esac
|
|
done
|
|
else
|
|
AC_MSG_ERROR([installation or configuration problem: compiler cannot create executables.])
|
|
fi
|
|
rm -f conftest*
|
|
test x"${ac_cv_build_exeext}" = x && ac_cv_build_exeext=blank
|
|
fi])
|
|
BUILD_EXEEXT=""
|
|
test x"${ac_cv_build_exeext}" != xblank && BUILD_EXEEXT=${ac_cv_build_exeext}
|
|
AC_MSG_RESULT(${ac_cv_build_exeext})
|
|
ac_build_exeext=$BUILD_EXEEXT
|
|
AC_SUBST(BUILD_EXEEXT)])
|