configure.ac: Move AM_ENABLE_MULTILIB before AC_PROG_CC.
2015-01-26 Matthias Klose <doko@ubuntu.com> * configure.ac: Move AM_ENABLE_MULTILIB before AC_PROG_CC. * configure: Regenerate. From-SVN: r220141
This commit is contained in:
parent
40a778bd51
commit
26570a9b4b
@ -1,3 +1,8 @@
|
|||||||
|
2015-01-26 Matthias Klose <doko@ubuntu.com>
|
||||||
|
|
||||||
|
* configure.ac: Move AM_ENABLE_MULTILIB before AC_PROG_CC.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2014-11-21 H.J. Lu <hongjiu.lu@intel.com>
|
2014-11-21 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
PR bootstrap/63784
|
PR bootstrap/63784
|
||||||
|
105
libcilkrts/configure
vendored
105
libcilkrts/configure
vendored
@ -636,7 +636,6 @@ EGREP
|
|||||||
GREP
|
GREP
|
||||||
CPP
|
CPP
|
||||||
ALLOCA
|
ALLOCA
|
||||||
multi_basedir
|
|
||||||
am__fastdepCXX_FALSE
|
am__fastdepCXX_FALSE
|
||||||
am__fastdepCXX_TRUE
|
am__fastdepCXX_TRUE
|
||||||
CXXDEPMODE
|
CXXDEPMODE
|
||||||
@ -659,6 +658,7 @@ CPPFLAGS
|
|||||||
LDFLAGS
|
LDFLAGS
|
||||||
CFLAGS
|
CFLAGS
|
||||||
CC
|
CC
|
||||||
|
multi_basedir
|
||||||
MAINT
|
MAINT
|
||||||
MAINTAINER_MODE_FALSE
|
MAINTAINER_MODE_FALSE
|
||||||
MAINTAINER_MODE_TRUE
|
MAINTAINER_MODE_TRUE
|
||||||
@ -739,8 +739,8 @@ ac_subst_files=''
|
|||||||
ac_user_opts='
|
ac_user_opts='
|
||||||
enable_option_checking
|
enable_option_checking
|
||||||
enable_maintainer_mode
|
enable_maintainer_mode
|
||||||
enable_dependency_tracking
|
|
||||||
enable_multilib
|
enable_multilib
|
||||||
|
enable_dependency_tracking
|
||||||
enable_version_specific_runtime_libs
|
enable_version_specific_runtime_libs
|
||||||
enable_shared
|
enable_shared
|
||||||
enable_static
|
enable_static
|
||||||
@ -1385,9 +1385,9 @@ Optional Features:
|
|||||||
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
||||||
--enable-maintainer-mode enable make rules and dependencies not useful
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
||||||
(and sometimes confusing) to the casual installer
|
(and sometimes confusing) to the casual installer
|
||||||
|
--enable-multilib build many library versions (default)
|
||||||
--disable-dependency-tracking speeds up one-time build
|
--disable-dependency-tracking speeds up one-time build
|
||||||
--enable-dependency-tracking do not reject slow dependency extractors
|
--enable-dependency-tracking do not reject slow dependency extractors
|
||||||
--enable-multilib build many library versions (default)
|
|
||||||
--enable-version-specific-runtime-libs
|
--enable-version-specific-runtime-libs
|
||||||
Specify that runtime libraries should be installed
|
Specify that runtime libraries should be installed
|
||||||
in a compi ler-specific directory
|
in a compi ler-specific directory
|
||||||
@ -2875,6 +2875,44 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Default to --enable-multilib
|
||||||
|
# Check whether --enable-multilib was given.
|
||||||
|
if test "${enable_multilib+set}" = set; then :
|
||||||
|
enableval=$enable_multilib; case "$enableval" in
|
||||||
|
yes) multilib=yes ;;
|
||||||
|
no) multilib=no ;;
|
||||||
|
*) as_fn_error "bad value $enableval for multilib option" "$LINENO" 5 ;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
multilib=yes
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# We may get other options which we leave undocumented:
|
||||||
|
# --with-target-subdir, --with-multisrctop, --with-multisubdir
|
||||||
|
# See config-ml.in if you want the gory details.
|
||||||
|
|
||||||
|
if test "$srcdir" = "."; then
|
||||||
|
if test "$with_target_subdir" != "."; then
|
||||||
|
multi_basedir="$srcdir/$with_multisrctop../.."
|
||||||
|
else
|
||||||
|
multi_basedir="$srcdir/$with_multisrctop.."
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
multi_basedir="$srcdir/.."
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
# Even if the default multilib is not a cross compilation,
|
||||||
|
# it may be that some of the other multilibs are.
|
||||||
|
if test $cross_compiling = no && test $multilib = yes \
|
||||||
|
&& test "x${with_multisubdir}" != x ; then
|
||||||
|
cross_compiling=maybe
|
||||||
|
fi
|
||||||
|
|
||||||
|
ac_config_commands="$ac_config_commands default-1"
|
||||||
|
|
||||||
|
|
||||||
# Build a DLL on Windows
|
# Build a DLL on Windows
|
||||||
# AC_LIBTOOL_WIN32_DLL
|
# AC_LIBTOOL_WIN32_DLL
|
||||||
ac_ext=c
|
ac_ext=c
|
||||||
@ -4219,43 +4257,6 @@ fi
|
|||||||
# AC_CONFIG_MACRO_DIR([..])
|
# AC_CONFIG_MACRO_DIR([..])
|
||||||
ac_config_files="$ac_config_files Makefile libcilkrts.spec"
|
ac_config_files="$ac_config_files Makefile libcilkrts.spec"
|
||||||
|
|
||||||
# Default to --enable-multilib
|
|
||||||
# Check whether --enable-multilib was given.
|
|
||||||
if test "${enable_multilib+set}" = set; then :
|
|
||||||
enableval=$enable_multilib; case "$enableval" in
|
|
||||||
yes) multilib=yes ;;
|
|
||||||
no) multilib=no ;;
|
|
||||||
*) as_fn_error "bad value $enableval for multilib option" "$LINENO" 5 ;;
|
|
||||||
esac
|
|
||||||
else
|
|
||||||
multilib=yes
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# We may get other options which we leave undocumented:
|
|
||||||
# --with-target-subdir, --with-multisrctop, --with-multisubdir
|
|
||||||
# See config-ml.in if you want the gory details.
|
|
||||||
|
|
||||||
if test "$srcdir" = "."; then
|
|
||||||
if test "$with_target_subdir" != "."; then
|
|
||||||
multi_basedir="$srcdir/$with_multisrctop../.."
|
|
||||||
else
|
|
||||||
multi_basedir="$srcdir/$with_multisrctop.."
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
multi_basedir="$srcdir/.."
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# Even if the default multilib is not a cross compilation,
|
|
||||||
# it may be that some of the other multilibs are.
|
|
||||||
if test $cross_compiling = no && test $multilib = yes \
|
|
||||||
&& test "x${with_multisubdir}" != x ; then
|
|
||||||
cross_compiling=maybe
|
|
||||||
fi
|
|
||||||
|
|
||||||
ac_config_commands="$ac_config_commands default-1"
|
|
||||||
|
|
||||||
|
|
||||||
ac_ext=c
|
ac_ext=c
|
||||||
ac_cpp='$CPP $CPPFLAGS'
|
ac_cpp='$CPP $CPPFLAGS'
|
||||||
@ -11059,7 +11060,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 <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 11062 "configure"
|
#line 11063 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -11165,7 +11166,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 <<_LT_EOF
|
cat > conftest.$ac_ext <<_LT_EOF
|
||||||
#line 11168 "configure"
|
#line 11169 "configure"
|
||||||
#include "confdefs.h"
|
#include "confdefs.h"
|
||||||
|
|
||||||
#if HAVE_DLFCN_H
|
#if HAVE_DLFCN_H
|
||||||
@ -15255,7 +15256,6 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
|||||||
#
|
#
|
||||||
# INIT-COMMANDS
|
# INIT-COMMANDS
|
||||||
#
|
#
|
||||||
AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
|
|
||||||
|
|
||||||
srcdir="$srcdir"
|
srcdir="$srcdir"
|
||||||
host="$host"
|
host="$host"
|
||||||
@ -15270,6 +15270,7 @@ CC="$CC"
|
|||||||
CXX="$CXX"
|
CXX="$CXX"
|
||||||
GFORTRAN="$GFORTRAN"
|
GFORTRAN="$GFORTRAN"
|
||||||
GCJ="$GCJ"
|
GCJ="$GCJ"
|
||||||
|
AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
|
||||||
|
|
||||||
|
|
||||||
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
||||||
@ -15639,10 +15640,10 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|||||||
for ac_config_target in $ac_config_targets
|
for ac_config_target in $ac_config_targets
|
||||||
do
|
do
|
||||||
case $ac_config_target in
|
case $ac_config_target in
|
||||||
|
"default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
|
||||||
"depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
|
"depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;;
|
||||||
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
||||||
"libcilkrts.spec") CONFIG_FILES="$CONFIG_FILES libcilkrts.spec" ;;
|
"libcilkrts.spec") CONFIG_FILES="$CONFIG_FILES libcilkrts.spec" ;;
|
||||||
"default-1") CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
|
|
||||||
"libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
|
"libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
|
||||||
|
|
||||||
*) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
|
*) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
|
||||||
@ -16062,6 +16063,14 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
|
|||||||
|
|
||||||
|
|
||||||
case $ac_file$ac_mode in
|
case $ac_file$ac_mode in
|
||||||
|
"default-1":C)
|
||||||
|
# Only add multilib support code if we just rebuilt the top-level
|
||||||
|
# Makefile.
|
||||||
|
case " $CONFIG_FILES " in
|
||||||
|
*" Makefile "*)
|
||||||
|
ac_file=Makefile . ${multi_basedir}/config-ml.in
|
||||||
|
;;
|
||||||
|
esac ;;
|
||||||
"depfiles":C) test x"$AMDEP_TRUE" != x"" || {
|
"depfiles":C) test x"$AMDEP_TRUE" != x"" || {
|
||||||
# Autoconf 2.62 quotes --file arguments for eval, but not when files
|
# Autoconf 2.62 quotes --file arguments for eval, but not when files
|
||||||
# are listed without --file. Let's play safe and only enable the eval
|
# are listed without --file. Let's play safe and only enable the eval
|
||||||
@ -16157,14 +16166,6 @@ $as_echo X"$file" |
|
|||||||
done
|
done
|
||||||
}
|
}
|
||||||
;;
|
;;
|
||||||
"default-1":C)
|
|
||||||
# Only add multilib support code if we just rebuilt the top-level
|
|
||||||
# Makefile.
|
|
||||||
case " $CONFIG_FILES " in
|
|
||||||
*" Makefile "*)
|
|
||||||
ac_file=Makefile . ${multi_basedir}/config-ml.in
|
|
||||||
;;
|
|
||||||
esac ;;
|
|
||||||
"libtool":C)
|
"libtool":C)
|
||||||
|
|
||||||
# See if we are running on zsh, and set the options which allow our
|
# See if we are running on zsh, and set the options which allow our
|
||||||
|
@ -43,6 +43,8 @@ AM_INIT_AUTOMAKE(foreign no-dist)
|
|||||||
|
|
||||||
AM_MAINTAINER_MODE
|
AM_MAINTAINER_MODE
|
||||||
|
|
||||||
|
AM_ENABLE_MULTILIB(, ..)
|
||||||
|
|
||||||
# Build a DLL on Windows
|
# Build a DLL on Windows
|
||||||
# AC_LIBTOOL_WIN32_DLL
|
# AC_LIBTOOL_WIN32_DLL
|
||||||
AC_PROG_CC
|
AC_PROG_CC
|
||||||
@ -50,7 +52,6 @@ AC_PROG_CXX
|
|||||||
# AC_PROG_LIBTOOL
|
# AC_PROG_LIBTOOL
|
||||||
# AC_CONFIG_MACRO_DIR([..])
|
# AC_CONFIG_MACRO_DIR([..])
|
||||||
AC_CONFIG_FILES([Makefile libcilkrts.spec])
|
AC_CONFIG_FILES([Makefile libcilkrts.spec])
|
||||||
AM_ENABLE_MULTILIB(, ..)
|
|
||||||
AC_FUNC_ALLOCA
|
AC_FUNC_ALLOCA
|
||||||
|
|
||||||
# Check whether the target supports protected visibility.
|
# Check whether the target supports protected visibility.
|
||||||
|
Loading…
Reference in New Issue
Block a user