Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README fixes needed #18

Closed
aolofsson opened this issue Jan 22, 2020 · 2 comments
Closed

README fixes needed #18

aolofsson opened this issue Jan 22, 2020 · 2 comments

Comments

@aolofsson
Copy link

README refers to cmake 3.9 being required, but it looks like kahypar requires 3.12

@aolofsson aolofsson changed the title CMAKE dependancy requirement README fixes needed Jan 22, 2020
@aolofsson
Copy link
Author

The following script was needed in Ubuntu 18.04. resulting executable in build/core/lsoracle seems to work.

Install Latest Cmake
sudo apt-get install libssl-dev
wget https://github.com/Kitware/CMake/releases/download/v3.16.3/cmake-3.16.3.tar.gz
tar zvf cmake-3.16.3.tar.gz
cd cmake-3.16.3
./bootstrap
make
sudo make install


#Adding g++ 8.x
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt install g++-8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60 --slave /usr/bin/g++ g++ /usr/bin/g++-8

#Build LS Oracle
sudo apt-get install libreadline-dev
git clone --recursive git@github.com:LNIS-Projects/LSOracle.git --branch demo
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=RELEASE
make

@srtemp
Copy link
Collaborator

srtemp commented Jan 23, 2020

Hi Andreas,
We've pulled demo into master, minus a few things to keep mac compatibility, and updated the readme, including dependency information.

Thanks for bringing this up; it was definitely stale.

Scott

@srtemp srtemp closed this as completed Jan 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants