-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path_oasis
69 lines (61 loc) · 2.08 KB
/
_oasis
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
OASISFormat: 0.2
Name: ocamlnat
Version: 0.2.0+dev
OCamlVersion: >= 3.12.1
LicenseFile: LICENSE
License: QPL
BuildType: ocamlbuild (0.2)
Authors:
Benedikt Meurer <[email protected]>,
Marcell Fischbach <[email protected]>
Maintainers: Benedikt Meurer <[email protected]>
Copyrights:
(c) 1996-2011 INRIA Rocquencourt,
(c) 2010-2011 Benedikt Meurer,
(c) 2011 University of Siegen
Homepage: http://benediktmeurer.de/ocamlnat
Plugins: DevFiles (0.2), StdFiles (0.2)
BuildTools: ocamlbuild
Synopsis: A native toplevel for the OCaml language
Description:
The native toplevel permits interactive use of OCaml system through
a read-eval-print loop, similar to the standard OCaml toplevel that
ships with OCaml. But while the standard OCaml toplevel makes use
of the byte code compiler and runtime to compile and execute the
toplevel phrases, ocamlnat uses the optimizing native code compiler
and its runtime for compilation and code execution, which is up to
100 times faster than the byte code runtime.
ocamlnat currently supports amd64 and i386 systems running either
Linux or Mac OS X. It may also work with Microsoft Windows, but we
don't officially support it.
XStdFilesAUTHORSFileName: AUTHORS
XStdFilesINSTALLFileName: INSTALL
XStdFilesREADMEFileName: README
Flag final
Default: true
Description: Toggle final/debug configuration
Executable ocamlnat
Path: src
MainIs: ocamlnat.ml
CSources: jitrun/camlnat.h, jitrun/mem.c, jitrun/str.c, jitrun/sym.c
if flag(final)
CCOpt: -DNDEBUG
ByteOpt: -noassert -unsafe
NativeOpt: -noassert -nodynlink -unsafe
BuildDepends: dynlink, findlib (>= 1.2.7)
CompiledObject: native
Executable test
Path: tests
MainIs: test.ml
Install: false
BuildDepends: oUnit (>= 1.1.0)
CompiledObject: best
Test main
TestTools: ocamlnat, test
Command: $test -ocamlnat $ocamlnat
WorkingDirectory: tests
SourceRepository master
Type: git
Branch: master
Browser: https://github.com/bmeurer/ocamlnat
Location: git://github.com/bmeurer/ocamlnat.git