7 lines
127 B
OCaml
7 lines
127 B
OCaml
let flags =
|
|
match Sys.win32 with
|
|
| true -> "()"
|
|
| false -> "(-Wall -O3 -funroll-loops)"
|
|
|
|
let () =
|
|
print_endline flags
|