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 Jul 27, 2013

Package Dependencies

To generate the configure script and all other build files necessary,
please make sure the following packages and recommended versions are
installed on your system.

Package  Version                         From
-------  -------                         ----
autoconf 2.57               http://www.gnu.org/software/autoconf/
automake 1.9                http://www.gnu.org/software/automake/
libtool  1.5.16             http://www.gnu.org/software/libtool/
flex     2.5.33 (was 2.5.4) http://www.gnu.org/software/non-gnu/flex/
bison    2.3 (was 1.35)     http://www.gnu.org/software/bison/
gperf    2.7.2              http://www.gnu.org/software/gperf/
gawk     3.1.1              http://www.gnu.org/software/gawk/
m4       1.4.1              http://www.gnu.org/software/m4/
make     3.79.1             http://www.gnu.org/software/make/
OpenSSL  0.9.7i             http://www.openssl.org/

@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