mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-02 16:21:36 +00:00
Cleanup configuration for Cygwin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19284 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2f654ba627
commit
38fd88a820
30
projects/sample/autoconf/AutoRegen.sh
Executable file
30
projects/sample/autoconf/AutoRegen.sh
Executable file
@ -0,0 +1,30 @@
|
||||
#!/bin/sh
|
||||
die () {
|
||||
echo "$@" 1>&2
|
||||
exit 1
|
||||
}
|
||||
test -d autoconf && test -f autoconf/configure.ac && cd autoconf
|
||||
test -f configure.ac || die "Can't find 'autoconf' dir; please cd into it first"
|
||||
autoconf --version | egrep '2\.5[0-9]' > /dev/null
|
||||
if test $? -ne 0 ; then
|
||||
die "Your autoconf was not detected as being 2.5x"
|
||||
fi
|
||||
cwd=`pwd`
|
||||
if test -d ../../../autoconf/m4 ; then
|
||||
cd ../../../autoconf/m4
|
||||
llvm_m4=`pwd`
|
||||
cd $cwd
|
||||
elif test -d ../../llvm/autoconf/m4 ; then
|
||||
cd ../../llvm/autoconf/m4
|
||||
llvm_m4=`pwd`
|
||||
cd $cwd
|
||||
else
|
||||
die "Can't find the LLVM autoconf/m4 directory. llvm-test should be checked out to projects directory"
|
||||
fi
|
||||
echo "Regenerating aclocal.m4 with aclocal"
|
||||
rm -f aclocal.m4
|
||||
aclocal -I $cwd/m4 -I $llvm_m4 || die "aclocal failed"
|
||||
echo "Regenerating configure with autoconf 2.5x"
|
||||
autoconf --force --warnings=all -o ../configure configure.ac || die "autoconf failed"
|
||||
cd ..
|
||||
exit 0
|
6169
projects/sample/autoconf/aclocal.m4
vendored
6169
projects/sample/autoconf/aclocal.m4
vendored
File diff suppressed because it is too large
Load Diff
@ -4,10 +4,10 @@ dnl **************************************************************************
|
||||
AC_INIT([[[SAMPLE]]],[[[x.xx]]],[bugs@yourdomain])
|
||||
|
||||
dnl Place all of the extra autoconf files into the config subdirectory
|
||||
AC_CONFIG_AUX_DIR([autoconf])
|
||||
AC_CONFIG_AUX_DIR(autoconf)
|
||||
|
||||
dnl Configure a header file
|
||||
AC_CONFIG_FILES([Makefile.common])
|
||||
AC_CONFIG_FILES(Makefile.common)
|
||||
|
||||
dnl Configure Makefiles
|
||||
dnl List every Makefile that ecists within your source tree
|
||||
@ -54,10 +54,10 @@ dnl * Set the location of various third-party software packages
|
||||
dnl **************************************************************************
|
||||
|
||||
dnl Location of LLVM source code
|
||||
AC_ARG_WITH(llvmsrc,AC_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),AC_SUBST(LLVM_SRC,[$withval]),AC_SUBST(LLVM_SRC,[`cd ${srcdir}/../..; pwd`]))
|
||||
AC_ARG_WITH(llvmsrc,AS_HELP_STRING([--with-llvmsrc],[Location of LLVM Source Code]),AC_SUBST(LLVM_SRC,[$withval]),AC_SUBST(LLVM_SRC,[`cd ${srcdir}/../..; pwd`]))
|
||||
|
||||
dnl Location of LLVM object code
|
||||
AC_ARG_WITH(llvmobj,AC_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),AC_SUBST(LLVM_OBJ,[$withval]),AC_SUBST(LLVM_OBJ,[`cd ../..; pwd`]))
|
||||
AC_ARG_WITH(llvmobj,AS_HELP_STRING([--with-llvmobj],[Location of LLVM Object Code]),AC_SUBST(LLVM_OBJ,[$withval]),AC_SUBST(LLVM_OBJ,[`cd ../..; pwd`]))
|
||||
|
||||
dnl **************************************************************************
|
||||
dnl * Create the output files
|
||||
|
Loading…
x
Reference in New Issue
Block a user