Makefile.in (x86_64 darwin arch): Adjust LIBGNAT_TARGET_PAIRS for x86 and x86_64 variants.

* gcc-interface/Makefile.in (x86_64 darwin arch): Adjust 
	LIBGNAT_TARGET_PAIRS for x86 and x86_64 variants.

From-SVN: r178605
This commit is contained in:
Iain Sandoe 2011-09-06 18:38:41 +00:00
parent e2605091be
commit a1bf1ec79f
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2011-09-06 Iain Sandoe <iains@gcc.gnu.org>
* gcc-interface/Makefile.in (x86_64 darwin arch): Adjust
LIBGNAT_TARGET_PAIRS for x86 and x86_64 variants.
2011-09-06 Arnaud Charlet <charlet@adacore.com>
* gcc-interface/Makefile.in, gcc-interface/Make-lang.in

View File

@ -2205,15 +2205,16 @@ ifeq ($(strip $(filter-out darwin%,$(osys))),)
s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
g-trasym.ads<g-trasym-unimplemented.ads \
g-trasym.adb<g-trasym-unimplemented.adb \
$(ATOMICS_TARGET_PAIRS) \
$(X86_64_TARGET_PAIRS) \
system.ads<system-darwin-x86_64.ads
$(ATOMICS_TARGET_PAIRS)
ifeq ($(strip $(MULTISUBDIR)),/i386)
LIBGNAT_TARGET_PAIRS += \
system.ads<system-darwin-x86.ads
$(X86_TARGET_PAIRS) \
system.ads<system-darwin-x86.ads
else
LIBGNAT_TARGET_PAIRS += \
system.ads<system-darwin-x86_64.ads
$(X86_64_TARGET_PAIRS) \
system.ads<system-darwin-x86_64.ads
endif
endif