mirror of git://gcc.gnu.org/git/gcc.git
Makefile.in (BUILD_CPPFLAGS): Do not use ALL_CPPFLAGS.
* Makefile.in (BUILD_CPPFLAGS): Do not use ALL_CPPFLAGS. * configure.ac <recursive call for build != host>: Define GENERATOR_FILE. Comment. Use CXX_FOR_BUILD, CXXFLAGS_FOR_BUILD and LD_FOR_BUILD too. * configure: Regenerate. From-SVN: r207171
This commit is contained in:
parent
63a18c8e46
commit
2ceb362d0a
|
|
@ -1,3 +1,11 @@
|
|||
2014-01-28 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* Makefile.in (BUILD_CPPFLAGS): Do not use ALL_CPPFLAGS.
|
||||
* configure.ac <recursive call for build != host>: Define
|
||||
GENERATOR_FILE. Comment. Use CXX_FOR_BUILD, CXXFLAGS_FOR_BUILD
|
||||
and LD_FOR_BUILD too.
|
||||
* configure: Regenerate.
|
||||
|
||||
2014-01-27 Allan Sandfeld Jensen <sandfeld@kde.org>
|
||||
|
||||
* config/i386/i386.c (get_builtin_code_for_version): Separate
|
||||
|
|
|
|||
|
|
@ -761,7 +761,8 @@ BUILD_LINKERFLAGS = $(BUILD_CXXFLAGS)
|
|||
|
||||
# Native linker and preprocessor flags. For x-fragment overrides.
|
||||
BUILD_LDFLAGS=@BUILD_LDFLAGS@
|
||||
BUILD_CPPFLAGS=$(ALL_CPPFLAGS)
|
||||
BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
|
||||
-I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS)
|
||||
|
||||
# Actual name to use when installing a native compiler.
|
||||
GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
|
||||
|
|
|
|||
|
|
@ -11287,8 +11287,13 @@ else
|
|||
/* | A-Za-z:\\/* ) realsrcdir=${srcdir};;
|
||||
*) realsrcdir=../${srcdir};;
|
||||
esac
|
||||
# Clearing GMPINC is necessary to prevent host headers being
|
||||
# used by the build compiler. Defining GENERATOR_FILE stops
|
||||
# system.h from including gmp.h.
|
||||
CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
|
||||
LDFLAGS="${LDFLAGS_FOR_BUILD}" GMPINC="" \
|
||||
CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
|
||||
LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
|
||||
GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
|
||||
${realsrcdir}/configure \
|
||||
--enable-languages=${enable_languages-all} \
|
||||
--target=$target_alias --host=$build_alias --build=$build_alias
|
||||
|
|
@ -17918,7 +17923,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 17921 "configure"
|
||||
#line 17926 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
@ -18024,7 +18029,7 @@ else
|
|||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 18027 "configure"
|
||||
#line 18032 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
|
|
|
|||
|
|
@ -1529,8 +1529,13 @@ else
|
|||
/* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
|
||||
*) realsrcdir=../${srcdir};;
|
||||
esac
|
||||
# Clearing GMPINC is necessary to prevent host headers being
|
||||
# used by the build compiler. Defining GENERATOR_FILE stops
|
||||
# system.h from including gmp.h.
|
||||
CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
|
||||
LDFLAGS="${LDFLAGS_FOR_BUILD}" GMPINC="" \
|
||||
CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
|
||||
LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
|
||||
GMPINC="" CPPFLAGS="${CPPFLAGS} -DGENERATOR_FILE" \
|
||||
${realsrcdir}/configure \
|
||||
--enable-languages=${enable_languages-all} \
|
||||
--target=$target_alias --host=$build_alias --build=$build_alias
|
||||
|
|
|
|||
Loading…
Reference in New Issue