Skip to content

Instantly share code, notes, and snippets.

@mike-neck
Last active May 20, 2019 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mike-neck/2ae983602f11663313c9a7331a78e967 to your computer and use it in GitHub Desktop.
Save mike-neck/2ae983602f11663313c9a7331a78e967 to your computer and use it in GitHub Desktop.
build project loom on ubuntu on docker
sed -i -e "s/^#[[:space:]]//g" /etc/apt/sources.list
apt-get update
apt-get install -y build-essential mercurial zip unzip autoconf curl libx11-dev libxext-dev libxrender-dev libxrandr-dev libxtst-dev libxt-dev libcups2-dev libfontconfig1-dev libasound2-dev
curl -s "https://get.sdkman.io" | bash
source "/root/.sdkman/bin/sdkman-init.sh"

mkdir /work
cd /work
hg clone http://hg.openjdk.java.net/loom/loom/
cd loom
hg update -r fibers 
chmod +x configure
./configure
make images
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment