Created
October 22, 2018 09:02
-
-
Save mrh1997/aad3f81be6dec66b59d27542dc9beaa9 to your computer and use it in GitHub Desktop.
Linux Environment, that can run headlock (https://github.com/mrh1997/headlock)
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
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