File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,10 @@ Working version
88
88
89
89
### Tools:
90
90
91
+ - #9276: objinfo: cm[x]a print extra C options, objects and dlls in
92
+ the order given on the cli. Follow up to #4949.
93
+ (Daniel Bünzli, review by Gabriel Scherer)
94
+
91
95
- #463: objinfo: better errors on object files coming
92
96
from a different (older or newer), incompatible compiler version.
93
97
(Gabriel Scherer, review by Gabriel Radanne and Damien Doligez)
Original file line number Diff line number Diff line change @@ -87,10 +87,10 @@ let print_cma_infos (lib : Cmo_format.library) =
87
87
(* PR#4949: print in linking order *)
88
88
List. iter print_spaced_string (List. rev lib.lib_ccobjs);
89
89
printf " \n Extra C options:" ;
90
- List. iter print_spaced_string lib.lib_ccopts;
90
+ List. iter print_spaced_string ( List. rev lib.lib_ccopts) ;
91
91
printf " \n " ;
92
92
print_string " Extra dynamically-loaded libraries:" ;
93
- List. iter print_spaced_string lib.lib_dllibs;
93
+ List. iter print_spaced_string ( List. rev lib.lib_dllibs) ;
94
94
printf " \n " ;
95
95
List. iter print_cmo_infos lib.lib_units
96
96
@@ -179,7 +179,7 @@ let print_cmxa_infos (lib : Cmx_format.library_infos) =
179
179
printf " Extra C object files:" ;
180
180
List. iter print_spaced_string (List. rev lib.lib_ccobjs);
181
181
printf " \n Extra C options:" ;
182
- List. iter print_spaced_string lib.lib_ccopts;
182
+ List. iter print_spaced_string ( List. rev lib.lib_ccopts) ;
183
183
printf " \n " ;
184
184
List. iter print_cmx_infos lib.lib_units
185
185
You can’t perform that action at this time.
0 commit comments