Last active
December 25, 2015 04:09
-
-
Save GoalSmashers/6914668 to your computer and use it in GitHub Desktop.
LLVM and Rubinius 2 on CentOS 5
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
| # LLVM | |
| V=3.3 | |
| wget http://llvm.org/releases/$V/llvm-$V.src.tar.gz | |
| tar zxf llvm-$V.src.tar.gz | |
| cd llvm-$V.src | |
| ./configure --enable-jit --enable-targets=x86_64 --prefix=$HOME/local | |
| nice -n 10 make | |
| make install | |
| # Rubinius | |
| yum install gcc44 gcc44-c++ | |
| export CXX=g++44 | |
| rvm get stable | |
| rvm reload | |
| rvm install rbx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
centos 5.10:
llvm-3.3...
ha! =>
And with an old (3.2) clang already installed you need to do: