Created
July 7, 2016 06:00
-
-
Save bvolpato/28e67c0fc20103753da50afa7c92a4f2 to your computer and use it in GitHub Desktop.
DCEVM on Ubuntu
This file contains hidden or 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
| #!/bin/bash | |
| wget https://github.com/dcevm/dcevm/releases/download/light-jdk8u92%2B1/DCEVM-light-8u92-installer.jar | |
| unzip -d dcevm DCEVM-light-8u92-installer.jar | |
| mv $JAVA_HOME/jre/lib/amd64/server/libjvm.so $JAVA_HOME/jre/lib/amd64/server/libjvm.so.bkp | |
| cp dcevm/linux_amd64_compiler2/product/libjvm.so $JAVA_HOME/jre/lib/amd64/server/libjvm.so.bkp | |
| mkdir -p $JAVA_HOME/jre/lib/amd64/dcevm | |
| cp dcevm/linux_amd64_compiler2/product/libjvm.so $JAVA_HOME/jre/lib/amd64/dcevm/libjvm.so | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment