File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 9898 (name backtrace)
9999 (libraries domainslib)
100100 (modules backtrace)
101+ (enabled_if (<> %{system} mingw64)) ;; triggers a known issue on mingw https://github.com/ocaml/ocaml/pull/12231
101102 (modes byte native))
102103 ;; byte_complete .exes don't include debug+trace info https://github.com/ocaml/dune/issues/7845
103104 ;; so on a bytecode switch/platform we build a plain bytecode version w/trace info
104105 ;; and rename it to .exe
105106(rule
106107 (target backtrace.exe)
107108 (action (copy backtrace.bc backtrace.exe))
108- (enabled_if (= %{bin-available:ocamlopt} false)))
109+ (enabled_if (and ( = %{bin-available:ocamlopt} false) (<> %{system} mingw64) )))
109110
110111(test
111112 (name off_by_one)
You can’t perform that action at this time.
0 commit comments