aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/mlib-tgt-specific-darwin.adb
diff options
context:
space:
mode:
authorIain Sandoe <iains@gcc.gnu.org>2011-09-24 20:25:42 +0000
committerIain Sandoe <iains@gcc.gnu.org>2011-09-24 20:25:42 +0000
commit655ae828ee2810a2247d859d1975c4f523632fd3 (patch)
treec8b50e23c31ff38fd190117abd7f55151fbafca9 /gcc/ada/mlib-tgt-specific-darwin.adb
parentae0d176cbca039186ec546104e6447ad422e9ebd (diff)
downloadgcc-655ae828ee2810a2247d859d1975c4f523632fd3.zip
gcc-655ae828ee2810a2247d859d1975c4f523632fd3.tar.gz
gcc-655ae828ee2810a2247d859d1975c4f523632fd3.tar.bz2
ada, remove flat_namespace library option from darwin port build/defaults :
* gcc-interface/Makefile.in (darwin): Do not issue the '-flat_namespace' linker flag during Ada build. * mlib-tgt-specific-darwin.adb: Remove '-flat_namespace' flag from the default shared library options. From-SVN: r179148
Diffstat (limited to 'gcc/ada/mlib-tgt-specific-darwin.adb')
-rw-r--r--gcc/ada/mlib-tgt-specific-darwin.adb7
1 files changed, 1 insertions, 6 deletions
diff --git a/gcc/ada/mlib-tgt-specific-darwin.adb b/gcc/ada/mlib-tgt-specific-darwin.adb
index 5bab21df..e042253 100644
--- a/gcc/ada/mlib-tgt-specific-darwin.adb
+++ b/gcc/ada/mlib-tgt-specific-darwin.adb
@@ -57,15 +57,10 @@ package body MLib.Tgt.Specific is
-- Local objects
- Flat_Namespace : aliased String := "-Wl,-flat_namespace";
- -- Instruct the linker to build the shared library as a flat
- -- namespace image. The default is a two-level namespace image.
-
Shared_Libgcc : aliased String := "-shared-libgcc";
Shared_Options : constant Argument_List :=
- (1 => Flat_Namespace'Access,
- 2 => Shared_Libgcc'Access);
+ (1 => Shared_Libgcc'Access);
-----------------------------
-- Archive_Indexer_Options --