Advertisement
tobast

Untitled

May 6th, 2016
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. # The compiler itself
  2. requires = ""
  3. version = "[distributed with Ocaml]"
  4. description = "compiler-libs support library"
  5. directory= "+compiler-libs"
  6.  
  7. package "common" (
  8. requires = "compiler-libs"
  9. version = "[distributed with Ocaml]"
  10. description = "Common compiler routines"
  11. archive(byte) = "ocamlcommon.cma"
  12. archive(native) = "ocamlcommon.cmxa"
  13. )
  14.  
  15. package "bytecomp" (
  16. requires = "compiler-libs.common"
  17. version = "[distributed with Ocaml]"
  18. description = "Bytecode compiler"
  19. archive(byte) = "ocamlbytecomp.cma"
  20. archive(native) = "ocamlbytecomp.cmxa"
  21. )
  22.  
  23. package "optcomp" (
  24. requires = "compiler-libs.common"
  25. version = "[distributed with Ocaml]"
  26. description = "Native-code compiler"
  27. archive(byte) = "ocamloptcomp.cma"
  28. archive(native) = "ocamloptcomp.cmxa"
  29. exists_if = "ocamloptcomp.cma"
  30. )
  31.  
  32. package "toplevel" (
  33. requires = "compiler-libs.bytecomp"
  34. version = "[distributed with Ocaml]"
  35. description = "Toplevel interactions"
  36. archive(byte) = "ocamltoplevel.cma"
  37. archive(native) = "ocamltoplevel.cmxa"
  38. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement