Commit 57e215e4 by Kai Tietz

2010-06-12 Kai Tietz

        PR ada/43731
        * gcc-interface/Makefile.in: Add rules for multilib x86/x64
        mingw targets.

From-SVN: r160662
parent acb6411a
2010-06-12 Kai Tietz
PR ada/43731
* gcc-interface/Makefile.in: Add rules for multilib x86/x64
mingw targets.
2010-06-11 Alexandre Oliva <aoliva@redhat.com>
* gcc-interface/utils.c (update_pointer_to): Initialize last.
......
......@@ -1637,11 +1637,21 @@ ifeq ($(strip $(filter-out cygwin32% mingw32% pe,$(osys))),)
s-taprop.adb<s-taprop-mingw.adb
ifeq ($(strip $(filter-out x86_64%,$(arch))),)
LIBGNAT_TARGET_PAIRS += \
system.ads<system-mingw-x86_64.ads
ifeq ($(strip $(MULTISUBDIR)),/32)
LIBGNAT_TARGET_PAIRS += \
system.ads<system-mingw.ads
else
LIBGNAT_TARGET_PAIRS += \
system.ads<system-mingw-x86_64.ads
endif
else
LIBGNAT_TARGET_PAIRS += \
system.ads<system-mingw.ads
ifeq ($(strip $(MULTISUBDIR)),/64)
LIBGNAT_TARGET_PAIRS += \
system.ads<system-mingw-x86_64.ads
else
LIBGNAT_TARGET_PAIRS += \
system.ads<system-mingw.ads
endif
endif
EXTRA_GNATRTL_NONTASKING_OBJS = \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment