This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] ada: Add dynamic library support for GNAT 4.3.0 on x86-*-Darwin8


Hi,

The patchfile below fixes the bug 34284:

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34284

---------------------------------------------------------------
2007-11-29  Bechir Zalila  <bechir.zalila@gmail.com>

	* gnattools/configure.ac: Added a missing switch case for
	*86-*-darwin* when defining the value of TOOLS_TARGET_PAIRS.

	* gnattools/configure: regenerated

=============================================================================
Index: gnattools/configure
===================================================================
--- gnattools/configure	(revision 130291)
+++ gnattools/configure	(working copy)
@@ -1667,7 +1667,7 @@
     indepsw.adb<indepsw-mingw.adb"
     EXTRA_GNATTOOLS='../../gnatdll$(exeext)'
     ;;
-  powerpc-*-darwin*)
+  powerpc-*-darwin* | *86-*-darwin*)
     TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-darwin.adb"
     ;;
   *-*-lynxos)
Index: gnattools/configure.ac
===================================================================
--- gnattools/configure.ac	(revision 130291)
+++ gnattools/configure.ac	(working copy)
@@ -150,7 +150,7 @@
     indepsw.adb<indepsw-mingw.adb"
     EXTRA_GNATTOOLS='../../gnatdll$(exeext)'
     ;;
-  powerpc-*-darwin*)
+  powerpc-*-darwin* | *86-*-darwin*)
     TOOLS_TARGET_PAIRS="mlib-tgt-specific.adb<mlib-tgt-darwin.adb"
     ;;
   *-*-lynxos)

-- 
Bechir


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]