diff options
author | Laurent GUERBY <laurent@guerby.net> | 2008-07-30 06:45:39 +0000 |
---|---|---|
committer | Laurent Guerby <guerby@gcc.gnu.org> | 2008-07-30 06:45:39 +0000 |
commit | a7dafa20688ef5d60d8212ce9ef6dd74d7bb2e9a (patch) | |
tree | 783c75ec16d92bdcca2138686dcbaf6502ca9d50 /gnattools | |
parent | 70b1e3763115ba960003375325844418d0eb0eaa (diff) | |
download | gcc-a7dafa20688ef5d60d8212ce9ef6dd74d7bb2e9a.zip gcc-a7dafa20688ef5d60d8212ce9ef6dd74d7bb2e9a.tar.gz gcc-a7dafa20688ef5d60d8212ce9ef6dd74d7bb2e9a.tar.bz2 |
re PR ada/5911 (Support for multilib in Ada)
gcc/ChangeLog
2008-07-29 Laurent Guerby <laurent@guerby.net>
PR ada/5911
* gnattools/Makefile.in: Replace stamp-gnatlib by
stamp-gnatlib-rts.
gcc/ada/ChangeLog
2008-07-29 Laurent Guerby <laurent@guerby.net>
PR ada/5911
* gcc-interface/Makefile.in (MULTISUBDIR, RTSDIR): New variables.
Pass MULTISUBDIR to recursive make. Use $(RTSDIR) instead of rts.
Replace stamp-gnatlib* by stamp-gnatlib*-rts.
* gcc-interface/Make-lang.in: Replace stamp-gnatlib2
by stamp-gnatlib2-rts.
From-SVN: r138294
Diffstat (limited to 'gnattools')
-rw-r--r-- | gnattools/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnattools/Makefile.in b/gnattools/Makefile.in index efc5f75..de0f6e3 100644 --- a/gnattools/Makefile.in +++ b/gnattools/Makefile.in @@ -153,8 +153,8 @@ TOOLS_TARGET_PAIRS = @TOOLS_TARGET_PAIRS@ gnattools: @default_gnattools_target@ # Sanity check -$(GCC_DIR)/stamp-gnatlib: - @if [ ! -f $(GCC_DIR)/stamp-gnatlib ] ; \ +$(GCC_DIR)/stamp-gnatlib-rts: + @if [ ! -f $(GCC_DIR)/stamp-gnatlib-rts ] ; \ then \ echo "Cannot build gnattools while gnatlib is out of date or unbuilt" ; \ false; \ @@ -183,7 +183,7 @@ $(GCC_DIR)/stamp-tools: # to be able to build gnatmake without a version of gnatmake around. Once # everything has been compiled once, gnatmake can be recompiled with itself # (see target regnattools) -gnattools-native: $(GCC_DIR)/stamp-tools $(GCC_DIR)/stamp-gnatlib +gnattools-native: $(GCC_DIR)/stamp-tools $(GCC_DIR)/stamp-gnatlib-rts # gnattools1 $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \ $(TOOLS_FLAGS_TO_PASS_1) \ @@ -195,7 +195,7 @@ gnattools-native: $(GCC_DIR)/stamp-tools $(GCC_DIR)/stamp-gnatlib # gnatmake/link can be built with recent gnatmake/link if they are available. # This is especially convenient for building cross tools or for rebuilding # the tools when the original bootstrap has already be done. -regnattools: $(GCC_DIR)/stamp-gnatlib +regnattools: $(GCC_DIR)/stamp-gnatlib-rts # gnattools1-re $(MAKE) -C $(GCC_DIR)/ada/tools -f ../Makefile \ $(TOOLS_FLAGS_TO_PASS_1re) \ |