diff options
author | rmh <rmh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-08 20:11:21 +0000 |
---|---|---|
committer | rmh <rmh@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-08 20:11:21 +0000 |
commit | 916f3b2a421a26d3a433ef222b1357ebbafc2cb2 (patch) | |
tree | d818f7fee55ca88abac079023c7aed074808b830 /gcc/ada/Makefile.in | |
parent | 87c04426871c910452a2761ebb048f85dad1bae3 (diff) | |
download | gcc-916f3b2a421a26d3a433ef222b1357ebbafc2cb2.tar.gz |
2006-04-08 Aurelien Jarno <aurel32@debian.org>
* Makefile.in: Add Ada support for GNU/kFreeBSD.
* s-osinte-kfreebsd-gnu.ads: New file.
Approved by: Arnaud Charlet <charlet@adacore.com>
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112786 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/Makefile.in')
-rw-r--r-- | gcc/ada/Makefile.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/ada/Makefile.in b/gcc/ada/Makefile.in index b3c3538c3f5..2c69b4a47a6 100644 --- a/gcc/ada/Makefile.in +++ b/gcc/ada/Makefile.in @@ -794,6 +794,34 @@ ifeq ($(strip $(filter-out %86 linux%,$(arch) $(osys))),) LIBRARY_VERSION := $(LIB_VERSION) endif +ifeq ($(strip $(filter-out %86 kfreebsd%,$(arch) $(osys))),) + LIBGNAT_TARGET_PAIRS = \ + a-intnam.ads<a-intnam-freebsd.ads \ + a-numaux.adb<a-numaux-x86.adb \ + a-numaux.ads<a-numaux-x86.ads \ + s-inmaop.adb<s-inmaop-posix.adb \ + s-intman.adb<s-intman-posix.adb \ + g-soccon.ads<g-soccon-freebsd.ads \ + s-osinte.adb<s-osinte-posix.adb \ + s-osinte.ads<s-osinte-kfreebsd-gnu.ads \ + s-osprim.adb<s-osprim-posix.adb \ + s-taprop.adb<s-taprop-linux.adb \ + s-taspri.ads<s-taspri-posix.ads \ + s-tpopsp.adb<s-tpopsp-posix-foreign.adb \ + system.ads<system-freebsd-x86.ads + + TOOLS_TARGET_PAIRS = \ + mlib-tgt.adb<mlib-tgt-linux.adb \ + indepsw.adb<indepsw-gnu.adb + + SYMLIB = -laddr2line -lbfd -liberty $(LIBINTL) + THREADSLIB = -lpthread + GNATLIB_SHARED = gnatlib-shared-dual + GMEM_LIB = gmemlib + PREFIX_OBJS = $(PREFIX_REAL_OBJS) + LIBRARY_VERSION := $(LIB_VERSION) +endif + ifeq ($(strip $(filter-out %86 freebsd%,$(arch) $(osys))),) LIBGNAT_TARGET_PAIRS = \ a-intnam.ads<a-intnam-freebsd.ads \ |