| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0004528 | OCaml | OCaml general | public | 2008-04-07 10:38 | 2012-09-25 20:06 |
|
| Reporter | berke | |
| Assigned To | xclerc | |
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | fixed | |
| Platform | | OS | | OS Version | |
| Product Version | 3.11+dev | |
| Target Version | | Fixed in Version | 3.12.0 | |
|
| Summary | 0004528: Objinfo should print DLLs required by a .cma |
| Description | Objinfo doesn't print dynamically linked libraries requires in a .cma.
The included 2-line patch fixes this.
|
| Tags | No tags attached. |
|
| Attached Files | objinfo-patch [^] (654 bytes) 2008-04-07 10:38 [Show Content] [Hide Content]Index: objinfo.ml
===================================================================
RCS file: /caml/ocaml/tools/objinfo.ml,v
retrieving revision 1.11
diff -u -r1.11 objinfo.ml
--- objinfo.ml 5 Jul 2006 12:09:18 -0000 1.11
+++ objinfo.ml 7 Apr 2008 08:36:30 -0000
@@ -51,6 +51,8 @@
List.iter print_spaced_string lib.lib_ccobjs; print_newline();
print_string " Extra C options:";
List.iter print_spaced_string lib.lib_ccopts; print_newline();
+ print_string " Dynamically linked libraries:";
+ List.iter print_spaced_string lib.lib_dllibs; print_newline();
List.iter print_info lib.lib_units
let print_intf_info name sign comps crcs =
|
|