forked from OSchip/llvm-project
Update to llvm-config tool, by Erik Kidd:
1. Check for Perl and only build llvm-config if its available. 2. Add some virtual components 3. Don't depend on "standard" location for Perl, but configured location 4. Document the tool with a POD file. This version is now ready for testing by users. llvm-svn: 27005
This commit is contained in:
parent
fb39d2a7f7
commit
972bea5c69
|
@ -77,6 +77,10 @@ N: Brad Jones
|
||||||
E: kungfoomaster@nondot.org
|
E: kungfoomaster@nondot.org
|
||||||
D: Support for packed types
|
D: Support for packed types
|
||||||
|
|
||||||
|
N: Eric Kidd
|
||||||
|
W: http://randomhacks.net/
|
||||||
|
D: llvm-config script
|
||||||
|
|
||||||
N: Sumant Kowshik
|
N: Sumant Kowshik
|
||||||
E: kowshik@uiuc.edu
|
E: kowshik@uiuc.edu
|
||||||
D: Author of the original C backend
|
D: Author of the original C backend
|
||||||
|
|
|
@ -137,6 +137,7 @@ TAR := @TAR@
|
||||||
YACC := @YACC@
|
YACC := @YACC@
|
||||||
|
|
||||||
# Paths to miscellaneous programs we hope are present but might not be
|
# Paths to miscellaneous programs we hope are present but might not be
|
||||||
|
PERL := @PERL@
|
||||||
BZIP2 := @BZIP2@
|
BZIP2 := @BZIP2@
|
||||||
DOT := @DOT@
|
DOT := @DOT@
|
||||||
DOXYGEN := @DOXYGEN@
|
DOXYGEN := @DOXYGEN@
|
||||||
|
@ -150,6 +151,8 @@ RUNTEST := @RUNTEST@
|
||||||
TCLSH := @TCLSH@
|
TCLSH := @TCLSH@
|
||||||
ZIP := @ZIP@
|
ZIP := @ZIP@
|
||||||
|
|
||||||
|
HAVE_PERL := @HAVE_PERL@
|
||||||
|
|
||||||
LIBS := @LIBS@
|
LIBS := @LIBS@
|
||||||
|
|
||||||
# Path to location for LLVM C/C++ front-end. You can modify this if you
|
# Path to location for LLVM C/C++ front-end. You can modify this if you
|
||||||
|
@ -195,7 +198,7 @@ ENABLE_DOXYGEN = @ENABLE_DOXYGEN@
|
||||||
#VERBOSE = 1
|
#VERBOSE = 1
|
||||||
|
|
||||||
# Enable JIT for this platform
|
# Enable JIT for this platform
|
||||||
@JIT@
|
TARGET_HAS_JIT = @TARGET_HAS_JIT@
|
||||||
|
|
||||||
# Shared library extension for this platform.
|
# Shared library extension for this platform.
|
||||||
SHLIBEXT = @SHLIBEXT@
|
SHLIBEXT = @SHLIBEXT@
|
||||||
|
|
|
@ -218,13 +218,13 @@ then
|
||||||
AC_SUBST(JIT,[[]])
|
AC_SUBST(JIT,[[]])
|
||||||
else
|
else
|
||||||
case "$llvm_cv_target_arch" in
|
case "$llvm_cv_target_arch" in
|
||||||
x86) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;
|
x86) AC_SUBST(TARGET_HAS_JIT,1) ;;
|
||||||
Sparc) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;
|
Sparc) AC_SUBST(TARGET_HAS_JIT,1) ;;
|
||||||
PowerPC) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;
|
PowerPC) AC_SUBST(TARGET_HAS_JIT,1) ;;
|
||||||
x86_64) AC_SUBST(JIT,[[]]) ;;
|
x86_64) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
Alpha) AC_SUBST(JIT,[[TARGET_HAS_JIT=1]]) ;;
|
Alpha) AC_SUBST(TARGET_HAS_JIT,1) ;;
|
||||||
IA64) AC_SUBST(JIT,[[]]) ;;
|
IA64) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
*) AC_SUBST(JIT,[[]]) ;;
|
*) AC_SUBST(TARGET_HAS_JIT,0) ;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -338,6 +338,15 @@ if test "$GV" != "echo gv" ; then
|
||||||
[Define to path to gv program if found or 'echo gv' otherwise])
|
[Define to path to gv program if found or 'echo gv' otherwise])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
dnl Look for a sufficiently recent version of Perl.
|
||||||
|
LLVM_PROG_PERL([5.006])
|
||||||
|
AC_SUBST(PERL)
|
||||||
|
if test x"$PERL" = xnone; then
|
||||||
|
AC_SUBST(HAVE_PERL,0)
|
||||||
|
else
|
||||||
|
AC_SUBST(HAVE_PERL,1)
|
||||||
|
fi
|
||||||
|
|
||||||
dnl Find the install program
|
dnl Find the install program
|
||||||
AC_PROG_INSTALL
|
AC_PROG_INSTALL
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
dnl Check for a reasonable version of Perl.
|
||||||
|
dnl $1 - Minimum Perl version. Typically 5.006.
|
||||||
|
dnl
|
||||||
|
AC_DEFUN([LLVM_PROG_PERL], [
|
||||||
|
AC_PATH_PROG(PERL, [perl], [none])
|
||||||
|
if test "$PERL" != "none"; then
|
||||||
|
AC_MSG_CHECKING(for Perl $1 or newer)
|
||||||
|
if $PERL -e 'use $1;' 2>&1 > /dev/null; then
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
else
|
||||||
|
PERL=none
|
||||||
|
AC_MSG_RESULT(not found)
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
])
|
||||||
|
|
|
@ -476,7 +476,7 @@ ac_includes_default="\
|
||||||
# include <unistd.h>
|
# include <unistd.h>
|
||||||
#endif"
|
#endif"
|
||||||
|
|
||||||
ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS LLVM_COPYRIGHT subdirs build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os OS LLVM_ON_UNIX LLVM_ON_WIN32 ARCH ENDIAN CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT ENABLE_OPTIMIZED DEBUG_RUNTIME JIT ENABLE_DOXYGEN ENABLE_THREADS TARGETS_TO_BUILD CPP CXX CXXFLAGS ac_ct_CXX LEX LEXLIB LEX_OUTPUT_ROOT FLEX YACC BISON ifGNUmake LN_S CMP CP DATE FIND GREP MKDIR MV RANLIB ac_ct_RANLIB RM SED TAR GRAPHVIZ GV INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA BZIP2 DOT DOXYGEN ETAGS GROFF GZIP POD2HTML POD2MAN RUNTEST TCLSH ZIP EGREP INSTALL_LTDL_TRUE INSTALL_LTDL_FALSE CONVENIENCE_LTDL_TRUE CONVENIENCE_LTDL_FALSE LIBADD_DL ECHO AR ac_ct_AR STRIP ac_ct_STRIP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL ETAGSFLAGS LLVMGCC LLVMGXX ALLOCA MMAP_FILE LLVMCC1 LLVMCC1PLUS LLVMGCCDIR SHLIBEXT LLVM_PREFIX LLVM_BINDIR LLVM_LIBDIR LLVM_DATADIR LLVM_DOCSDIR LLVM_ETCDIR LLVM_INCLUDEDIR LLVM_INFODIR LLVM_MANDIR LLVM_CONFIGTIME LIBOBJS LTLIBOBJS'
|
ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS LLVM_COPYRIGHT subdirs build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os OS LLVM_ON_UNIX LLVM_ON_WIN32 ARCH ENDIAN CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT ENABLE_OPTIMIZED DEBUG_RUNTIME JIT TARGET_HAS_JIT ENABLE_DOXYGEN ENABLE_THREADS TARGETS_TO_BUILD CPP CXX CXXFLAGS ac_ct_CXX LEX LEXLIB LEX_OUTPUT_ROOT FLEX YACC BISON ifGNUmake LN_S CMP CP DATE FIND GREP MKDIR MV RANLIB ac_ct_RANLIB RM SED TAR GRAPHVIZ GV PERL HAVE_PERL INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA BZIP2 DOT DOXYGEN ETAGS GROFF GZIP POD2HTML POD2MAN RUNTEST TCLSH ZIP EGREP INSTALL_LTDL_TRUE INSTALL_LTDL_FALSE CONVENIENCE_LTDL_TRUE CONVENIENCE_LTDL_FALSE LIBADD_DL ECHO AR ac_ct_AR STRIP ac_ct_STRIP CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL ETAGSFLAGS LLVMGCC LLVMGXX ALLOCA MMAP_FILE LLVMCC1 LLVMCC1PLUS LLVMGCCDIR SHLIBEXT LLVM_PREFIX LLVM_BINDIR LLVM_LIBDIR LLVM_DATADIR LLVM_DOCSDIR LLVM_ETCDIR LLVM_INCLUDEDIR LLVM_INFODIR LLVM_MANDIR LLVM_CONFIGTIME LIBOBJS LTLIBOBJS'
|
||||||
ac_subst_files=''
|
ac_subst_files=''
|
||||||
|
|
||||||
# Initialize some variables set by options.
|
# Initialize some variables set by options.
|
||||||
|
@ -3011,19 +3011,19 @@ then
|
||||||
|
|
||||||
else
|
else
|
||||||
case "$llvm_cv_target_arch" in
|
case "$llvm_cv_target_arch" in
|
||||||
x86) JIT=TARGET_HAS_JIT=1
|
x86) TARGET_HAS_JIT=1
|
||||||
;;
|
;;
|
||||||
Sparc) JIT=TARGET_HAS_JIT=1
|
Sparc) TARGET_HAS_JIT=1
|
||||||
;;
|
;;
|
||||||
PowerPC) JIT=TARGET_HAS_JIT=1
|
PowerPC) TARGET_HAS_JIT=1
|
||||||
;;
|
;;
|
||||||
x86_64) JIT=
|
x86_64) TARGET_HAS_JIT=0
|
||||||
;;
|
;;
|
||||||
Alpha) JIT=TARGET_HAS_JIT=1
|
Alpha) TARGET_HAS_JIT=1
|
||||||
;;
|
;;
|
||||||
IA64) JIT=
|
IA64) TARGET_HAS_JIT=0
|
||||||
;;
|
;;
|
||||||
*) JIT=
|
*) TARGET_HAS_JIT=0
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
@ -5202,6 +5202,69 @@ _ACEOF
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Extract the first word of "perl", so it can be a program name with args.
|
||||||
|
set dummy perl; ac_word=$2
|
||||||
|
echo "$as_me:$LINENO: checking for $ac_word" >&5
|
||||||
|
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
|
||||||
|
if test "${ac_cv_path_PERL+set}" = set; then
|
||||||
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||||
|
else
|
||||||
|
case $PERL in
|
||||||
|
[\\/]* | ?:[\\/]*)
|
||||||
|
ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||||
|
for as_dir in $PATH
|
||||||
|
do
|
||||||
|
IFS=$as_save_IFS
|
||||||
|
test -z "$as_dir" && as_dir=.
|
||||||
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
||||||
|
if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||||
|
ac_cv_path_PERL="$as_dir/$ac_word$ac_exec_ext"
|
||||||
|
echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||||
|
break 2
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
test -z "$ac_cv_path_PERL" && ac_cv_path_PERL="none"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
PERL=$ac_cv_path_PERL
|
||||||
|
|
||||||
|
if test -n "$PERL"; then
|
||||||
|
echo "$as_me:$LINENO: result: $PERL" >&5
|
||||||
|
echo "${ECHO_T}$PERL" >&6
|
||||||
|
else
|
||||||
|
echo "$as_me:$LINENO: result: no" >&5
|
||||||
|
echo "${ECHO_T}no" >&6
|
||||||
|
fi
|
||||||
|
|
||||||
|
if test "$PERL" != "none"; then
|
||||||
|
echo "$as_me:$LINENO: checking for Perl 5.006 or newer" >&5
|
||||||
|
echo $ECHO_N "checking for Perl 5.006 or newer... $ECHO_C" >&6
|
||||||
|
if $PERL -e 'use 5.006;' 2>&1 > /dev/null; then
|
||||||
|
echo "$as_me:$LINENO: result: yes" >&5
|
||||||
|
echo "${ECHO_T}yes" >&6
|
||||||
|
else
|
||||||
|
PERL=none
|
||||||
|
echo "$as_me:$LINENO: result: not found" >&5
|
||||||
|
echo "${ECHO_T}not found" >&6
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
if test x"$PERL" = xnone; then
|
||||||
|
HAVE_PERL=0
|
||||||
|
|
||||||
|
else
|
||||||
|
HAVE_PERL=1
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
# Find a good install program. We prefer a C program (faster),
|
# Find a good install program. We prefer a C program (faster),
|
||||||
# so one script is as good as another. But avoid the broken or
|
# so one script is as good as another. But avoid the broken or
|
||||||
# incompatible versions:
|
# incompatible versions:
|
||||||
|
@ -8376,7 +8439,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 8379 "configure"
|
#line 8442 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -10367,7 +10430,7 @@ ia64-*-hpux*)
|
||||||
;;
|
;;
|
||||||
*-*-irix6*)
|
*-*-irix6*)
|
||||||
# Find out which ABI we are using.
|
# Find out which ABI we are using.
|
||||||
echo '#line 10370 "configure"' > conftest.$ac_ext
|
echo '#line 10433 "configure"' > conftest.$ac_ext
|
||||||
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
(eval $ac_compile) 2>&5
|
(eval $ac_compile) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
@ -10852,7 +10915,7 @@ fi
|
||||||
|
|
||||||
|
|
||||||
# Provide some information about the compiler.
|
# Provide some information about the compiler.
|
||||||
echo "$as_me:10855:" \
|
echo "$as_me:10918:" \
|
||||||
"checking for Fortran 77 compiler version" >&5
|
"checking for Fortran 77 compiler version" >&5
|
||||||
ac_compiler=`set X $ac_compile; echo $2`
|
ac_compiler=`set X $ac_compile; echo $2`
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
|
||||||
|
@ -11909,11 +11972,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:11912: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:11975: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>conftest.err)
|
(eval "$lt_compile" 2>conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:11916: \$? = $ac_status" >&5
|
echo "$as_me:11979: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
# So say no if there are warnings
|
# So say no if there are warnings
|
||||||
|
@ -12152,11 +12215,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:12155: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:12218: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>conftest.err)
|
(eval "$lt_compile" 2>conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:12159: \$? = $ac_status" >&5
|
echo "$as_me:12222: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
# So say no if there are warnings
|
# So say no if there are warnings
|
||||||
|
@ -12212,11 +12275,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:12215: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:12278: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>out/conftest.err)
|
(eval "$lt_compile" 2>out/conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat out/conftest.err >&5
|
cat out/conftest.err >&5
|
||||||
echo "$as_me:12219: \$? = $ac_status" >&5
|
echo "$as_me:12282: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
||||||
then
|
then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
|
@ -14397,7 +14460,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 14400 "configure"
|
#line 14463 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -14495,7 +14558,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 14498 "configure"
|
#line 14561 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -16688,11 +16751,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:16691: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:16754: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>conftest.err)
|
(eval "$lt_compile" 2>conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:16695: \$? = $ac_status" >&5
|
echo "$as_me:16758: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
# So say no if there are warnings
|
# So say no if there are warnings
|
||||||
|
@ -16748,11 +16811,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:16751: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:16814: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>out/conftest.err)
|
(eval "$lt_compile" 2>out/conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat out/conftest.err >&5
|
cat out/conftest.err >&5
|
||||||
echo "$as_me:16755: \$? = $ac_status" >&5
|
echo "$as_me:16818: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
||||||
then
|
then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
|
@ -18109,7 +18172,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 18112 "configure"
|
#line 18175 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -18207,7 +18270,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 18210 "configure"
|
#line 18273 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -19044,11 +19107,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:19047: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:19110: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>conftest.err)
|
(eval "$lt_compile" 2>conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:19051: \$? = $ac_status" >&5
|
echo "$as_me:19114: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
# So say no if there are warnings
|
# So say no if there are warnings
|
||||||
|
@ -19104,11 +19167,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:19107: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:19170: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>out/conftest.err)
|
(eval "$lt_compile" 2>out/conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat out/conftest.err >&5
|
cat out/conftest.err >&5
|
||||||
echo "$as_me:19111: \$? = $ac_status" >&5
|
echo "$as_me:19174: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
||||||
then
|
then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
|
@ -21143,11 +21206,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:21146: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:21209: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>conftest.err)
|
(eval "$lt_compile" 2>conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:21150: \$? = $ac_status" >&5
|
echo "$as_me:21213: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
# So say no if there are warnings
|
# So say no if there are warnings
|
||||||
|
@ -21386,11 +21449,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:21389: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:21452: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>conftest.err)
|
(eval "$lt_compile" 2>conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:21393: \$? = $ac_status" >&5
|
echo "$as_me:21456: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s "$ac_outfile"; then
|
if (exit $ac_status) && test -s "$ac_outfile"; then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
# So say no if there are warnings
|
# So say no if there are warnings
|
||||||
|
@ -21446,11 +21509,11 @@ else
|
||||||
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
-e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \
|
||||||
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
-e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \
|
||||||
-e 's:$: $lt_compiler_flag:'`
|
-e 's:$: $lt_compiler_flag:'`
|
||||||
(eval echo "\"\$as_me:21449: $lt_compile\"" >&5)
|
(eval echo "\"\$as_me:21512: $lt_compile\"" >&5)
|
||||||
(eval "$lt_compile" 2>out/conftest.err)
|
(eval "$lt_compile" 2>out/conftest.err)
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
cat out/conftest.err >&5
|
cat out/conftest.err >&5
|
||||||
echo "$as_me:21453: \$? = $ac_status" >&5
|
echo "$as_me:21516: \$? = $ac_status" >&5
|
||||||
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
if (exit $ac_status) && test -s out/conftest2.$ac_objext
|
||||||
then
|
then
|
||||||
# The compiler can only warn and ignore the option if not recognized
|
# The compiler can only warn and ignore the option if not recognized
|
||||||
|
@ -23631,7 +23694,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 23634 "configure"
|
#line 23697 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -23729,7 +23792,7 @@ else
|
||||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||||
lt_status=$lt_dlunknown
|
lt_status=$lt_dlunknown
|
||||||
cat > conftest.$ac_ext <<EOF
|
cat > conftest.$ac_ext <<EOF
|
||||||
#line 23732 "configure"
|
#line 23795 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
|
@ -31451,6 +31514,7 @@ s,@OBJEXT@,$OBJEXT,;t t
|
||||||
s,@ENABLE_OPTIMIZED@,$ENABLE_OPTIMIZED,;t t
|
s,@ENABLE_OPTIMIZED@,$ENABLE_OPTIMIZED,;t t
|
||||||
s,@DEBUG_RUNTIME@,$DEBUG_RUNTIME,;t t
|
s,@DEBUG_RUNTIME@,$DEBUG_RUNTIME,;t t
|
||||||
s,@JIT@,$JIT,;t t
|
s,@JIT@,$JIT,;t t
|
||||||
|
s,@TARGET_HAS_JIT@,$TARGET_HAS_JIT,;t t
|
||||||
s,@ENABLE_DOXYGEN@,$ENABLE_DOXYGEN,;t t
|
s,@ENABLE_DOXYGEN@,$ENABLE_DOXYGEN,;t t
|
||||||
s,@ENABLE_THREADS@,$ENABLE_THREADS,;t t
|
s,@ENABLE_THREADS@,$ENABLE_THREADS,;t t
|
||||||
s,@TARGETS_TO_BUILD@,$TARGETS_TO_BUILD,;t t
|
s,@TARGETS_TO_BUILD@,$TARGETS_TO_BUILD,;t t
|
||||||
|
@ -31480,6 +31544,8 @@ s,@SED@,$SED,;t t
|
||||||
s,@TAR@,$TAR,;t t
|
s,@TAR@,$TAR,;t t
|
||||||
s,@GRAPHVIZ@,$GRAPHVIZ,;t t
|
s,@GRAPHVIZ@,$GRAPHVIZ,;t t
|
||||||
s,@GV@,$GV,;t t
|
s,@GV@,$GV,;t t
|
||||||
|
s,@PERL@,$PERL,;t t
|
||||||
|
s,@HAVE_PERL@,$HAVE_PERL,;t t
|
||||||
s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
|
s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t
|
||||||
s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
|
s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t
|
||||||
s,@INSTALL_DATA@,$INSTALL_DATA,;t t
|
s,@INSTALL_DATA@,$INSTALL_DATA,;t t
|
||||||
|
|
|
@ -17,3 +17,7 @@ EXTRA_DIST = check-each-file codegen-diff countloc.sh cvsupdate emacs \
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.common
|
include $(LEVEL)/Makefile.common
|
||||||
|
|
||||||
|
# Only include llvm-config if we have Perl to build it with.
|
||||||
|
ifeq ($(HAVE_PERL),1)
|
||||||
|
DIRS += llvm-config
|
||||||
|
endif
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
LEVEL = ../..
|
LEVEL = ../..
|
||||||
|
|
||||||
|
EXTRA_DIST = LibDeps.txt llvm-config.in.in find-cycles.pl
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.common
|
include $(LEVEL)/Makefile.common
|
||||||
|
|
||||||
|
@ -32,7 +33,7 @@ LibDeps.txt: $(LEVEL)/utils/GenLibDeps.pl $(LibDir)
|
||||||
# don't have to process them at runtime.
|
# don't have to process them at runtime.
|
||||||
FinalLibDeps.txt: find-cycles.pl # LibDeps.txt deliberately omitted.
|
FinalLibDeps.txt: find-cycles.pl # LibDeps.txt deliberately omitted.
|
||||||
$(Echo) "Finding cyclic dependencies between LLVM libraries."
|
$(Echo) "Finding cyclic dependencies between LLVM libraries."
|
||||||
$(Verb) $< < $(PROJ_SRC_DIR)/LibDeps.txt > $@
|
$(Verb) $(PERL) $< < $(PROJ_SRC_DIR)/LibDeps.txt > $@
|
||||||
|
|
||||||
# Rerun our configure substitutions as needed.
|
# Rerun our configure substitutions as needed.
|
||||||
llvm-config.in: llvm-config.in.in $(ConfigStatusScript)
|
llvm-config.in: llvm-config.in.in $(ConfigStatusScript)
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
# This file was written by Eric Kidd, and is placed into the public domain.
|
# This file was written by Eric Kidd, and is placed into the public domain.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
use 5.006;
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#!/usr/bin/perl
|
#!@PERL@
|
||||||
#
|
#
|
||||||
# Program: llvm-config
|
# Program: llvm-config
|
||||||
#
|
#
|
||||||
|
@ -10,6 +10,7 @@
|
||||||
# This file was written by Eric Kidd, and is placed into the public domain.
|
# This file was written by Eric Kidd, and is placed into the public domain.
|
||||||
#
|
#
|
||||||
|
|
||||||
|
use 5.006;
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
|
@ -20,6 +21,7 @@ my $BINDIR = q{@LLVM_BINDIR@};
|
||||||
my $INCLUDEDIR = q{@LLVM_INCLUDEDIR@};
|
my $INCLUDEDIR = q{@LLVM_INCLUDEDIR@};
|
||||||
my $LIBDIR = q{@LLVM_LIBDIR@};
|
my $LIBDIR = q{@LLVM_LIBDIR@};
|
||||||
my $ARCH = lc(q{@ARCH@});
|
my $ARCH = lc(q{@ARCH@});
|
||||||
|
my $TARGET_HAS_JIT = q{@TARGET_HAS_JIT@};
|
||||||
my @TARGETS_BUILT = map { lc($_) } qw{@TARGETS_TO_BUILD@};
|
my @TARGETS_BUILT = map { lc($_) } qw{@TARGETS_TO_BUILD@};
|
||||||
#---- end autoconf values ----
|
#---- end autoconf values ----
|
||||||
|
|
||||||
|
@ -106,7 +108,7 @@ Get various configuration information needed to compile programs which use
|
||||||
LLVM. Typically called from 'configure' scripts. Examples:
|
LLVM. Typically called from 'configure' scripts. Examples:
|
||||||
llvm-config --cxxflags
|
llvm-config --cxxflags
|
||||||
llvm-config --ldflags
|
llvm-config --ldflags
|
||||||
llvm-config --libs jitplus
|
llvm-config --libs engine bcreader scalaropts
|
||||||
|
|
||||||
Options:
|
Options:
|
||||||
--version LLVM version.
|
--version LLVM version.
|
||||||
|
@ -122,8 +124,8 @@ Options:
|
||||||
--targets-built List of all targets currently built.
|
--targets-built List of all targets currently built.
|
||||||
Typical components:
|
Typical components:
|
||||||
all All LLVM libraries (default).
|
all All LLVM libraries (default).
|
||||||
native A native-code backend for this platform, if any.
|
backend Either a native backend or the C backend.
|
||||||
jitplus All libraries needed to use the LLVM JIT examples.
|
engine Either a native JIT or a bytecode interpreter.
|
||||||
__EOD__
|
__EOD__
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
@ -163,7 +165,8 @@ sub fix_library_names (@) {
|
||||||
|
|
||||||
sub load_dependencies;
|
sub load_dependencies;
|
||||||
sub build_name_map;
|
sub build_name_map;
|
||||||
sub find_native_platform;
|
sub have_native_backend;
|
||||||
|
sub find_best_engine;
|
||||||
sub expand_names (@);
|
sub expand_names (@);
|
||||||
sub find_all_required_sets (@);
|
sub find_all_required_sets (@);
|
||||||
sub find_all_required_sets_helper ($$@);
|
sub find_all_required_sets_helper ($$@);
|
||||||
|
@ -231,19 +234,29 @@ sub build_name_map {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Add virtual entries.
|
# Add virtual entries.
|
||||||
$NAME_MAP{'native'} = find_native_platform;
|
$NAME_MAP{'native'} = have_native_backend() ? [$ARCH] : [];
|
||||||
$NAME_MAP{'jitplus'} = ['native', 'jit', 'bcreader', 'scalaropts'];
|
$NAME_MAP{'backend'} = have_native_backend() ? ['native'] : ['cbackend'];
|
||||||
$NAME_MAP{'all'} = [name_map_entries]; # Must be last.
|
$NAME_MAP{'engine'} = find_best_engine;
|
||||||
|
$NAME_MAP{'all'} = [name_map_entries]; # Must be last.
|
||||||
}
|
}
|
||||||
|
|
||||||
# Figure our what native platform we should use, if any.
|
# Return true if we have a native backend to use.
|
||||||
sub find_native_platform {
|
sub have_native_backend {
|
||||||
my %BUILT;
|
my %BUILT;
|
||||||
foreach my $target (@TARGETS_BUILT) { $BUILT{$target} = 1; }
|
foreach my $target (@TARGETS_BUILT) { $BUILT{$target} = 1; }
|
||||||
if (defined $NAME_MAP{$ARCH} && defined $BUILT{$ARCH}) {
|
return defined $NAME_MAP{$ARCH} && defined $BUILT{$ARCH};
|
||||||
return [$ARCH];
|
}
|
||||||
|
|
||||||
|
# Find a working subclass of ExecutionEngine for this platform.
|
||||||
|
sub find_best_engine {
|
||||||
|
if (have_native_backend && $TARGET_HAS_JIT) {
|
||||||
|
# XXX - Right now, if we omit the interpreter, we get a linker
|
||||||
|
# error complaining about
|
||||||
|
# __ZN4llvm11Interpreter6createEPNS_6ModuleEPNS_17IntrinsicLoweringE.
|
||||||
|
# This needs investigation.
|
||||||
|
return ['jit', 'native', 'interpreter'];
|
||||||
} else {
|
} else {
|
||||||
return [];
|
return ['interpreter'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue