diff options
| author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-04 13:28:28 +0000 |
|---|---|---|
| committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-07-04 13:28:28 +0000 |
| commit | 5bf98b4037522bfeea9941b94a0c03c69c4e0ca3 (patch) | |
| tree | 0239655ccfcc8e901186963eaaf656ab528a5d41 | |
| parent | bdc3676172b8fe5ba21243c42c3294768d1dfccc (diff) | |
| download | ppe42-gcc-5bf98b4037522bfeea9941b94a0c03c69c4e0ca3.tar.gz ppe42-gcc-5bf98b4037522bfeea9941b94a0c03c69c4e0ca3.zip | |
2005-07-04 Matthew Gingell <gingell@adacore.com>
* Makefile.in: Replace indepsw-linux.adb by indepsw-gnu.adb
* indepsw-linux.adb: Replace by...
* indepsw-gnu.adb: ...this new file
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@101581 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ada/Makefile.in | 18 | ||||
| -rw-r--r-- | gcc/ada/indepsw-gnu.adb (renamed from gcc/ada/indepsw-linux.adb) | 6 |
2 files changed, 13 insertions, 11 deletions
diff --git a/gcc/ada/Makefile.in b/gcc/ada/Makefile.in index f46e0a1dbe3..67186ec2b6b 100644 --- a/gcc/ada/Makefile.in +++ b/gcc/ada/Makefile.in @@ -813,7 +813,7 @@ ifeq ($(strip $(filter-out %86 linux%,$(arch) $(osys))),) TOOLS_TARGET_PAIRS = \ mlib-tgt.adb<mlib-tgt-linux.adb \ - indepsw.adb<indepsw-linux.adb + indepsw.adb<indepsw-gnu.adb THREADSLIB = -lpthread GNATLIB_SHARED = gnatlib-shared-dual @@ -1067,7 +1067,9 @@ ifeq ($(strip $(filter-out ibm aix%,$(manu) $(osys))),) endif ifeq ($(strip $(filter-out lynxos,$(osys))),) - TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-lynxos.adb + TOOLS_TARGET_PAIRS = \ + mlib-tgt.adb<mlib-tgt-lynxos.adb \ + indepsw.adb<indepsw-gnu.adb ifeq ($(strip $(filter-out %86 lynxos,$(arch) $(osys))),) LIBGNAT_TARGET_PAIRS = \ @@ -1321,7 +1323,7 @@ ifeq ($(strip $(filter-out powerpc% linux%,$(arch) $(osys))),) TOOLS_TARGET_PAIRS = \ mlib-tgt.adb<mlib-tgt-linux.adb \ - indepsw.adb<indepsw-linux.adb + indepsw.adb<indepsw-gnu.adb THREADSLIB = -lpthread GNATLIB_SHARED = gnatlib-shared-dual @@ -1346,7 +1348,7 @@ ifeq ($(strip $(filter-out sparc% linux%,$(arch) $(osys))),) TOOLS_TARGET_PAIRS = \ mlib-tgt.adb<mlib-tgt-linux.adb \ - indepsw.adb<indepsw-linux.adb + indepsw.adb<indepsw-gnu.adb THREADSLIB = -lpthread GNATLIB_SHARED = gnatlib-shared-dual @@ -1371,7 +1373,7 @@ ifeq ($(strip $(filter-out hppa% linux%,$(arch) $(osys))),) TOOLS_TARGET_PAIRS = \ mlib-tgt.adb<mlib-tgt-linux.adb \ - indepsw.adb<indepsw-linux.adb + indepsw.adb<indepsw-gnu.adb THREADSLIB = -lpthread GNATLIB_SHARED = gnatlib-shared-dual @@ -1396,7 +1398,7 @@ ifeq ($(strip $(filter-out %ia64 linux%,$(arch) $(osys))),) TOOLS_TARGET_PAIRS = \ mlib-tgt.adb<mlib-tgt-linux.adb \ - indepsw.adb<indepsw-linux.adb + indepsw.adb<indepsw-gnu.adb MISCLIB= THREADSLIB=-lpthread @@ -1421,7 +1423,7 @@ ifeq ($(strip $(filter-out alpha% linux%,$(arch) $(osys))),) TOOLS_TARGET_PAIRS = \ mlib-tgt.adb<mlib-tgt-linux.adb \ - indepsw.adb<indepsw-linux.adb + indepsw.adb<indepsw-gnu.adb MISCLIB= THREADSLIB=-lpthread @@ -1447,7 +1449,7 @@ ifeq ($(strip $(filter-out %x86_64 linux%,$(arch) $(osys))),) TOOLS_TARGET_PAIRS = \ mlib-tgt.adb<mlib-tgt-linux.adb \ - indepsw.adb<indepsw-linux.adb + indepsw.adb<indepsw-gnu.adb THREADSLIB=-lpthread GNATLIB_SHARED=gnatlib-shared-dual diff --git a/gcc/ada/indepsw-linux.adb b/gcc/ada/indepsw-gnu.adb index 113f5958bb7..44cd6bf65e2 100644 --- a/gcc/ada/indepsw-linux.adb +++ b/gcc/ada/indepsw-gnu.adb @@ -5,9 +5,9 @@ -- I N D E P S W -- -- -- -- B o d y -- --- (GNU/Linux version) -- +-- (GNU version) -- -- -- --- Copyright (C) 2004 Free Software Foundation, Inc. -- +-- Copyright (C) 2005 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -32,7 +32,7 @@ -- -- ------------------------------------------------------------------------------ --- This is the GNU/Linux version +-- This is the GNU ld version package body Indepsw is |

