| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0004086 | OCaml | OCaml general | public | 2006-08-17 10:52 | 2007-02-21 16:20 |
|
| Reporter | cookedm | |
| Assigned To | xleroy | |
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | fixed | |
| Platform | | OS | | OS Version | |
| Product Version | 3.09.2 | |
| Target Version | | Fixed in Version | 3.10+dev | |
|
| Summary | 0004086: Add support for shared libraries with Intel Macs |
| Description | As far as I can tell, Intel Macs support shared libraries just like PPC ones. This one-line patch allows them to be used. |
| Tags | No tags attached. |
|
| Attached Files | intel-mac-shared-libraries.patch [^] (515 bytes) 2006-08-17 10:52 [Show Content] [Hide Content]diff -r a0db22cd0634 -r 69339d9f7f41 configure
--- a/configure Wed Aug 16 22:57:21 2006 -0400
+++ b/configure Wed Aug 16 22:59:12 2006 -0400
@@ -536,7 +536,7 @@ if test $withsharedlibs = "yes"; then
byteccrpath="-Wl,-rpath,"
mksharedlibrpath="-rpath "
shared_libraries_supported=true;;
- powerpc-apple-darwin*)
+ *-apple-darwin*)
mksharedlib="cc -bundle -flat_namespace -undefined suppress -o"
bytecccompopts="$dl_defs $bytecccompopts"
#sharedcccompopts="-fnocommon"
|
|