diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-04-29 08:30:56 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-04-29 08:30:56 +0000 |
commit | c645a7ed351cb75699bab1963cc699d0c0af10ac (patch) | |
tree | f58d9acc5166a918b463a742c121e508d5c8a66e /lang/Makefile | |
parent | 388c6e73b80098310c12aaeceaff640a3b88fc72 (diff) | |
download | ports-c645a7ed351cb75699bab1963cc699d0c0af10ac.tar.gz ports-c645a7ed351cb75699bab1963cc699d0c0af10ac.zip |
Add libjit 0.0.0f,
The libjit library implements Just-In-Time compilation
functionality. Unlike other JIT's, this one is designed to be
independent of any particular virtual machine bytecode format
or language. The hope is that Free Software projects can get a
leg-up on proprietry VM vendors by using this library rather
than spending large amounts of time writing their own JIT from
scratch.
This JIT is also designed to be portable to multiple
archictures. If you run libjit on a machine for which a native
code generator is not yet available, then libjit will fall back
to interpreting the code. This way, you don't need to write
your own interpreter for your bytecode format if you don't want
to.
PR: ports/66038
Submitted by: michael johnson <ahze@ahze.net>
Notes
Notes:
svn path=/head/; revision=107945
Diffstat (limited to 'lang/Makefile')
-rw-r--r-- | lang/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/Makefile b/lang/Makefile index 9e056640e441..90fb502b885c 100644 --- a/lang/Makefile +++ b/lang/Makefile @@ -115,6 +115,7 @@ SUBDIR += klogoturtle SUBDIR += klone SUBDIR += lafontaine + SUBDIR += libjit SUBDIR += librep SUBDIR += libutils SUBDIR += linux-j |