Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
add nqp-jvm target
- Loading branch information
1 parent
692b905
commit d454513
Showing
2 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| #!/bin/sh | ||
| export PATH=/home/p6eval/nqp-jvm/nqp/install/bin:/home/p6eval/nqp-jvm/jdk1.7.0/bin:/home/p6eval/nqp-jvm/jdk1.7.0/jre/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games | ||
| cd | ||
| set -e | ||
| echo -e "\n\nNew nqp-jvm build" | ||
| date | ||
| cd nqp-jvm/nqp | ||
| git fetch origin | ||
| if ! diff .git/refs/remotes/origin/master .git/refs/heads/master | ||
| then | ||
| git pull | ||
| perl Configure.pl --gen-parrot | ||
| make install | ||
| fi | ||
| cd .. | ||
| git fetch origin | ||
| if ! diff .git/refs/remotes/origin/master .git/refs/heads/master | ||
| then | ||
| git pull | ||
| make clean | ||
| make | ||
| fi | ||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters