Skip to content

Instantly share code, notes, and snippets.

@rosenk
rosenk / install-haskell-stack-arm.sh
Created December 18, 2016 18:04 — forked from tmspzz/install-haskell-stack-arm.sh
A scrip to install Haskell Stack and set up things properly on Raspbian
#!/bin/sh
# Install stack
curl -sSL https://get.haskellstack.org/ | sh
# Install LLVM
sudo apt-get install llvm-3.7
# Add symbolic links to opt and llc
ln -s /usr/bin/opt-3.7 /usr/bin/opt