| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0004183 | OCaml | OCaml general | public | 2006-12-07 22:02 | 2007-02-21 13:38 |
|
| Reporter | kballard | |
| Assigned To | | |
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | fixed | |
| Platform | | OS | | OS Version | |
| Product Version | 3.09.3 | |
| Target Version | | Fixed in Version | 3.10+dev | |
|
| Summary | 0004183: OCaml doesn't detect i686-apple-darwin for dynamic linking |
| Description | When configuring OCaml. it only detects powerpc-apple-darwin* when determining if dynamic linking is supported. i686-apple-darwin* should also be detected, as they support the same features. I patched it locally and it works perfectly fine. |
| Tags | No tags attached. |
|
| Attached Files | patch-configure [^] (461 bytes) 2006-12-07 22:02 [Show Content] [Hide Content]--- configure 2006-03-30 19:00:19.000000000 +0900
+++ configure 2006-12-07 14:07:21.000000000 +0900
@@ -536,7 +536,7 @@
byteccrpath="-Wl,-rpath,"
mksharedlibrpath="-rpath "
shared_libraries_supported=true;;
- powerpc-apple-darwin*)
+ powerpc-apple-darwin*|i686-apple-darwin*)
mksharedlib="cc -bundle -flat_namespace -undefined suppress -o"
bytecccompopts="$dl_defs $bytecccompopts"
#sharedcccompopts="-fnocommon"
|
|