diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-10-10 12:47:59 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-10-10 12:47:59 +0200 |
commit | 0c5dba7ff5ca748346488e651641e4b93eb53a17 (patch) | |
tree | aef1bc519fb72a6d3e5a3e8a0d806e1fdf2b1d32 /gcc/ada/gcc-interface/Makefile.in | |
parent | cd38efa560f565cb02cba62fe919e591dc110b74 (diff) | |
download | gcc-0c5dba7ff5ca748346488e651641e4b93eb53a17.zip gcc-0c5dba7ff5ca748346488e651641e4b93eb53a17.tar.gz gcc-0c5dba7ff5ca748346488e651641e4b93eb53a17.tar.bz2 |
[multiple changes]
2013-10-10 Robert Dewar <dewar@adacore.com>
* gnatlink.adb: Minor reformatting.
2013-10-10 Yannick Moy <moy@adacore.com>
* debug.adb: Free flag d.E and change doc for flag d.K.
2013-10-10 Ed Schonberg <schonberg@adacore.com>
* sem_prag.adb (Check_Precondition_Postcondition): If the
pragma comes from an aspect spec, and the subprogram is a
library unit, treat as a ppc in a declarative part in ASIS mode,
so that expression in aspect is properly analyzed. In this case
there is no later point at which the aspect specification would
be examined.
2013-10-10 Bob Duff <duff@adacore.com>
* opt.ads: Minor comment fix.
2013-10-10 Vadim Godunko <godunko@adacore.com>
* a-coinho-shared.ads, a-coinho-shared.adb: New file.
* s-atocou.ads: Add procedure to initialize counter.
* s-atocou.adb: Likewise.
* s-atocou-builtin.adb: Likewise.
* s-atocou-x86.adb: Likewise.
* gcc-interface/Makefile.in: Select special version of
Indefinite_Holders package on platforms where atomic built-ins
are supported. Update tools target pairs for PikeOS.
From-SVN: r203344
Diffstat (limited to 'gcc/ada/gcc-interface/Makefile.in')
-rw-r--r-- | gcc/ada/gcc-interface/Makefile.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ada/gcc-interface/Makefile.in b/gcc/ada/gcc-interface/Makefile.in index 2c51a00..067d5a1 100644 --- a/gcc/ada/gcc-interface/Makefile.in +++ b/gcc/ada/gcc-interface/Makefile.in @@ -408,6 +408,8 @@ DUMMY_SOCKETS_TARGET_PAIRS = \ # special version of Ada.Strings.Unbounded package can be used. ATOMICS_TARGET_PAIRS = \ + a-coinho.adb<a-coinho-shared.adb \ + a-coinho.ads<a-coinho-shared.ads \ a-stunau.adb<a-stunau-shared.adb \ a-suteio.adb<a-suteio-shared.adb \ a-strunb.ads<a-strunb-shared.ads \ @@ -1581,6 +1583,13 @@ ifeq ($(strip $(filter-out alpha64 ia64 dec hp vms% openvms% alphavms%,$(target_ LIBRARY_VERSION := $(subst .,_,$(LIB_VERSION)) endif +# PikeOS +ifeq ($(strip $(filter-out powerpc% %86 sysgo pikeos,$(target_cpu) $(target_vendor) $(target_os)))),) + TOOLS_TARGET_PAIRS=\ + mlib-tgt-specific.adb<mlib-tgt-specific-xi.adb \ + indepsw.adb<indepsw-gnu.adb +endif + # *-elf, *-eabi or *-eabispe ifeq ($(strip $(filter-out elf eabi eabispe,$(target_os))),) TOOLS_TARGET_PAIRS=\ |