| Anonymous | Login | Signup for a new account | 2013-05-22 04:12 CEST | ![]() |
| Main | My View | View Issues | Change Log | Roadmap |
| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] | ||||||||||
| ID | Project | Category | View Status | Date Submitted | Last Update | ||||||
| 0005822 | OCaml | OCamlbuild (the tool) | public | 2012-11-14 10:41 | 2012-11-14 10:41 | ||||||
| Reporter | daweil | ||||||||||
| Assigned To | |||||||||||
| Priority | normal | Severity | minor | Reproducibility | always | ||||||
| Status | new | Resolution | open | ||||||||
| Platform | Windows | OS | OS Version | ||||||||
| Product Version | 4.00.1 | ||||||||||
| Target Version | Fixed in Version | ||||||||||
| Summary | 0005822: wrong value of Options.ext_dll on windows | ||||||||||
| Description | Options.ext_dll has value "s.obj" instead of "dll" on windows. I propose the following path: --- ocaml-4.00.1/ocamlbuild/options.ml Thu Apr 26 00:17:16 2012 +++ ocaml-4.00.1_patched/ocamlbuild/options.ml Wed Nov 14 09:12:18 2012 @@ -80,7 +80,11 @@ let recursive = ref false let ext_lib = ref Ocamlbuild_Myocamlbuild_config.a let ext_obj = ref Ocamlbuild_Myocamlbuild_config.o -let ext_dll = ref Ocamlbuild_Myocamlbuild_config.so +(* let ext_dll = ref Ocamlbuild_Myocamlbuild_config.so *) +let ext_dll = + let s = Ocamlbuild_Myocamlbuild_config.ext_dll in + ref (String.sub s 1 (String.length s - 1)) + let exe = ref Ocamlbuild_Myocamlbuild_config.exe let targets_internal = ref [] | ||||||||||
| Tags | No tags attached. | ||||||||||
| Attached Files | |||||||||||
Issue History |
|||
| Date Modified | Username | Field | Change |
| 2012-11-14 10:41 | daweil | New Issue | |
| Copyright © 2000 - 2011 MantisBT Group |