Last active
January 12, 2017 16:20
-
-
Save cmarat/10eec6a0a5d301290300 to your computer and use it in GitHub Desktop.
Virtuoso 7 Installation Notes
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
sudo apt-get update | |
sudo apt-get install autoconf automake libtool flex bison gperf gawk m4 make OpenSSL libssl-dev | |
sudo apt-get install git wget curl libreadline-dev | |
git clone https://github.com/openlink/virtuoso-opensource.git | |
cd virtuoso-opensource | |
./autogen.sh | |
./configure --enable-silent-rules --enable-fct-vad --enable-rdb2rdf-vad --with-pthreads --with-readline | |
make -j3 | |
sudo make install |
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
git clone https://github.com/openlink/virtuoso-opensource.git | |
cd virtuoso-opensource | |
git checkout develop/7 | |
./autogen.sh | |
export CFLAGS="-O2 -m64 -mmacosx-version-min=10.7" | |
./configure | |
make -j2 | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
sudo apt-get install autoconf automake libtool flex bison gperf gawk m4 make OpenSSL libssl-dev