diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-07-27 15:38:11 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-07-27 15:38:11 +0000 |
commit | f8643cc0c333379bf08920f7a78623189df9c9a4 (patch) | |
tree | 56d61fb966bbd257e7a60a414f39218e10fdb274 /packages/jamvm/jamvm-initial_1.4.5.bb | |
parent | 6271375d8dedfae87376847c2942f2d9fda43e4f (diff) | |
parent | 576108f93e655ea83b09f28ab9307d99f4127a10 (diff) |
merge of 'c167fd3cbb5184fbfe56dff8fbb57e988ce58f51'
and 'c2418aed48373f06d423da2fe5a3d3fb44b61cdb'
Diffstat (limited to 'packages/jamvm/jamvm-initial_1.4.5.bb')
-rw-r--r-- | packages/jamvm/jamvm-initial_1.4.5.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/packages/jamvm/jamvm-initial_1.4.5.bb b/packages/jamvm/jamvm-initial_1.4.5.bb new file mode 100644 index 0000000000..c71811dd4e --- /dev/null +++ b/packages/jamvm/jamvm-initial_1.4.5.bb @@ -0,0 +1,38 @@ +SUMMARY = "A compact Java Virtual Machine which conforms to the JVM specification version 2." +HOMEPAGE = "http://jamvm.sourceforge.net/" +LICENSE = "GPL" + +DEPENDS = "zlib-native classpath-initial jikes-initial" + +PR = "r0" + +PROVIDES = "virtual/java-initial" + +S = "${WORKDIR}/jamvm-${PV}" + +SRC_URI = "${SOURCEFORGE_MIRROR}/jamvm/jamvm-${PV}.tar.gz \ + file://jamvm_${PV}-initial.patch;patch=1;pnum=1 \ + " + +# This uses 32 bit arm, so force the instruction set to arm, not thumb +ARM_INSTRUCTION_SET = "arm" + +inherit native autotools + +EXTRA_OECONF = "\ + --with-classpath-install-dir=${prefix} \ + --program-suffix=-initial \ + " + +CFLAGS += "-DDEFAULT_MAX_HEAP=16*MB" + +do_compile() { + oe_runmake \ + JAVAC=jikes-initial \ + GLIBJ_ZIP=${STAGING_DATADIR_NATIVE}/classpath-initial/glibj.zip +} + +do_stage_append() { + install -d ${STAGING_BINDIR} + install -m 0755 java-initial ${STAGING_BINDIR} +} |