Skip to content

Instantly share code, notes, and snippets.

@cmarat
Last active January 12, 2017 16:20
Show Gist options
  • Save cmarat/10eec6a0a5d301290300 to your computer and use it in GitHub Desktop.
Save cmarat/10eec6a0a5d301290300 to your computer and use it in GitHub Desktop.
Virtuoso 7 Installation Notes
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
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
@cmarat
Copy link
Author

cmarat commented Aug 21, 2014

sudo apt-get install autoconf automake libtool flex bison gperf gawk m4 make OpenSSL libssl-dev

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment