diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-04-09 14:57:47 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-04-09 14:57:47 +0200 |
commit | 59f3dd0a14fa4d4ce7ee142068cf9c5e376efc27 (patch) | |
tree | e817317357d86a40016656e79c3caae9cafafce4 /gcc/ada/gcc-interface | |
parent | 8dc2ddaf050c1bf8da0462ae550156089bbe4d5b (diff) | |
download | gcc-59f3dd0a14fa4d4ce7ee142068cf9c5e376efc27.zip gcc-59f3dd0a14fa4d4ce7ee142068cf9c5e376efc27.tar.gz gcc-59f3dd0a14fa4d4ce7ee142068cf9c5e376efc27.tar.bz2 |
[multiple changes]
2009-04-09 Robert Dewar <dewar@adacore.com>
* sem_ch5.adb: Minor reformatting
2009-04-09 Vincent Celier <celier@adacore.com>
* vms_data.ads:
Change GNAT CHECK qualifier /DIAGNOSIS_LIMIT to /DIAGNOSTIC_LIMIT
New qualifier /LEXPAND_SOURCE=nnn for -gnatGnnn
New qualifier /LXDEBUG=nnn for -gnatDnnn
For H820-010
* gnat_ugn.texi:
Update documentation for VMS qualifiers equivalent to -gnatGnn and
-gnatDnn
2009-04-09 Nicolas Setton <setton@adacore.com>
* s-osinte-darwin.ads: (Pad_Type): Make this an array of unsigned_long,
to match layout of siginfo_t in sys/signal.h.
* gcc-interface/Makefile.in: Add section for x86_64 darwin.
2009-04-09 Thomas Quinot <quinot@adacore.com>
* g-socket.ads: (Fd_Set): Use Interfaces.C.long alignment.
2009-04-09 Nicolas Setton <setton@adacore.com>
* s-oscons-tmplt.c: Allow long lines in the generated spec.
Add generation of Darwin-specific constants needed when binding to the
pthread library.
From-SVN: r145837
Diffstat (limited to 'gcc/ada/gcc-interface')
-rw-r--r-- | gcc/ada/gcc-interface/Makefile.in | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/gcc/ada/gcc-interface/Makefile.in b/gcc/ada/gcc-interface/Makefile.in index c431118..8d0d92c 100644 --- a/gcc/ada/gcc-interface/Makefile.in +++ b/gcc/ada/gcc-interface/Makefile.in @@ -1729,7 +1729,25 @@ ifeq ($(strip $(filter-out darwin%,$(osys))),) LIBGNAT_TARGET_PAIRS += \ system.ads<system-darwin-x86.ads endif - else + endif + + ifeq ($(strip $(filter-out %x86_64,$(arch))),) + LIBGNAT_TARGET_PAIRS = \ + a-intnam.ads<a-intnam-darwin.ads \ + s-inmaop.adb<s-inmaop-posix.adb \ + s-intman.adb<s-intman-posix.adb \ + s-osinte.adb<s-osinte-darwin.adb \ + s-osinte.ads<s-osinte-darwin.ads \ + s-osprim.adb<s-osprim-posix.adb \ + s-taprop.adb<s-taprop-posix.adb \ + s-taspri.ads<s-taspri-posix.ads \ + s-tpopsp.adb<s-tpopsp-posix-foreign.adb \ + a-numaux.ads<a-numaux-x86.ads \ + a-numaux.adb<a-numaux-x86.adb \ + system.ads<system-darwin-x86_64.ads + endif + + ifeq ($(strip $(filter-out powerpc%,$(arch))),) LIBGNAT_TARGET_PAIRS = \ a-intnam.ads<a-intnam-darwin.ads \ s-inmaop.adb<s-inmaop-posix.adb \ |