Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add JNA to build and runtime JARs.
  • Loading branch information
arnsholt committed Sep 5, 2013
1 parent 279c94a commit 7e305ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/vm/jvm/runners/nqp
@@ -1,2 +1,2 @@
#!/bin/sh
exec java -Xbootclasspath/a:.:nqp-runtime.jar:3rdparty/asm/asm-4.1.jar:3rdparty/jline/jline-1.0.jar:nqp.jar nqp "$@"
exec java -Xbootclasspath/a:.:nqp-runtime.jar:3rdparty/asm/asm-4.1.jar:3rdparty/jline/jline-1.0.jar:3rdparty/jna/jna.jar:nqp.jar nqp "$@"
2 changes: 1 addition & 1 deletion src/vm/jvm/runners/nqp.bat
@@ -1 +1 @@
@java -Xbootclasspath/a:.;nqp-runtime.jar;3rdparty/asm/asm-4.1.jar;3rdparty/jline/jline-1.0.jar;nqp.jar nqp %*
@java -Xbootclasspath/a:.;nqp-runtime.jar;3rdparty/asm/asm-4.1.jar;3rdparty/jline/jline-1.0.jar;3rdparty/jna/jna.jar;nqp.jar nqp %*
2 changes: 1 addition & 1 deletion tools/build/Makefile-JVM.in
Expand Up @@ -25,7 +25,7 @@ RUNTIME_JAVAS = \

RUNTIME_JAR = nqp-runtime.jar

THIRDPARTY_JARS = $(ASM)asm-4.1.jar@cpsep@$(ASM)asm-tree-4.1.jar@cpsep@3rdparty/jline/jline-1.0.jar
THIRDPARTY_JARS = $(ASM)asm-4.1.jar@cpsep@$(ASM)asm-tree-4.1.jar@cpsep@3rdparty/jline/jline-1.0.jar@cpsep@3rdparty/jna/jna.jar
STAGE0 = src/vm/jvm/stage0
STAGE1 = src/stage1
STAGE2 = src/stage2
Expand Down

0 comments on commit 7e305ec

Please sign in to comment.