[ http://issues.apache.org/jira/browse/STDCXX-197?page=all ]
Martin Sebor updated STDCXX-197:
--------------------------------
Summary: [Mac OS X] wrong shared library suffix (was: Shared libraries on Mac OS X (Darwin)
use '.dylib' suffix.)
> [Mac OS X] wrong shared library suffix
> --------------------------------------
>
> Key: STDCXX-197
> URL: http://issues.apache.org/jira/browse/STDCXX-197
> Project: C++ Standard Library
> Type: Bug
> Components: Build
> Versions: 4.1.3, 4.1.4
> Environment: Darwin cyphrus.local 8.6.1 Darwin Kernel Version 8.6.1: Tue Mar 7 16:55:45
PST 2006; root:xnu-792.9.22.obj~1/RELEASE_I386 i386 i386
> Reporter: Eric Lemings
> Assignee: Martin Sebor
> Fix For: 4.2
>
> Shared libraries on Mac OS X (Darwin) use '.dylib' suffix instead of the traditional
'.so' suffix on most Unix systems.
> Proposed patch:
> Index: etc/config/gcc.config
> ===================================================================
> --- etc/config/gcc.config (revision 411913)
> +++ etc/config/gcc.config (working copy)
> @@ -138,6 +138,10 @@
> SHARED_SUFFIX = .sl
> endif
>
> +ifeq ($(OSNAME),Darwin)
> + SHARED_SUFFIX = .dylib
> +endif
> +
> STATIC_CXXFLAGS =
> STATIC_CPPFLAGS =
> STATIC_LDFLAGS =
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|