mirror of git://gcc.gnu.org/git/gcc.git
configure.ac: Add --enable-build-with-cxx.
./: * configure.ac: Add --enable-build-with-cxx. When set, add c++ to boot_languages. Only bootstrap target libraries listed in target_libs for some boot language. Add --with-stage1-ldflags, --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions if not building with C++. * Makefile.def: For target_module libstdc++-v3, set bootstrap=true. * Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables. (POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables. (HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS. (POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS. (POSTSTAGE1_FLAGS_TO_PASS): Likewise. * configure, Makefile.in: Rebuild. gcc/: * configure.ac: Invoke AC_PROG_CXX. Separate C specific warnings from loose_warn into c_loose_warn and from strict_warn into c_strict_warn. Set and substitute warn_cxxflags. Check for --enable-build-with-cxx. Set and substitute ENABLE_BUILD_WITH_CXX. Set and substitute HOST_LIBS. * Makefile.in (CXXFLAGS): New variable. (C_LOOSE_WARN, C_STRICT_WARN): New variables. (GCC_WARN_CFLAGS): Add $(C_LOOSE_WARN). Add $(C_STRICT_WARN) if the default is the same as $(STRICT_WARN). (GCC_WARN_CXXFLAGS, WARN_CXXFLAGS): New variables. (CXX): New variable. (COMPILER): New value if ENABLE_BUILD_WITH_CXX. (COMPILER_FLAGS, LINKER, LINKER_FLAGS): Likewise. (ALL_COMPILERFLAGS, ALL_LINKERFLAGS): Likewise. (HOST_LIBS): New variable. (GCC_CFLAGS): Add $(C_LOOSE_WARN). (ALL_CXXFLAGS): New variable. (LIBS, BACKENDLIBS): Add $(HOST_LIBS). * doc/install.texi (Configuration): Document --enable-build-with-cxx, --with-stage1-ldflags, --with-stage1-libs, --with-boot-ldflags, --with-boot-libs. * configure: Rebuild. From-SVN: r148889
This commit is contained in:
parent
9006a16179
commit
00020c1638
17
ChangeLog
17
ChangeLog
|
|
@ -1,3 +1,20 @@
|
|||
2009-06-23 Ian Lance Taylor <iant@google.com>
|
||||
|
||||
* configure.ac: Add --enable-build-with-cxx. When set, add c++ to
|
||||
boot_languages. Only bootstrap target libraries listed in
|
||||
target_libs for some boot language. Add --with-stage1-ldflags,
|
||||
--with-stage1-libs, --with-boot-ldflags, --with-boot-libs. Remove
|
||||
with_host_libstdcxx from ppllibs. Only add -fkeep-inline-functions
|
||||
if not building with C++.
|
||||
* Makefile.def: For target_module libstdc++-v3, set bootstrap=true.
|
||||
* Makefile.tpl (STAGE1_LDFLAGS, STAGE1_LIBS): New variables.
|
||||
(POSTSTAGE1_LDFLAGS, POSTSTAGE1_LIBS): New variables.
|
||||
(HOST_EXPORTS): Add STAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
|
||||
(POSTSTAGE1_HOST_EXPORTS): Set CXX and CXX_FOR_BUILD. Add
|
||||
POSTSTAGE1_LDFLAGS to LDFLAGS. Export HOST_LIBS.
|
||||
(POSTSTAGE1_FLAGS_TO_PASS): Likewise.
|
||||
* configure, Makefile.in: Rebuild.
|
||||
|
||||
2009-06-23 Li Feng <nemokingdom@gmail.com>
|
||||
|
||||
* MAINTAINERS: Added my name to write-after-approval list.
|
||||
|
|
|
|||
|
|
@ -141,7 +141,10 @@ host_modules= { module= libtermcap; no_check=true;
|
|||
host_modules= { module= utils; no_check=true; };
|
||||
host_modules= { module= gnattools; };
|
||||
|
||||
target_modules = { module= libstdc++-v3; lib_path=.libs; raw_cxx=true; };
|
||||
target_modules = { module= libstdc++-v3;
|
||||
bootstrap=true;
|
||||
lib_path=.libs;
|
||||
raw_cxx=true; };
|
||||
target_modules = { module= libmudflap; lib_path=.libs; };
|
||||
target_modules = { module= libssp; lib_path=.libs; };
|
||||
target_modules = { module= newlib; };
|
||||
|
|
|
|||
580
Makefile.in
580
Makefile.in
|
|
@ -117,6 +117,19 @@ BUILD_SUBDIR = @build_subdir@
|
|||
# directories built for the build system.
|
||||
BUILD_CONFIGARGS = @build_configargs@ --with-build-subdir="$(BUILD_SUBDIR)"
|
||||
|
||||
# Linker flags to use on the host, for stage1 or when not
|
||||
# bootstrapping.
|
||||
STAGE1_LDFLAGS = @stage1_ldflags@
|
||||
|
||||
# Libraries to use on the host, for stage1 or when not bootstrapping.
|
||||
STAGE1_LIBS = @stage1_libs@
|
||||
|
||||
# Linker flags to use for stage2 and later.
|
||||
POSTSTAGE1_LDFLAGS = @poststage1_ldflags@
|
||||
|
||||
# Libraries to use for stage2 and later.
|
||||
POSTSTAGE1_LIBS = @poststage1_libs@
|
||||
|
||||
# This is the list of variables to export in the environment when
|
||||
# configuring any subdirectory. It must also be exported whenever
|
||||
# recursing into a build directory in case that directory's Makefile
|
||||
|
|
@ -182,7 +195,7 @@ HOST_EXPORTS = \
|
|||
CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \
|
||||
DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \
|
||||
LD="$(LD)"; export LD; \
|
||||
LDFLAGS="$(LDFLAGS)"; export LDFLAGS; \
|
||||
LDFLAGS="$(STAGE1_LDFLAGS) $(LDFLAGS)"; export LDFLAGS; \
|
||||
NM="$(NM)"; export NM; \
|
||||
RANLIB="$(RANLIB)"; export RANLIB; \
|
||||
WINDRES="$(WINDRES)"; export WINDRES; \
|
||||
|
|
@ -197,6 +210,7 @@ HOST_EXPORTS = \
|
|||
OBJDUMP_FOR_TARGET="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP_FOR_TARGET; \
|
||||
RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)"; export RANLIB_FOR_TARGET; \
|
||||
TOPLEVEL_CONFIGURE_ARGUMENTS="$(TOPLEVEL_CONFIGURE_ARGUMENTS)"; export TOPLEVEL_CONFIGURE_ARGUMENTS; \
|
||||
HOST_LIBS="$(STAGE1_LIBS)"; export HOST_LIBS; \
|
||||
GMPLIBS="$(HOST_GMPLIBS)"; export GMPLIBS; \
|
||||
GMPINC="$(HOST_GMPINC)"; export GMPINC; \
|
||||
PPLLIBS="$(HOST_PPLLIBS)"; export PPLLIBS; \
|
||||
|
|
@ -215,8 +229,16 @@ POSTSTAGE1_HOST_EXPORTS = \
|
|||
-B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/ \
|
||||
$(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CC; \
|
||||
CC_FOR_BUILD="$$CC"; export CC_FOR_BUILD; \
|
||||
GNATBIND="$$r/$(HOST_SUBDIR)/prev-gcc/gnatbind"; export GNATBIND \
|
||||
LDFLAGS="$(BOOT_LDFLAGS)"; export LDFLAGS;
|
||||
CXX="$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/prev-gcc/g++$(exeext) \
|
||||
-B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/ -nostdinc++ \
|
||||
-I$$r/prev-$(TARGET_SUBDIR)/libstdc++-v3/include/$(TARGET_SUBDIR) \
|
||||
-I$$r/prev-$(TARGET_SUBDIR)/libstdc++-v3/include \
|
||||
-I$$r/$(srcdir)/libstdc++-v3/libsupc++ \
|
||||
-L$$r/prev-$(TARGET_SUBDIR)/libstdc++-v3/src/.libs"; export CXX; \
|
||||
CXX_FOR_BUILD="$$CXX"; export CXX_FOR_BUILD; \
|
||||
GNATBIND="$$r/$(HOST_SUBDIR)/prev-gcc/gnatbind"; export GNATBIND; \
|
||||
LDFLAGS="$(POSTSTAGE1_LDFLAGS) $(BOOT_LDFLAGS)"; export LDFLAGS; \
|
||||
HOST_LIBS="$(POSTSTAGE1_LIBS)"; export HOST_LIBS;
|
||||
|
||||
# Target libraries are put under this directory:
|
||||
TARGET_SUBDIR = @target_subdir@
|
||||
|
|
@ -690,8 +712,11 @@ X11_FLAGS_TO_PASS = \
|
|||
# Flags to pass to stage2 and later makes.
|
||||
|
||||
POSTSTAGE1_FLAGS_TO_PASS = \
|
||||
CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" GNATBIND="$${GNATBIND}" \
|
||||
LDFLAGS="$(BOOT_LDFLAGS)" \
|
||||
CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" \
|
||||
CXX="$${CXX}" CXX_FOR_BUILD="$${CXX_FOR_BUILD}" \
|
||||
GNATBIND="$${GNATBIND}" \
|
||||
LDFLAGS="$(POSTSTAGE1_LDFLAGS) $(BOOT_LDFLAGS)" \
|
||||
HOST_LIBS="$(POSTSTAGE1_LIBS)" \
|
||||
"`echo 'ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
|
||||
|
||||
# Flags to pass down to makes which are built with the target environment.
|
||||
|
|
@ -996,7 +1021,9 @@ all-host: maybe-all-gnattools
|
|||
|
||||
.PHONY: all-target
|
||||
|
||||
@if target-libstdc++-v3-no-bootstrap
|
||||
all-target: maybe-all-target-libstdc++-v3
|
||||
@endif target-libstdc++-v3-no-bootstrap
|
||||
all-target: maybe-all-target-libmudflap
|
||||
all-target: maybe-all-target-libssp
|
||||
all-target: maybe-all-target-newlib
|
||||
|
|
@ -42509,7 +42536,6 @@ configure-target-libstdc++-v3: stage_current
|
|||
@if target-libstdc++-v3
|
||||
maybe-configure-target-libstdc++-v3: configure-target-libstdc++-v3
|
||||
configure-target-libstdc++-v3:
|
||||
@: $(MAKE); $(unstage)
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
echo "Checking multilib configuration for libstdc++-v3..."; \
|
||||
|
|
@ -42546,6 +42572,276 @@ configure-target-libstdc++-v3:
|
|||
|
||||
|
||||
|
||||
.PHONY: configure-stage1-target-libstdc++-v3 maybe-configure-stage1-target-libstdc++-v3
|
||||
maybe-configure-stage1-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-configure-stage1-target-libstdc++-v3: configure-stage1-target-libstdc++-v3
|
||||
configure-stage1-target-libstdc++-v3:
|
||||
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
||||
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGE1_TFLAGS)"; \
|
||||
echo "Checking multilib configuration for libstdc++-v3..."; \
|
||||
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
||||
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
||||
else \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
else \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
||||
echo Configuring stage 1 in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
||||
case $(srcdir) in \
|
||||
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
||||
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
||||
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
||||
esac; \
|
||||
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
||||
libsrcdir="$$s/libstdc++-v3"; \
|
||||
$(SHELL) $${libsrcdir}/configure \
|
||||
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
||||
--target=${target_alias} $${srcdiroption} \
|
||||
$(STAGE1_CONFIGURE_FLAGS)
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
.PHONY: configure-stage2-target-libstdc++-v3 maybe-configure-stage2-target-libstdc++-v3
|
||||
maybe-configure-stage2-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-configure-stage2-target-libstdc++-v3: configure-stage2-target-libstdc++-v3
|
||||
configure-stage2-target-libstdc++-v3:
|
||||
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
||||
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGE2_TFLAGS)"; \
|
||||
echo "Checking multilib configuration for libstdc++-v3..."; \
|
||||
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
||||
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
||||
else \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
else \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
||||
echo Configuring stage 2 in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
||||
case $(srcdir) in \
|
||||
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
||||
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
||||
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
||||
esac; \
|
||||
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
||||
libsrcdir="$$s/libstdc++-v3"; \
|
||||
$(SHELL) $${libsrcdir}/configure \
|
||||
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
||||
--target=${target_alias} $${srcdiroption} \
|
||||
--with-build-libsubdir=$(HOST_SUBDIR) \
|
||||
$(STAGE2_CONFIGURE_FLAGS)
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
.PHONY: configure-stage3-target-libstdc++-v3 maybe-configure-stage3-target-libstdc++-v3
|
||||
maybe-configure-stage3-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-configure-stage3-target-libstdc++-v3: configure-stage3-target-libstdc++-v3
|
||||
configure-stage3-target-libstdc++-v3:
|
||||
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
||||
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGE3_TFLAGS)"; \
|
||||
echo "Checking multilib configuration for libstdc++-v3..."; \
|
||||
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
||||
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
||||
else \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
else \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
||||
echo Configuring stage 3 in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
||||
case $(srcdir) in \
|
||||
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
||||
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
||||
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
||||
esac; \
|
||||
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
||||
libsrcdir="$$s/libstdc++-v3"; \
|
||||
$(SHELL) $${libsrcdir}/configure \
|
||||
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
||||
--target=${target_alias} $${srcdiroption} \
|
||||
--with-build-libsubdir=$(HOST_SUBDIR) \
|
||||
$(STAGE3_CONFIGURE_FLAGS)
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
.PHONY: configure-stage4-target-libstdc++-v3 maybe-configure-stage4-target-libstdc++-v3
|
||||
maybe-configure-stage4-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-configure-stage4-target-libstdc++-v3: configure-stage4-target-libstdc++-v3
|
||||
configure-stage4-target-libstdc++-v3:
|
||||
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
||||
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGE4_TFLAGS)"; \
|
||||
echo "Checking multilib configuration for libstdc++-v3..."; \
|
||||
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
||||
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
||||
else \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
else \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
||||
echo Configuring stage 4 in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
||||
case $(srcdir) in \
|
||||
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
||||
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
||||
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
||||
esac; \
|
||||
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
||||
libsrcdir="$$s/libstdc++-v3"; \
|
||||
$(SHELL) $${libsrcdir}/configure \
|
||||
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
||||
--target=${target_alias} $${srcdiroption} \
|
||||
--with-build-libsubdir=$(HOST_SUBDIR) \
|
||||
$(STAGE4_CONFIGURE_FLAGS)
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
.PHONY: configure-stageprofile-target-libstdc++-v3 maybe-configure-stageprofile-target-libstdc++-v3
|
||||
maybe-configure-stageprofile-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-configure-stageprofile-target-libstdc++-v3: configure-stageprofile-target-libstdc++-v3
|
||||
configure-stageprofile-target-libstdc++-v3:
|
||||
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
||||
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
||||
echo "Checking multilib configuration for libstdc++-v3..."; \
|
||||
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
||||
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
||||
else \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
else \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
||||
echo Configuring stage profile in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
||||
case $(srcdir) in \
|
||||
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
||||
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
||||
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
||||
esac; \
|
||||
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
||||
libsrcdir="$$s/libstdc++-v3"; \
|
||||
$(SHELL) $${libsrcdir}/configure \
|
||||
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
||||
--target=${target_alias} $${srcdiroption} \
|
||||
--with-build-libsubdir=$(HOST_SUBDIR) \
|
||||
$(STAGEprofile_CONFIGURE_FLAGS)
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
.PHONY: configure-stagefeedback-target-libstdc++-v3 maybe-configure-stagefeedback-target-libstdc++-v3
|
||||
maybe-configure-stagefeedback-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-configure-stagefeedback-target-libstdc++-v3: configure-stagefeedback-target-libstdc++-v3
|
||||
configure-stagefeedback-target-libstdc++-v3:
|
||||
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
||||
@$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
||||
echo "Checking multilib configuration for libstdc++-v3..."; \
|
||||
$(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp 2> /dev/null ; \
|
||||
if test -r $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
if cmp -s $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; then \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp; \
|
||||
else \
|
||||
rm -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile; \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
else \
|
||||
mv $(TARGET_SUBDIR)/libstdc++-v3/multilib.tmp $(TARGET_SUBDIR)/libstdc++-v3/multilib.out; \
|
||||
fi; \
|
||||
test ! -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile || exit 0; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)"; export LIBCFLAGS; \
|
||||
echo Configuring stage feedback in $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
$(SHELL) $(srcdir)/mkinstalldirs $(TARGET_SUBDIR)/libstdc++-v3 ; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 || exit 1; \
|
||||
case $(srcdir) in \
|
||||
/* | [A-Za-z]:[\\/]*) topdir=$(srcdir) ;; \
|
||||
*) topdir=`echo $(TARGET_SUBDIR)/libstdc++-v3/ | \
|
||||
sed -e 's,\./,,g' -e 's,[^/]*/,../,g' `$(srcdir) ;; \
|
||||
esac; \
|
||||
srcdiroption="--srcdir=$${topdir}/libstdc++-v3"; \
|
||||
libsrcdir="$$s/libstdc++-v3"; \
|
||||
$(SHELL) $${libsrcdir}/configure \
|
||||
$(TARGET_CONFIGARGS) --build=${build_alias} --host=${target_alias} \
|
||||
--target=${target_alias} $${srcdiroption} \
|
||||
--with-build-libsubdir=$(HOST_SUBDIR) \
|
||||
$(STAGEfeedback_CONFIGURE_FLAGS)
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.PHONY: all-target-libstdc++-v3 maybe-all-target-libstdc++-v3
|
||||
|
|
@ -42557,7 +42853,6 @@ all-target-libstdc++-v3: stage_current
|
|||
TARGET-target-libstdc++-v3=all
|
||||
maybe-all-target-libstdc++-v3: all-target-libstdc++-v3
|
||||
all-target-libstdc++-v3: configure-target-libstdc++-v3
|
||||
@: $(MAKE); $(unstage)
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
|
|
@ -42568,6 +42863,264 @@ all-target-libstdc++-v3: configure-target-libstdc++-v3
|
|||
|
||||
|
||||
|
||||
.PHONY: all-stage1-target-libstdc++-v3 maybe-all-stage1-target-libstdc++-v3
|
||||
.PHONY: clean-stage1-target-libstdc++-v3 maybe-clean-stage1-target-libstdc++-v3
|
||||
maybe-all-stage1-target-libstdc++-v3:
|
||||
maybe-clean-stage1-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-all-stage1-target-libstdc++-v3: all-stage1-target-libstdc++-v3
|
||||
all-stage1: all-stage1-target-libstdc++-v3
|
||||
TARGET-stage1-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
||||
all-stage1-target-libstdc++-v3: configure-stage1-target-libstdc++-v3
|
||||
@[ $(current_stage) = stage1 ] || $(MAKE) stage1-start
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGE1_TFLAGS)"; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
TFLAGS="$(STAGE1_TFLAGS)" \
|
||||
$(TARGET-stage1-target-libstdc++-v3)
|
||||
|
||||
maybe-clean-stage1-target-libstdc++-v3: clean-stage1-target-libstdc++-v3
|
||||
clean-stage1: clean-stage1-target-libstdc++-v3
|
||||
clean-stage1-target-libstdc++-v3:
|
||||
@if [ $(current_stage) = stage1 ]; then \
|
||||
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
||||
else \
|
||||
[ -f $(TARGET_SUBDIR)/stage1-libstdc++-v3/Makefile ] || exit 0; \
|
||||
$(MAKE) stage1-start; \
|
||||
fi; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
clean
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
|
||||
.PHONY: all-stage2-target-libstdc++-v3 maybe-all-stage2-target-libstdc++-v3
|
||||
.PHONY: clean-stage2-target-libstdc++-v3 maybe-clean-stage2-target-libstdc++-v3
|
||||
maybe-all-stage2-target-libstdc++-v3:
|
||||
maybe-clean-stage2-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-all-stage2-target-libstdc++-v3: all-stage2-target-libstdc++-v3
|
||||
all-stage2: all-stage2-target-libstdc++-v3
|
||||
TARGET-stage2-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
||||
all-stage2-target-libstdc++-v3: configure-stage2-target-libstdc++-v3
|
||||
@[ $(current_stage) = stage2 ] || $(MAKE) stage2-start
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGE2_TFLAGS)"; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
TFLAGS="$(STAGE2_TFLAGS)" \
|
||||
$(TARGET-stage2-target-libstdc++-v3)
|
||||
|
||||
maybe-clean-stage2-target-libstdc++-v3: clean-stage2-target-libstdc++-v3
|
||||
clean-stage2: clean-stage2-target-libstdc++-v3
|
||||
clean-stage2-target-libstdc++-v3:
|
||||
@if [ $(current_stage) = stage2 ]; then \
|
||||
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
||||
else \
|
||||
[ -f $(TARGET_SUBDIR)/stage2-libstdc++-v3/Makefile ] || exit 0; \
|
||||
$(MAKE) stage2-start; \
|
||||
fi; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
\
|
||||
clean
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
|
||||
.PHONY: all-stage3-target-libstdc++-v3 maybe-all-stage3-target-libstdc++-v3
|
||||
.PHONY: clean-stage3-target-libstdc++-v3 maybe-clean-stage3-target-libstdc++-v3
|
||||
maybe-all-stage3-target-libstdc++-v3:
|
||||
maybe-clean-stage3-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-all-stage3-target-libstdc++-v3: all-stage3-target-libstdc++-v3
|
||||
all-stage3: all-stage3-target-libstdc++-v3
|
||||
TARGET-stage3-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
||||
all-stage3-target-libstdc++-v3: configure-stage3-target-libstdc++-v3
|
||||
@[ $(current_stage) = stage3 ] || $(MAKE) stage3-start
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGE3_TFLAGS)"; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
TFLAGS="$(STAGE3_TFLAGS)" \
|
||||
$(TARGET-stage3-target-libstdc++-v3)
|
||||
|
||||
maybe-clean-stage3-target-libstdc++-v3: clean-stage3-target-libstdc++-v3
|
||||
clean-stage3: clean-stage3-target-libstdc++-v3
|
||||
clean-stage3-target-libstdc++-v3:
|
||||
@if [ $(current_stage) = stage3 ]; then \
|
||||
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
||||
else \
|
||||
[ -f $(TARGET_SUBDIR)/stage3-libstdc++-v3/Makefile ] || exit 0; \
|
||||
$(MAKE) stage3-start; \
|
||||
fi; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
\
|
||||
clean
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
|
||||
.PHONY: all-stage4-target-libstdc++-v3 maybe-all-stage4-target-libstdc++-v3
|
||||
.PHONY: clean-stage4-target-libstdc++-v3 maybe-clean-stage4-target-libstdc++-v3
|
||||
maybe-all-stage4-target-libstdc++-v3:
|
||||
maybe-clean-stage4-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-all-stage4-target-libstdc++-v3: all-stage4-target-libstdc++-v3
|
||||
all-stage4: all-stage4-target-libstdc++-v3
|
||||
TARGET-stage4-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
||||
all-stage4-target-libstdc++-v3: configure-stage4-target-libstdc++-v3
|
||||
@[ $(current_stage) = stage4 ] || $(MAKE) stage4-start
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGE4_TFLAGS)"; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
TFLAGS="$(STAGE4_TFLAGS)" \
|
||||
$(TARGET-stage4-target-libstdc++-v3)
|
||||
|
||||
maybe-clean-stage4-target-libstdc++-v3: clean-stage4-target-libstdc++-v3
|
||||
clean-stage4: clean-stage4-target-libstdc++-v3
|
||||
clean-stage4-target-libstdc++-v3:
|
||||
@if [ $(current_stage) = stage4 ]; then \
|
||||
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
||||
else \
|
||||
[ -f $(TARGET_SUBDIR)/stage4-libstdc++-v3/Makefile ] || exit 0; \
|
||||
$(MAKE) stage4-start; \
|
||||
fi; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
\
|
||||
clean
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
|
||||
.PHONY: all-stageprofile-target-libstdc++-v3 maybe-all-stageprofile-target-libstdc++-v3
|
||||
.PHONY: clean-stageprofile-target-libstdc++-v3 maybe-clean-stageprofile-target-libstdc++-v3
|
||||
maybe-all-stageprofile-target-libstdc++-v3:
|
||||
maybe-clean-stageprofile-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-all-stageprofile-target-libstdc++-v3: all-stageprofile-target-libstdc++-v3
|
||||
all-stageprofile: all-stageprofile-target-libstdc++-v3
|
||||
TARGET-stageprofile-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
||||
all-stageprofile-target-libstdc++-v3: configure-stageprofile-target-libstdc++-v3
|
||||
@[ $(current_stage) = stageprofile ] || $(MAKE) stageprofile-start
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGEprofile_TFLAGS)"; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
TFLAGS="$(STAGEprofile_TFLAGS)" \
|
||||
$(TARGET-stageprofile-target-libstdc++-v3)
|
||||
|
||||
maybe-clean-stageprofile-target-libstdc++-v3: clean-stageprofile-target-libstdc++-v3
|
||||
clean-stageprofile: clean-stageprofile-target-libstdc++-v3
|
||||
clean-stageprofile-target-libstdc++-v3:
|
||||
@if [ $(current_stage) = stageprofile ]; then \
|
||||
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
||||
else \
|
||||
[ -f $(TARGET_SUBDIR)/stageprofile-libstdc++-v3/Makefile ] || exit 0; \
|
||||
$(MAKE) stageprofile-start; \
|
||||
fi; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
\
|
||||
clean
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
|
||||
.PHONY: all-stagefeedback-target-libstdc++-v3 maybe-all-stagefeedback-target-libstdc++-v3
|
||||
.PHONY: clean-stagefeedback-target-libstdc++-v3 maybe-clean-stagefeedback-target-libstdc++-v3
|
||||
maybe-all-stagefeedback-target-libstdc++-v3:
|
||||
maybe-clean-stagefeedback-target-libstdc++-v3:
|
||||
@if target-libstdc++-v3-bootstrap
|
||||
maybe-all-stagefeedback-target-libstdc++-v3: all-stagefeedback-target-libstdc++-v3
|
||||
all-stagefeedback: all-stagefeedback-target-libstdc++-v3
|
||||
TARGET-stagefeedback-target-libstdc++-v3 = $(TARGET-target-libstdc++-v3)
|
||||
all-stagefeedback-target-libstdc++-v3: configure-stagefeedback-target-libstdc++-v3
|
||||
@[ $(current_stage) = stagefeedback ] || $(MAKE) stagefeedback-start
|
||||
@r=`${PWD_COMMAND}`; export r; \
|
||||
s=`cd $(srcdir); ${PWD_COMMAND}`; export s; \
|
||||
TFLAGS="$(STAGEfeedback_TFLAGS)"; \
|
||||
$(RAW_CXX_TARGET_EXPORTS) \
|
||||
\
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(BASE_FLAGS_TO_PASS) \
|
||||
CFLAGS="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
CFLAGS_FOR_TARGET="$(CFLAGS_FOR_TARGET)" \
|
||||
CXXFLAGS_FOR_TARGET="$(CXXFLAGS_FOR_TARGET)" \
|
||||
LIBCFLAGS_FOR_TARGET="$(LIBCFLAGS_FOR_TARGET)" \
|
||||
$(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
TFLAGS="$(STAGEfeedback_TFLAGS)" \
|
||||
$(TARGET-stagefeedback-target-libstdc++-v3)
|
||||
|
||||
maybe-clean-stagefeedback-target-libstdc++-v3: clean-stagefeedback-target-libstdc++-v3
|
||||
clean-stagefeedback: clean-stagefeedback-target-libstdc++-v3
|
||||
clean-stagefeedback-target-libstdc++-v3:
|
||||
@if [ $(current_stage) = stagefeedback ]; then \
|
||||
[ -f $(TARGET_SUBDIR)/libstdc++-v3/Makefile ] || exit 0; \
|
||||
else \
|
||||
[ -f $(TARGET_SUBDIR)/stagefeedback-libstdc++-v3/Makefile ] || exit 0; \
|
||||
$(MAKE) stagefeedback-start; \
|
||||
fi; \
|
||||
cd $(TARGET_SUBDIR)/libstdc++-v3 && \
|
||||
$(MAKE) $(EXTRA_TARGET_FLAGS) 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' \
|
||||
\
|
||||
clean
|
||||
@endif target-libstdc++-v3-bootstrap
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.PHONY: check-target-libstdc++-v3 maybe-check-target-libstdc++-v3
|
||||
|
|
@ -54124,7 +54677,12 @@ restrap:: all
|
|||
|
||||
# Generic dependencies for target modules on host stuff, especially gcc
|
||||
@if gcc-bootstrap
|
||||
configure-target-libstdc++-v3: stage_last
|
||||
configure-stage1-target-libstdc++-v3: maybe-all-stage1-gcc
|
||||
configure-stage2-target-libstdc++-v3: maybe-all-stage2-gcc
|
||||
configure-stage3-target-libstdc++-v3: maybe-all-stage3-gcc
|
||||
configure-stage4-target-libstdc++-v3: maybe-all-stage4-gcc
|
||||
configure-stageprofile-target-libstdc++-v3: maybe-all-stageprofile-gcc
|
||||
configure-stagefeedback-target-libstdc++-v3: maybe-all-stagefeedback-gcc
|
||||
configure-target-libmudflap: stage_last
|
||||
configure-target-libssp: stage_last
|
||||
configure-target-newlib: stage_last
|
||||
|
|
@ -54877,6 +55435,12 @@ all-target-winsup: maybe-all-target-libtermcap
|
|||
|
||||
|
||||
@if gcc-bootstrap
|
||||
configure-stage1-target-libstdc++-v3: maybe-all-stage1-target-libgcc
|
||||
configure-stage2-target-libstdc++-v3: maybe-all-stage2-target-libgcc
|
||||
configure-stage3-target-libstdc++-v3: maybe-all-stage3-target-libgcc
|
||||
configure-stage4-target-libstdc++-v3: maybe-all-stage4-target-libgcc
|
||||
configure-stageprofile-target-libstdc++-v3: maybe-all-stageprofile-target-libgcc
|
||||
configure-stagefeedback-target-libstdc++-v3: maybe-all-stagefeedback-target-libgcc
|
||||
@endif gcc-bootstrap
|
||||
|
||||
@if gcc-no-bootstrap
|
||||
|
|
|
|||
35
Makefile.tpl
35
Makefile.tpl
|
|
@ -120,6 +120,19 @@ BUILD_SUBDIR = @build_subdir@
|
|||
# directories built for the build system.
|
||||
BUILD_CONFIGARGS = @build_configargs@ --with-build-subdir="$(BUILD_SUBDIR)"
|
||||
|
||||
# Linker flags to use on the host, for stage1 or when not
|
||||
# bootstrapping.
|
||||
STAGE1_LDFLAGS = @stage1_ldflags@
|
||||
|
||||
# Libraries to use on the host, for stage1 or when not bootstrapping.
|
||||
STAGE1_LIBS = @stage1_libs@
|
||||
|
||||
# Linker flags to use for stage2 and later.
|
||||
POSTSTAGE1_LDFLAGS = @poststage1_ldflags@
|
||||
|
||||
# Libraries to use for stage2 and later.
|
||||
POSTSTAGE1_LIBS = @poststage1_libs@
|
||||
|
||||
# This is the list of variables to export in the environment when
|
||||
# configuring any subdirectory. It must also be exported whenever
|
||||
# recursing into a build directory in case that directory's Makefile
|
||||
|
|
@ -185,7 +198,7 @@ HOST_EXPORTS = \
|
|||
CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \
|
||||
DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \
|
||||
LD="$(LD)"; export LD; \
|
||||
LDFLAGS="$(LDFLAGS)"; export LDFLAGS; \
|
||||
LDFLAGS="$(STAGE1_LDFLAGS) $(LDFLAGS)"; export LDFLAGS; \
|
||||
NM="$(NM)"; export NM; \
|
||||
RANLIB="$(RANLIB)"; export RANLIB; \
|
||||
WINDRES="$(WINDRES)"; export WINDRES; \
|
||||
|
|
@ -200,6 +213,7 @@ HOST_EXPORTS = \
|
|||
OBJDUMP_FOR_TARGET="$(OBJDUMP_FOR_TARGET)"; export OBJDUMP_FOR_TARGET; \
|
||||
RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)"; export RANLIB_FOR_TARGET; \
|
||||
TOPLEVEL_CONFIGURE_ARGUMENTS="$(TOPLEVEL_CONFIGURE_ARGUMENTS)"; export TOPLEVEL_CONFIGURE_ARGUMENTS; \
|
||||
HOST_LIBS="$(STAGE1_LIBS)"; export HOST_LIBS; \
|
||||
GMPLIBS="$(HOST_GMPLIBS)"; export GMPLIBS; \
|
||||
GMPINC="$(HOST_GMPINC)"; export GMPINC; \
|
||||
PPLLIBS="$(HOST_PPLLIBS)"; export PPLLIBS; \
|
||||
|
|
@ -218,8 +232,16 @@ POSTSTAGE1_HOST_EXPORTS = \
|
|||
-B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/ \
|
||||
$(XGCC_FLAGS_FOR_TARGET) $$TFLAGS"; export CC; \
|
||||
CC_FOR_BUILD="$$CC"; export CC_FOR_BUILD; \
|
||||
GNATBIND="$$r/$(HOST_SUBDIR)/prev-gcc/gnatbind"; export GNATBIND \
|
||||
LDFLAGS="$(BOOT_LDFLAGS)"; export LDFLAGS;
|
||||
CXX="$(STAGE_CC_WRAPPER) $$r/$(HOST_SUBDIR)/prev-gcc/g++$(exeext) \
|
||||
-B$$r/$(HOST_SUBDIR)/prev-gcc/ -B$(build_tooldir)/bin/ -nostdinc++ \
|
||||
-I$$r/prev-$(TARGET_SUBDIR)/libstdc++-v3/include/$(TARGET_SUBDIR) \
|
||||
-I$$r/prev-$(TARGET_SUBDIR)/libstdc++-v3/include \
|
||||
-I$$r/$(srcdir)/libstdc++-v3/libsupc++ \
|
||||
-L$$r/prev-$(TARGET_SUBDIR)/libstdc++-v3/src/.libs"; export CXX; \
|
||||
CXX_FOR_BUILD="$$CXX"; export CXX_FOR_BUILD; \
|
||||
GNATBIND="$$r/$(HOST_SUBDIR)/prev-gcc/gnatbind"; export GNATBIND; \
|
||||
LDFLAGS="$(POSTSTAGE1_LDFLAGS) $(BOOT_LDFLAGS)"; export LDFLAGS; \
|
||||
HOST_LIBS="$(POSTSTAGE1_LIBS)"; export HOST_LIBS;
|
||||
|
||||
# Target libraries are put under this directory:
|
||||
TARGET_SUBDIR = @target_subdir@
|
||||
|
|
@ -540,8 +562,11 @@ X11_FLAGS_TO_PASS = \
|
|||
# Flags to pass to stage2 and later makes.
|
||||
|
||||
POSTSTAGE1_FLAGS_TO_PASS = \
|
||||
CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" GNATBIND="$${GNATBIND}" \
|
||||
LDFLAGS="$(BOOT_LDFLAGS)" \
|
||||
CC="$${CC}" CC_FOR_BUILD="$${CC_FOR_BUILD}" \
|
||||
CXX="$${CXX}" CXX_FOR_BUILD="$${CXX_FOR_BUILD}" \
|
||||
GNATBIND="$${GNATBIND}" \
|
||||
LDFLAGS="$(POSTSTAGE1_LDFLAGS) $(BOOT_LDFLAGS)" \
|
||||
HOST_LIBS="$(POSTSTAGE1_LIBS)" \
|
||||
"`echo 'ADAFLAGS=$(BOOT_ADAFLAGS)' | sed -e s'/[^=][^=]*=$$/XFOO=/'`"
|
||||
|
||||
# Flags to pass down to makes which are built with the target environment.
|
||||
|
|
|
|||
|
|
@ -272,7 +272,7 @@ PACKAGE_STRING=
|
|||
PACKAGE_BUGREPORT=
|
||||
|
||||
ac_unique_file="move-if-change"
|
||||
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 TOPLEVEL_CONFIGURE_ARGUMENTS build build_cpu build_vendor build_os build_noncanonical host_noncanonical target_noncanonical host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN LN_S build_libsubdir build_subdir host_subdir target_subdir CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX GNATBIND ac_ct_GNATBIND GNATMAKE ac_ct_GNATMAKE do_compare gmplibs gmpinc extra_mpfr_configure_flags extra_mpc_gmp_configure_flags extra_mpc_mpfr_configure_flags ppllibs pplinc clooglibs clooginc stage1_languages SYSROOT_CFLAGS_FOR_TARGET DEBUG_PREFIX_CFLAGS_FOR_TARGET CFLAGS_FOR_TARGET CXXFLAGS_FOR_TARGET RPATH_ENVVAR GCC_SHLIB_SUBDIR tooldir build_tooldir CONFIGURE_GDB_TK GDB_TK INSTALL_GDB_TK build_configargs build_configdirs host_configargs configdirs target_configargs AR_FOR_BUILD AS_FOR_BUILD CC_FOR_BUILD CFLAGS_FOR_BUILD CXXFLAGS_FOR_BUILD CXX_FOR_BUILD DLLTOOL_FOR_BUILD GCJ_FOR_BUILD GFORTRAN_FOR_BUILD LDFLAGS_FOR_BUILD LD_FOR_BUILD NM_FOR_BUILD RANLIB_FOR_BUILD WINDMC_FOR_BUILD WINDRES_FOR_BUILD config_shell YACC BISON M4 LEX FLEX MAKEINFO EXPECT RUNTEST AR AS DLLTOOL LD LIPO NM RANLIB STRIP WINDRES WINDMC OBJCOPY OBJDUMP CC_FOR_TARGET CXX_FOR_TARGET GCC_FOR_TARGET GCJ_FOR_TARGET GFORTRAN_FOR_TARGET AR_FOR_TARGET AS_FOR_TARGET DLLTOOL_FOR_TARGET LD_FOR_TARGET LIPO_FOR_TARGET NM_FOR_TARGET OBJDUMP_FOR_TARGET RANLIB_FOR_TARGET STRIP_FOR_TARGET WINDRES_FOR_TARGET WINDMC_FOR_TARGET RAW_CXX_FOR_TARGET FLAGS_FOR_TARGET COMPILER_AS_FOR_TARGET COMPILER_LD_FOR_TARGET COMPILER_NM_FOR_TARGET MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT stage1_cflags stage1_checking stage2_werror_flag datarootdir docdir pdfdir htmldir 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 TOPLEVEL_CONFIGURE_ARGUMENTS build build_cpu build_vendor build_os build_noncanonical host_noncanonical target_noncanonical host host_cpu host_vendor host_os target target_cpu target_vendor target_os INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA LN LN_S build_libsubdir build_subdir host_subdir target_subdir CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX GNATBIND ac_ct_GNATBIND GNATMAKE ac_ct_GNATMAKE do_compare gmplibs gmpinc extra_mpfr_configure_flags extra_mpc_gmp_configure_flags extra_mpc_mpfr_configure_flags stage1_ldflags stage1_libs poststage1_ldflags poststage1_libs ppllibs pplinc clooglibs clooginc stage1_languages SYSROOT_CFLAGS_FOR_TARGET DEBUG_PREFIX_CFLAGS_FOR_TARGET CFLAGS_FOR_TARGET CXXFLAGS_FOR_TARGET RPATH_ENVVAR GCC_SHLIB_SUBDIR tooldir build_tooldir CONFIGURE_GDB_TK GDB_TK INSTALL_GDB_TK build_configargs build_configdirs host_configargs configdirs target_configargs AR_FOR_BUILD AS_FOR_BUILD CC_FOR_BUILD CFLAGS_FOR_BUILD CXXFLAGS_FOR_BUILD CXX_FOR_BUILD DLLTOOL_FOR_BUILD GCJ_FOR_BUILD GFORTRAN_FOR_BUILD LDFLAGS_FOR_BUILD LD_FOR_BUILD NM_FOR_BUILD RANLIB_FOR_BUILD WINDMC_FOR_BUILD WINDRES_FOR_BUILD config_shell YACC BISON M4 LEX FLEX MAKEINFO EXPECT RUNTEST AR AS DLLTOOL LD LIPO NM RANLIB STRIP WINDRES WINDMC OBJCOPY OBJDUMP CC_FOR_TARGET CXX_FOR_TARGET GCC_FOR_TARGET GCJ_FOR_TARGET GFORTRAN_FOR_TARGET AR_FOR_TARGET AS_FOR_TARGET DLLTOOL_FOR_TARGET LD_FOR_TARGET LIPO_FOR_TARGET NM_FOR_TARGET OBJDUMP_FOR_TARGET RANLIB_FOR_TARGET STRIP_FOR_TARGET WINDRES_FOR_TARGET WINDMC_FOR_TARGET RAW_CXX_FOR_TARGET FLAGS_FOR_TARGET COMPILER_AS_FOR_TARGET COMPILER_LD_FOR_TARGET COMPILER_NM_FOR_TARGET MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT stage1_cflags stage1_checking stage2_werror_flag datarootdir docdir pdfdir htmldir LIBOBJS LTLIBOBJS'
|
||||
ac_subst_files='serialization_dependencies host_makefile_frag target_makefile_frag alphaieee_frag ospace_frag'
|
||||
ac_pwd=`pwd`
|
||||
|
||||
|
|
@ -935,6 +935,7 @@ Optional Features:
|
|||
--enable-gold use gold instead of ld
|
||||
--enable-libada build libada directory
|
||||
--enable-libssp build libssp directory
|
||||
--enable-build-with-cxx build with C++ compiler instead of C compiler
|
||||
--disable-ppl-version-check disable check for PPL version
|
||||
--disable-cloog-version-check disable check for CLooG version
|
||||
--enable-stage1-languages[=all] choose additional languages to build during
|
||||
|
|
@ -977,6 +978,15 @@ Optional Packages:
|
|||
--with-gmp-lib=PATH specify directory for the installed GMP library
|
||||
--with-host-libstdcxx=L Use linker arguments L to link with libstdc++
|
||||
when linking with PPL
|
||||
--with-stage1-ldflags=FLAGS Linker flags for stage1
|
||||
-with-stage1-libs=LIBS Libraries for stage1
|
||||
--with-boot-ldflags=FLAGS Linker flags for stage2 and later
|
||||
--with-boot-libs=LIBS Libraries for stage2 and later
|
||||
if test "$withval" = "no" -o "$withval" = "yes"; then
|
||||
poststage1_libs=
|
||||
else
|
||||
poststage1_libs=$withval
|
||||
fi
|
||||
--with-ppl=PATH Specify prefix directory for the installed PPL package
|
||||
Equivalent to --with-ppl-include=PATH/include
|
||||
plus --with-ppl-lib=PATH/lib
|
||||
|
|
@ -4504,6 +4514,15 @@ do_compare="$gcc_cv_prog_cmp_skip"
|
|||
|
||||
|
||||
|
||||
# See if we are building gcc with C++.
|
||||
# Check whether --enable-build-with-cxx or --disable-build-with-cxx was given.
|
||||
if test "${enable_build_with_cxx+set}" = set; then
|
||||
enableval="$enable_build_with_cxx"
|
||||
ENABLE_BUILD_WITH_CXX=$enableval
|
||||
else
|
||||
ENABLE_BUILD_WITH_CXX=no
|
||||
fi;
|
||||
|
||||
# Check for GMP, MPFR and MPC
|
||||
gmplibs="-lmpfr -lgmp"
|
||||
gmpinc=
|
||||
|
|
@ -5080,10 +5099,69 @@ echo "$as_me: error: -with-host-libstdcxx needs an argument" >&2;}
|
|||
;;
|
||||
esac
|
||||
|
||||
# Linker flags to use for stage1 or when not boostrapping.
|
||||
|
||||
# Check whether --with-stage1-ldflags or --without-stage1-ldflags was given.
|
||||
if test "${with_stage1_ldflags+set}" = set; then
|
||||
withval="$with_stage1_ldflags"
|
||||
if test "$withval" = "no" -o "$withval" = "yes"; then
|
||||
stage1_ldflags=
|
||||
else
|
||||
stage1_ldflags=$withval
|
||||
fi
|
||||
else
|
||||
stage1_ldflags=
|
||||
fi;
|
||||
|
||||
|
||||
# Libraries to use for stage1 or when not bootstrapping.
|
||||
|
||||
# Check whether --with-stage1-libs or --without-stage1-libs was given.
|
||||
if test "${with_stage1_libs+set}" = set; then
|
||||
withval="$with_stage1_libs"
|
||||
if test "$withval" = "no" -o "$withval" = "yes"; then
|
||||
stage1_libs=
|
||||
else
|
||||
stage1_libs=$withval
|
||||
fi
|
||||
else
|
||||
stage1_libs=$with_host_libstdcxx
|
||||
fi;
|
||||
|
||||
|
||||
# Linker flags to use for stage2 and later builds.
|
||||
|
||||
# Check whether --with-boot-ldflags or --without-boot-ldflags was given.
|
||||
if test "${with_boot_ldflags+set}" = set; then
|
||||
withval="$with_boot_ldflags"
|
||||
if test "$withval" = "no" -o "$withval" = "yes"; then
|
||||
poststage1_ldflags=
|
||||
else
|
||||
poststage1_ldflags=$withval
|
||||
fi
|
||||
else
|
||||
if test "$ENABLE_BUILD_WITH_CXX" = "yes"; then
|
||||
poststage1_ldflags=-static-libstdc++
|
||||
else
|
||||
poststage1_ldflags=
|
||||
fi
|
||||
fi;
|
||||
|
||||
|
||||
# Libraries to use for stage2 and later builds. This defaults to the
|
||||
# argument passed to --with-host-libstdcxx.
|
||||
|
||||
# Check whether --with-boot-libs or --without-boot-libs was given.
|
||||
if test "${with_boot_libs+set}" = set; then
|
||||
withval="$with_boot_libs"
|
||||
poststage1_libs=$with_host_libstdcxx
|
||||
fi;
|
||||
|
||||
|
||||
# Check for PPL
|
||||
ppl_major_version=0
|
||||
ppl_minor_version=10
|
||||
ppllibs=" -lppl_c -lppl -lgmpxx $with_host_libstdcxx "
|
||||
ppllibs=" -lppl_c -lppl -lgmpxx"
|
||||
pplinc=
|
||||
|
||||
|
||||
|
|
@ -5112,7 +5190,7 @@ case $with_ppl in
|
|||
ppllibs=
|
||||
;;
|
||||
*)
|
||||
ppllibs="-L$with_ppl/lib -lppl_c -lppl -lgmpxx $with_host_libstdcxx"
|
||||
ppllibs="-L$with_ppl/lib -lppl_c -lppl -lgmpxx"
|
||||
pplinc="-I$with_ppl/include $pplinc"
|
||||
LIBS="$ppllibs $LIBS"
|
||||
;;
|
||||
|
|
@ -5121,11 +5199,11 @@ if test "x$with_ppl_include" != x; then
|
|||
pplinc="-I$with_ppl_include $pplinc"
|
||||
fi
|
||||
if test "x$with_ppl_lib" != x; then
|
||||
ppllibs="-L$with_ppl_lib -lppl_c -lppl -lgmpxx $with_host_libstdcxx"
|
||||
ppllibs="-L$with_ppl_lib -lppl_c -lppl -lgmpxx"
|
||||
LIBS="$ppllibs $LIBS"
|
||||
fi
|
||||
if test "x$with_ppl$with_ppl_include$with_ppl_lib" = x && test -d ${srcdir}/ppl; then
|
||||
ppllibs='-L$$r/$(HOST_SUBDIR)/ppl/.libs -L$$r/$(HOST_SUBDIR)/ppl/_libs -lppl_c -lppl -lgmpxx '"$with_host_libstdcxx "
|
||||
ppllibs='-L$$r/$(HOST_SUBDIR)/ppl/.libs -L$$r/$(HOST_SUBDIR)/ppl/_libs -lppl_c -lppl -lgmpxx '
|
||||
pplinc='-I$$r/$(HOST_SUBDIR)/ppl/include -I$$s/ppl/include '
|
||||
LIBS="$ppllibs $LIBS"
|
||||
fi
|
||||
|
|
@ -5326,6 +5404,9 @@ fi
|
|||
# By default, C is the only stage 1 language.
|
||||
stage1_languages=,c,
|
||||
|
||||
# Target libraries that we bootstrap.
|
||||
bootstrap_target_libs=,target-libgcc,
|
||||
|
||||
# Figure out what language subdirectories are present.
|
||||
# Look if the user specified --enable-languages="..."; if not, use
|
||||
# the environment variable $LANGUAGES if defined. $LANGUAGES might
|
||||
|
|
@ -5411,6 +5492,10 @@ if test -d ${srcdir}/gcc; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if test "$language" = "c++" -a "$ENABLE_BUILD_WITH_CXX" = "yes"; then
|
||||
boot_language=yes
|
||||
fi
|
||||
|
||||
case ,${enable_languages}, in
|
||||
*,${language},*)
|
||||
# Language was explicitly selected; include it.
|
||||
|
|
@ -5481,6 +5566,8 @@ echo "$as_me: error: GNAT is required to build $language" >&2;}
|
|||
yes)
|
||||
# Add to (comma-separated) list of stage 1 languages.
|
||||
stage1_languages="${stage1_languages}${language},"
|
||||
# We need to bootstrap any supporting libraries.
|
||||
bootstrap_target_libs="${bootstrap_target_libs}${target_libs},"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
|
|
@ -6280,11 +6367,18 @@ for module in ${target_configdirs} ; do
|
|||
echo 1>&2 "*** removing ${target_subdir}/${module}/Makefile to force reconfigure"
|
||||
rm -f ${target_subdir}/${module}/Makefile
|
||||
fi
|
||||
|
||||
# We only bootstrap target libraries listed in bootstrap_target_libs.
|
||||
case $bootstrap_target_libs in
|
||||
*,target-$module,*) target_bootstrap_suffix=$bootstrap_suffix ;;
|
||||
*) target_bootstrap_suffix=no-bootstrap ;;
|
||||
esac
|
||||
|
||||
extrasub="$extrasub
|
||||
/^@if target-$module\$/d
|
||||
/^@endif target-$module\$/d
|
||||
/^@if target-$module-$bootstrap_suffix\$/d
|
||||
/^@endif target-$module-$bootstrap_suffix\$/d"
|
||||
/^@if target-$module-$target_bootstrap_suffix\$/d
|
||||
/^@endif target-$module-$target_bootstrap_suffix\$/d"
|
||||
done
|
||||
|
||||
extrasub="$extrasub
|
||||
|
|
@ -12691,7 +12785,7 @@ case $build in
|
|||
esac
|
||||
|
||||
# This is aimed to mimic bootstrap with a non-GCC compiler to catch problems.
|
||||
if test "$GCC" = yes; then
|
||||
if test "$GCC" = yes -a "$ENABLE_BUILD_WITH_CXX" != yes; then
|
||||
saved_CFLAGS="$CFLAGS"
|
||||
|
||||
# Pass -fkeep-inline-functions for stage 1 if the GCC version supports it.
|
||||
|
|
@ -13512,6 +13606,10 @@ s,@gmpinc@,$gmpinc,;t t
|
|||
s,@extra_mpfr_configure_flags@,$extra_mpfr_configure_flags,;t t
|
||||
s,@extra_mpc_gmp_configure_flags@,$extra_mpc_gmp_configure_flags,;t t
|
||||
s,@extra_mpc_mpfr_configure_flags@,$extra_mpc_mpfr_configure_flags,;t t
|
||||
s,@stage1_ldflags@,$stage1_ldflags,;t t
|
||||
s,@stage1_libs@,$stage1_libs,;t t
|
||||
s,@poststage1_ldflags@,$poststage1_ldflags,;t t
|
||||
s,@poststage1_libs@,$poststage1_libs,;t t
|
||||
s,@ppllibs@,$ppllibs,;t t
|
||||
s,@pplinc@,$pplinc,;t t
|
||||
s,@clooglibs@,$clooglibs,;t t
|
||||
|
|
|
|||
85
configure.ac
85
configure.ac
|
|
@ -1191,6 +1191,12 @@ fi
|
|||
ACX_PROG_GNAT
|
||||
ACX_PROG_CMP_IGNORE_INITIAL
|
||||
|
||||
# See if we are building gcc with C++.
|
||||
AC_ARG_ENABLE(build-with-cxx,
|
||||
[ --enable-build-with-cxx build with C++ compiler instead of C compiler],
|
||||
ENABLE_BUILD_WITH_CXX=$enableval,
|
||||
ENABLE_BUILD_WITH_CXX=no)
|
||||
|
||||
# Check for GMP, MPFR and MPC
|
||||
gmplibs="-lmpfr -lgmp"
|
||||
gmpinc=
|
||||
|
|
@ -1422,10 +1428,59 @@ case $with_host_libstdcxx in
|
|||
;;
|
||||
esac
|
||||
|
||||
# Linker flags to use for stage1 or when not boostrapping.
|
||||
AC_ARG_WITH(stage1-ldflags,
|
||||
[ --with-stage1-ldflags=FLAGS Linker flags for stage1],
|
||||
[if test "$withval" = "no" -o "$withval" = "yes"; then
|
||||
stage1_ldflags=
|
||||
else
|
||||
stage1_ldflags=$withval
|
||||
fi],
|
||||
[stage1_ldflags=])
|
||||
AC_SUBST(stage1_ldflags)
|
||||
|
||||
# Libraries to use for stage1 or when not bootstrapping.
|
||||
AC_ARG_WITH(stage1-libs,
|
||||
[ -with-stage1-libs=LIBS Libraries for stage1],
|
||||
[if test "$withval" = "no" -o "$withval" = "yes"; then
|
||||
stage1_libs=
|
||||
else
|
||||
stage1_libs=$withval
|
||||
fi],
|
||||
[stage1_libs=$with_host_libstdcxx])
|
||||
AC_SUBST(stage1_libs)
|
||||
|
||||
# Linker flags to use for stage2 and later builds.
|
||||
AC_ARG_WITH(boot-ldflags,
|
||||
[ --with-boot-ldflags=FLAGS Linker flags for stage2 and later],
|
||||
[if test "$withval" = "no" -o "$withval" = "yes"; then
|
||||
poststage1_ldflags=
|
||||
else
|
||||
poststage1_ldflags=$withval
|
||||
fi],
|
||||
[if test "$ENABLE_BUILD_WITH_CXX" = "yes"; then
|
||||
poststage1_ldflags=-static-libstdc++
|
||||
else
|
||||
poststage1_ldflags=
|
||||
fi])
|
||||
AC_SUBST(poststage1_ldflags)
|
||||
|
||||
# Libraries to use for stage2 and later builds. This defaults to the
|
||||
# argument passed to --with-host-libstdcxx.
|
||||
AC_ARG_WITH(boot-libs,
|
||||
[ --with-boot-libs=LIBS Libraries for stage2 and later]
|
||||
[if test "$withval" = "no" -o "$withval" = "yes"; then
|
||||
poststage1_libs=
|
||||
else
|
||||
poststage1_libs=$withval
|
||||
fi],
|
||||
[poststage1_libs=$with_host_libstdcxx])
|
||||
AC_SUBST(poststage1_libs)
|
||||
|
||||
# Check for PPL
|
||||
ppl_major_version=0
|
||||
ppl_minor_version=10
|
||||
ppllibs=" -lppl_c -lppl -lgmpxx $with_host_libstdcxx "
|
||||
ppllibs=" -lppl_c -lppl -lgmpxx"
|
||||
pplinc=
|
||||
|
||||
AC_ARG_WITH(ppl, [ --with-ppl=PATH Specify prefix directory for the installed PPL package
|
||||
|
|
@ -1439,7 +1494,7 @@ case $with_ppl in
|
|||
ppllibs=
|
||||
;;
|
||||
*)
|
||||
ppllibs="-L$with_ppl/lib -lppl_c -lppl -lgmpxx $with_host_libstdcxx"
|
||||
ppllibs="-L$with_ppl/lib -lppl_c -lppl -lgmpxx"
|
||||
pplinc="-I$with_ppl/include $pplinc"
|
||||
LIBS="$ppllibs $LIBS"
|
||||
;;
|
||||
|
|
@ -1448,11 +1503,11 @@ if test "x$with_ppl_include" != x; then
|
|||
pplinc="-I$with_ppl_include $pplinc"
|
||||
fi
|
||||
if test "x$with_ppl_lib" != x; then
|
||||
ppllibs="-L$with_ppl_lib -lppl_c -lppl -lgmpxx $with_host_libstdcxx"
|
||||
ppllibs="-L$with_ppl_lib -lppl_c -lppl -lgmpxx"
|
||||
LIBS="$ppllibs $LIBS"
|
||||
fi
|
||||
if test "x$with_ppl$with_ppl_include$with_ppl_lib" = x && test -d ${srcdir}/ppl; then
|
||||
ppllibs='-L$$r/$(HOST_SUBDIR)/ppl/.libs -L$$r/$(HOST_SUBDIR)/ppl/_libs -lppl_c -lppl -lgmpxx '"$with_host_libstdcxx "
|
||||
ppllibs='-L$$r/$(HOST_SUBDIR)/ppl/.libs -L$$r/$(HOST_SUBDIR)/ppl/_libs -lppl_c -lppl -lgmpxx '
|
||||
pplinc='-I$$r/$(HOST_SUBDIR)/ppl/include -I$$s/ppl/include '
|
||||
LIBS="$ppllibs $LIBS"
|
||||
fi
|
||||
|
|
@ -1538,6 +1593,9 @@ AC_SUBST(clooginc)
|
|||
# By default, C is the only stage 1 language.
|
||||
stage1_languages=,c,
|
||||
|
||||
# Target libraries that we bootstrap.
|
||||
bootstrap_target_libs=,target-libgcc,
|
||||
|
||||
# Figure out what language subdirectories are present.
|
||||
# Look if the user specified --enable-languages="..."; if not, use
|
||||
# the environment variable $LANGUAGES if defined. $LANGUAGES might
|
||||
|
|
@ -1623,6 +1681,10 @@ if test -d ${srcdir}/gcc; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
if test "$language" = "c++" -a "$ENABLE_BUILD_WITH_CXX" = "yes"; then
|
||||
boot_language=yes
|
||||
fi
|
||||
|
||||
case ,${enable_languages}, in
|
||||
*,${language},*)
|
||||
# Language was explicitly selected; include it.
|
||||
|
|
@ -1689,6 +1751,8 @@ if test -d ${srcdir}/gcc; then
|
|||
yes)
|
||||
# Add to (comma-separated) list of stage 1 languages.
|
||||
stage1_languages="${stage1_languages}${language},"
|
||||
# We need to bootstrap any supporting libraries.
|
||||
bootstrap_target_libs="${bootstrap_target_libs}${target_libs},"
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
|
|
@ -2420,11 +2484,18 @@ for module in ${target_configdirs} ; do
|
|||
echo 1>&2 "*** removing ${target_subdir}/${module}/Makefile to force reconfigure"
|
||||
rm -f ${target_subdir}/${module}/Makefile
|
||||
fi
|
||||
|
||||
# We only bootstrap target libraries listed in bootstrap_target_libs.
|
||||
case $bootstrap_target_libs in
|
||||
*,target-$module,*) target_bootstrap_suffix=$bootstrap_suffix ;;
|
||||
*) target_bootstrap_suffix=no-bootstrap ;;
|
||||
esac
|
||||
|
||||
extrasub="$extrasub
|
||||
/^@if target-$module\$/d
|
||||
/^@endif target-$module\$/d
|
||||
/^@if target-$module-$bootstrap_suffix\$/d
|
||||
/^@endif target-$module-$bootstrap_suffix\$/d"
|
||||
/^@if target-$module-$target_bootstrap_suffix\$/d
|
||||
/^@endif target-$module-$target_bootstrap_suffix\$/d"
|
||||
done
|
||||
|
||||
extrasub="$extrasub
|
||||
|
|
@ -2988,7 +3059,7 @@ case $build in
|
|||
esac
|
||||
|
||||
# This is aimed to mimic bootstrap with a non-GCC compiler to catch problems.
|
||||
if test "$GCC" = yes; then
|
||||
if test "$GCC" = yes -a "$ENABLE_BUILD_WITH_CXX" != yes; then
|
||||
saved_CFLAGS="$CFLAGS"
|
||||
|
||||
# Pass -fkeep-inline-functions for stage 1 if the GCC version supports it.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,28 @@
|
|||
2009-06-23 Ian Lance Taylor <iant@google.com>
|
||||
|
||||
* configure.ac: Invoke AC_PROG_CXX. Separate C specific warnings
|
||||
from loose_warn into c_loose_warn and from strict_warn into
|
||||
c_strict_warn. Set and substitute warn_cxxflags. Check for
|
||||
--enable-build-with-cxx. Set and substitute
|
||||
ENABLE_BUILD_WITH_CXX. Set and substitute HOST_LIBS.
|
||||
* Makefile.in (CXXFLAGS): New variable.
|
||||
(C_LOOSE_WARN, C_STRICT_WARN): New variables.
|
||||
(GCC_WARN_CFLAGS): Add $(C_LOOSE_WARN). Add $(C_STRICT_WARN) if
|
||||
the default is the same as $(STRICT_WARN).
|
||||
(GCC_WARN_CXXFLAGS, WARN_CXXFLAGS): New variables.
|
||||
(CXX): New variable.
|
||||
(COMPILER): New value if ENABLE_BUILD_WITH_CXX.
|
||||
(COMPILER_FLAGS, LINKER, LINKER_FLAGS): Likewise.
|
||||
(ALL_COMPILERFLAGS, ALL_LINKERFLAGS): Likewise.
|
||||
(HOST_LIBS): New variable.
|
||||
(GCC_CFLAGS): Add $(C_LOOSE_WARN).
|
||||
(ALL_CXXFLAGS): New variable.
|
||||
(LIBS, BACKENDLIBS): Add $(HOST_LIBS).
|
||||
* doc/install.texi (Configuration): Document
|
||||
--enable-build-with-cxx, --with-stage1-ldflags,
|
||||
--with-stage1-libs, --with-boot-ldflags, --with-boot-libs.
|
||||
* configure: Rebuild.
|
||||
|
||||
2009-06-24 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
|
||||
|
||||
* config/arm/arm.c (arm_override_options): Fix braces and formatting from previous
|
||||
|
|
|
|||
|
|
@ -134,6 +134,7 @@ LANGUAGES = c gcov$(exeext) gcov-dump$(exeext) $(CONFIG_LANGUAGES)
|
|||
T_CFLAGS =
|
||||
TCFLAGS =
|
||||
CFLAGS = @CFLAGS@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
LDFLAGS = @LDFLAGS@
|
||||
|
||||
# Flags to determine code coverage. When coverage is disabled, this will
|
||||
|
|
@ -149,11 +150,15 @@ coverageexts = .{gcda,gcno}
|
|||
# off if they wish.
|
||||
# LOOSE_WARN are the warning flags to use when compiling something
|
||||
# which is only compiled with gcc, such as libgcc.
|
||||
# C_LOOSE_WARN is similar, but with C-only warnings.
|
||||
# STRICT_WARN are the additional warning flags to
|
||||
# apply to the back end and some front ends, which may be compiled
|
||||
# with other compilers.
|
||||
# C_STRICT_WARN is similar, with C-only warnings.
|
||||
LOOSE_WARN = @loose_warn@
|
||||
C_LOOSE_WARN = @c_loose_warn@
|
||||
STRICT_WARN = @strict_warn@
|
||||
C_STRICT_WARN = @c_strict_warn@
|
||||
|
||||
# This is set by --enable-checking. The idea is to catch forgotten
|
||||
# "extern" tags in header files.
|
||||
|
|
@ -169,7 +174,8 @@ VALGRIND_DRIVER_DEFINES = @valgrind_path_defines@
|
|||
# This is how we control whether or not the additional warnings are applied.
|
||||
.-warn = $(STRICT_WARN)
|
||||
build-warn = $(STRICT_WARN)
|
||||
GCC_WARN_CFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $($@-warn)
|
||||
GCC_WARN_CFLAGS = $(LOOSE_WARN) $(C_LOOSE_WARN) $($(@D)-warn) $(if $(filter-out $(STRICT_WARN),$($(@D)-warn)),,$(C_STRICT_WARN)) $(NOCOMMON_FLAG) $($@-warn)
|
||||
GCC_WARN_CXXFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $($@-warn)
|
||||
|
||||
# These files are to have specific diagnostics suppressed, or are not to
|
||||
# be subject to -Werror:
|
||||
|
|
@ -180,13 +186,16 @@ mips-tfile.o-warn = -Wno-error
|
|||
|
||||
# All warnings have to be shut off in stage1 if the compiler used then
|
||||
# isn't gcc; configure determines that. WARN_CFLAGS will be either
|
||||
# $(GCC_WARN_CFLAGS), or nothing.
|
||||
# $(GCC_WARN_CFLAGS), or nothing. Similarly, WARN_CXXFLAGS will be
|
||||
# either $(GCC_WARN_CXXFLAGS), or nothing.
|
||||
WARN_CFLAGS = @warn_cflags@
|
||||
WARN_CXXFLAGS = @warn_cxxflags@
|
||||
|
||||
CPPFLAGS = @CPPFLAGS@
|
||||
|
||||
AWK = @AWK@
|
||||
CC = @CC@
|
||||
CXX = @CXX@
|
||||
BISON = @BISON@
|
||||
BISONFLAGS =
|
||||
FLEX = @FLEX@
|
||||
|
|
@ -197,12 +206,19 @@ NM = @NM@
|
|||
RANLIB = @RANLIB@
|
||||
RANLIB_FLAGS = @ranlib_flags@
|
||||
|
||||
# The name of the compiler to use. Currently always $(CC). In the
|
||||
# future this may change to $(CXX).
|
||||
# The name of the compiler to use.
|
||||
ENABLE_BUILD_WITH_CXX = @ENABLE_BUILD_WITH_CXX@
|
||||
ifneq ($(ENABLE_BUILD_WITH_CXX),yes)
|
||||
COMPILER = $(CC)
|
||||
COMPILER_FLAGS = $(CFLAGS)
|
||||
LINKER = $(CC)
|
||||
LINKER_FLAGS = $(CFLAGS)
|
||||
else
|
||||
COMPILER = $(CXX)
|
||||
COMPILER_FLAGS = $(CXXFLAGS)
|
||||
LINKER = $(CXX)
|
||||
LINKER_FLAGS = $(CXXFLAGS)
|
||||
endif
|
||||
|
||||
# -------------------------------------------
|
||||
# Programs which operate on the build machine
|
||||
|
|
@ -272,6 +288,9 @@ write_entries_to_file = $(shell rm -f $(2) || :) $(shell touch $(2)) \
|
|||
# In stage2 and beyond, we force this to "-o $@" since we know we're using gcc.
|
||||
OUTPUT_OPTION = @OUTPUT_OPTION@
|
||||
|
||||
# Libraries to use on the host.
|
||||
HOST_LIBS = @HOST_LIBS@
|
||||
|
||||
# This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
|
||||
# -I../zlib, unless we were configured with --with-system-zlib, in which
|
||||
# case both are empty.
|
||||
|
|
@ -330,7 +349,7 @@ GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isyste
|
|||
# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
|
||||
# It specifies -B./.
|
||||
# It also specifies -isystem ./include to find, e.g., stddef.h.
|
||||
GCC_CFLAGS=$(CFLAGS_FOR_TARGET) $(INTERNAL_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) -Wold-style-definition $($@-warn) -isystem ./include $(TCFLAGS)
|
||||
GCC_CFLAGS=$(CFLAGS_FOR_TARGET) $(INTERNAL_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) $(C_LOOSE_WARN) -Wold-style-definition $($@-warn) -isystem ./include $(TCFLAGS)
|
||||
|
||||
# ---------------------------------------------------
|
||||
# Programs which produce files for the target machine
|
||||
|
|
@ -917,16 +936,28 @@ INTERNAL_CFLAGS = -DIN_GCC @CROSS@
|
|||
ALL_CFLAGS = $(T_CFLAGS) \
|
||||
$(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) @DEFS@
|
||||
|
||||
# The C++ version.
|
||||
ALL_CXXFLAGS = $(T_CFLAGS) $(CXXFLAGS) $(INTERNAL_CFLAGS) \
|
||||
$(COVERAGE_FLAGS) $(WARN_CXXFLAGS) @DEFS@
|
||||
|
||||
# Likewise. Put INCLUDES at the beginning: this way, if some autoconf macro
|
||||
# puts -I options in CPPFLAGS, our include files in the srcdir will always
|
||||
# win against random include files in /usr/include.
|
||||
ALL_CPPFLAGS = $(INCLUDES) $(CPPFLAGS)
|
||||
|
||||
# This is the variable to use when using $(COMPILER).
|
||||
ifneq ($(ENABLE_BUILD_WITH_CXX),yes)
|
||||
ALL_COMPILERFLAGS = $(ALL_CFLAGS)
|
||||
else
|
||||
ALL_COMPILERFLAGS = $(ALL_CXXFLAGS)
|
||||
endif
|
||||
|
||||
# This is the variable to use when using $(LINKER).
|
||||
ifneq ($(ENABLE_BUILD_WITH_CXX),yes)
|
||||
ALL_LINKERFLAGS = $(ALL_CFLAGS)
|
||||
else
|
||||
ALL_LINKERFLAGS = $(ALL_CXXFLAGS)
|
||||
endif
|
||||
|
||||
# Build and host support libraries.
|
||||
LIBIBERTY = ../libiberty/libiberty.a
|
||||
|
|
@ -941,8 +972,9 @@ BUILD_LIBDEPS= $(BUILD_LIBIBERTY)
|
|||
|
||||
# How to link with both our special library facilities
|
||||
# and the system's installed libraries.
|
||||
LIBS = @LIBS@ $(CPPLIB) $(LIBINTL) $(LIBICONV) $(LIBIBERTY) $(LIBDECNUMBER)
|
||||
BACKENDLIBS = $(CLOOGLIBS) $(PPLLIBS) $(GMPLIBS) $(PLUGINLIBS)
|
||||
LIBS = @LIBS@ $(CPPLIB) $(LIBINTL) $(LIBICONV) $(LIBIBERTY) $(LIBDECNUMBER) \
|
||||
$(HOST_LIBS)
|
||||
BACKENDLIBS = $(CLOOGLIBS) $(PPLLIBS) $(GMPLIBS) $(PLUGINLIBS) $(HOST_LIBS)
|
||||
# Any system libraries needed just for GNAT.
|
||||
SYSLIBS = @GNAT_LIBEXC@
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load Diff
|
|
@ -276,6 +276,7 @@ rm -f a.out a.exe b.out
|
|||
# Find the native compiler
|
||||
AC_PROG_CC
|
||||
AM_PROG_CC_C_O
|
||||
AC_PROG_CXX
|
||||
ACX_PROG_GNAT([-I"$srcdir"/ada])
|
||||
|
||||
# autoconf is lame and doesn't give us any substitution variable for this.
|
||||
|
|
@ -323,24 +324,30 @@ AC_CHECK_TYPES([__int64], [AC_CHECK_SIZEOF(__int64)])
|
|||
# So, we only use -pedantic if we can disable those warnings.
|
||||
|
||||
ACX_PROG_CC_WARNING_OPTS(
|
||||
m4_quote(m4_do([-W -Wall -Wwrite-strings -Wstrict-prototypes ],
|
||||
[-Wmissing-prototypes -Wcast-qual])), [loose_warn])
|
||||
m4_quote(m4_do([-W -Wall -Wwrite-strings -Wcast-qual])), [loose_warn])
|
||||
ACX_PROG_CC_WARNING_OPTS(
|
||||
m4_quote(m4_do([-Wold-style-definition -Wc++-compat ],
|
||||
[-Wmissing-format-attribute])), [strict_warn])
|
||||
m4_quote(m4_do([-Wstrict-prototypes -Wmissing-prototypes])),
|
||||
[c_loose_warn])
|
||||
ACX_PROG_CC_WARNING_OPTS(
|
||||
m4_quote(m4_do([-Wmissing-format-attribute])), [strict_warn])
|
||||
ACX_PROG_CC_WARNING_OPTS(
|
||||
m4_quote(m4_do([-Wold-style-definition -Wc++-compat])), [c_strict_warn])
|
||||
ACX_PROG_CC_WARNING_ALMOST_PEDANTIC(
|
||||
m4_quote(m4_do([-Wno-long-long -Wno-variadic-macros ],
|
||||
[-Wno-overlength-strings])), [strict_warn])
|
||||
ACX_PROG_CC_WARNINGS_ARE_ERRORS([manual], [strict_warn])
|
||||
|
||||
# The above macros do nothing if the compiler is not GCC. However, the
|
||||
# Makefile has more goo to add other flags, so this variabl is used to
|
||||
# enables warnings only for GCC.
|
||||
# Makefile has more goo to add other flags, so these variables are used
|
||||
# to enable warnings only for GCC.
|
||||
warn_cflags=
|
||||
warn_cxxflags=
|
||||
if test "x$GCC" = "xyes"; then
|
||||
warn_cflags='$(GCC_WARN_CFLAGS)'
|
||||
warn_cxxflags='$(GCC_WARN_CXXFLAGS)'
|
||||
fi
|
||||
AC_SUBST(warn_cflags)
|
||||
AC_SUBST(warn_cxxflags)
|
||||
|
||||
# Enable expensive internal checks
|
||||
is_release=
|
||||
|
|
@ -573,6 +580,13 @@ fi
|
|||
# Miscenalleous configure options
|
||||
# -------------------------------
|
||||
|
||||
# See if we are building gcc with C++.
|
||||
AC_ARG_ENABLE(build-with-cxx,
|
||||
[ --enable-build-with-cxx build with C++ compiler instead of C compiler],
|
||||
ENABLE_BUILD_WITH_CXX=$enableval,
|
||||
ENABLE_BUILD_WITH_CXX=no)
|
||||
AC_SUBST(ENABLE_BUILD_WITH_CXX)
|
||||
|
||||
# With stabs
|
||||
AC_ARG_WITH(stabs,
|
||||
[ --with-stabs arrange to use stabs instead of host debug format],
|
||||
|
|
@ -3749,6 +3763,13 @@ esac],
|
|||
AC_SUBST(GGC)
|
||||
echo "Using $GGC for garbage collection."
|
||||
|
||||
# Libraries to use on the host. This will normally be set by the top
|
||||
# level Makefile. Here we simply capture the value for our Makefile.
|
||||
if test -z "${HOST_LIBS+set}"; then
|
||||
HOST_LIBS=
|
||||
fi
|
||||
AC_SUBST(HOST_LIBS)
|
||||
|
||||
# Use the system's zlib library.
|
||||
zlibdir=-L../zlib
|
||||
zlibinc="-I\$(srcdir)/../zlib"
|
||||
|
|
|
|||
|
|
@ -1204,6 +1204,10 @@ opposite effect. If neither option is specified, the configure script
|
|||
will try to guess whether the @code{.init_array} and
|
||||
@code{.fini_array} sections are supported and, if they are, use them.
|
||||
|
||||
@item --enable-build-with-cxx
|
||||
Build GCC using a C++ compiler rather than a C compiler. This is an
|
||||
experimental option which may become the default in a later release.
|
||||
|
||||
@item --enable-maintainer-mode
|
||||
The build rules that
|
||||
regenerate the GCC master message catalog @file{gcc.pot} are normally
|
||||
|
|
@ -1549,6 +1553,27 @@ linking with a shared copy of PPL, you probably do not need this
|
|||
option; shared library dependencies will cause the linker to search
|
||||
for the standard C++ library automatically.
|
||||
|
||||
@item --with-stage1-ldflags=@var{flags}
|
||||
This option may be used to set linker flags to be used when linking
|
||||
stage 1 of GCC. These are also used when linking GCC if configured with
|
||||
@option{--disable-bootstrap}. By default no special flags are used.
|
||||
|
||||
@item --with-stage1-libs=@var{libs}
|
||||
This option may be used to set libraries to be used when linking stage 1
|
||||
of GCC. These are also used when linking GCC if configured with
|
||||
@option{--disable-bootstrap}. The default is the argument to
|
||||
@option{--with-host-libstdcxx}, if specified.
|
||||
|
||||
@item --with-boot-ldflags=@var{flags}
|
||||
This option may be used to set linker flags to be used when linking
|
||||
stage 2 and later when bootstrapping GCC. By default no special flags
|
||||
are used.
|
||||
|
||||
@item --with-boot-libs=@var{libs}
|
||||
This option may be used to set libraries to be used when linking stage 2
|
||||
and later when bootstrapping GCC. The default is the argument to
|
||||
@option{--with-host-libstdcxx}, if specified.
|
||||
|
||||
@item --with-debug-prefix-map=@var{map}
|
||||
Convert source directory names using @option{-fdebug-prefix-map} when
|
||||
building runtime libraries. @samp{@var{map}} is a space-separated
|
||||
|
|
|
|||
Loading…
Reference in New Issue