2

Is there a way to keep the assembly files when building with OASIS?

I'm looking for something simpler than directly using ocamlopt -S.

Antoine
  • 1,782
  • 1
  • 14
  • 32

1 Answers1

2

Use NativeOpt field to specify this flag:

Executable "prog"
  Path:           src
  MainIs:         main.ml
  Install:        true
  NativeOpt:      -S
  CompiledObject: best
ivg
  • 34,431
  • 2
  • 35
  • 63