Skip to content

Instantly share code, notes, and snippets.

@mrh1997
Created October 22, 2018 09:02
Show Gist options
  • Save mrh1997/aad3f81be6dec66b59d27542dc9beaa9 to your computer and use it in GitHub Desktop.
Save mrh1997/aad3f81be6dec66b59d27542dc9beaa9 to your computer and use it in GitHub Desktop.
Linux Environment, that can run headlock (https://github.com/mrh1997/headlock)
Vagrant.configure("2") do |config|
config.vm.box = "koalephant/debian9-i386"
config.vm.provision "shell", inline: <<-SHELL
echo deb http://apt.llvm.org/stretch/ llvm-toolchain-stretch-7 main >>/etc/apt/sources.list
apt-get update
apt-get -y --allow-unauthenticated install libclang1-7
SHELL
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment