Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Treggiari2005-07-10 03:19:36 +0000
committerLeo Treggiari2005-07-10 03:19:36 +0000
commitc733971c6173efa3351d71b349b18b10c8459e62 (patch)
tree1b5ab1faa458f12398bfe0b93b160494e86dbcab
parent0b7470dc63416d000b728de0be0f3ea0eb48fec8 (diff)
downloadorg.eclipse.cdt-c733971c6173efa3351d71b349b18b10c8459e62.tar.gz
org.eclipse.cdt-c733971c6173efa3351d71b349b18b10c8459e62.tar.xz
org.eclipse.cdt-c733971c6173efa3351d71b349b18b10c8459e62.zip
Ise -dynamiclib for creating shared libraries on MacOS X
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties2
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml4
2 files changed, 3 insertions, 3 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties
index 18b7214e23f..e0627c9b7e6 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.properties
@@ -149,4 +149,4 @@ Option.Windows.Windres.OutputFormat = Output format
Option.Windows.Windres.OutputFormat.Coff = coff (--output-format coff)
Option.Windows.Windres.OutputFormat.RC = rc (--output-format rc)
Option.Windows.Windres.OutputFormat.Res = res (--output-format res)
-Option.MacOSX.Linker.Shared=Shared (-Wl,-dylib)
+Option.MacOSX.Linker.Shared=Shared (-dynamiclib)
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
index 647e1dbe77d..d8be26e1d6a 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
@@ -602,7 +602,7 @@
defaultValue="false"
name="%Option.MacOSX.Linker.Shared"
category="macosx.c.link.category.shared"
- command="-Wl,-dylib"
+ command="-dynamiclib"
id="macosx.c.link.option.shared"
valueType="boolean">
</option>
@@ -732,7 +732,7 @@
defaultValue="false"
name="%Option.MacOSX.Linker.Shared"
category="macosx.cpp.link.category.shared"
- command="-Wl,-dylib"
+ command="-dynamiclib"
valueType="boolean"
id="macosx.cpp.link.option.shared">
</option>

Back to the top