File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 finding a reference counting bug when handling exceptions.
88- Fixed collation link freeing bug. Thanks to ` o3-mini-high ` for suggesting the
99 fix without even being prompted (minus-shot).
10+ - Remove ` -O2 ` compiler flag since optimization flags owned by and can conflict
11+ with ` ocamlc -config ` .
1012
1113## [ 5.3.0] - 2025-01-20
1214
Original file line number Diff line number Diff line change @@ -71,9 +71,8 @@ let split_ws str =
7171let add_compiler_args ~is_msvc ~cflags ~libs =
7272 let module C = Configurator. V1 in
7373 match is_msvc with
74- | true -> { C.Pkg_config. cflags = cflags @ [ " /O2" ]; libs }
75- | false ->
76- { C.Pkg_config. cflags = cflags @ [ " -O2" ; " -fPIC" ; " -DPIC" ]; libs }
74+ | true -> { C.Pkg_config. cflags; libs }
75+ | false -> { C.Pkg_config. cflags = cflags @ [ " -fPIC" ; " -DPIC" ]; libs }
7776
7877let () =
7978 let module C = Configurator. V1 in
You can’t perform that action at this time.
0 commit comments