1

I am trying to build Lemon on my VM running ubuntu having gcc and g++ 4.9.2, but it keeps on giving the following error. I tried installing glpk, Soplex and ILOG Ciplex, but the error didn't go away. Following is the error.

Apparently, this issue is mentioned as fixed in lemon-1.3.1, but I am using the same and seems like it still persist.

Kindly let me know if anyone have an idea about how to solve this.

enter image description here

Roshan Br
  • 362
  • 2
  • 17

2 Answers2

1

I had the same issue with the 1.3.1 tarball on a Linux Ubuntu 14.04 machine - cmake failed, because I had no GLPK, ILOG, COIN and SOPLEX installed.

But the development version from the repository doesn't complain:

hg clone http://lemon.cs.elte.hu/hg/lemon

If you prefer a version release, 1.3.0 from the repo builds for me too (1.3.1 doesn't):

hg clone http://lemon.cs.elte.hu/hg/lemon
hg checkout 1.3
orzechow
  • 1,210
  • 2
  • 13
  • 18
  • This 1.3.1 tarball was specifically needed for the project. What I did was that I installed SOPLEX and GLPK from their respective repositories and then went ahead, and somehow it worked. I also tried to remove the dependences of the other from the makefile. All of them are more or less linear programming solvers. It also works smooth on Ubuntu 15.04 machine. – Roshan Br Sep 28 '15 at 19:54
  • The updated source can be download from this website: http://lemon.cs.elte.hu/hg/lemon/summary (also without having hg installed) – stegua May 28 '21 at 16:46
0

Tested with the newest trunk:

mkdir build
cd build
cmake ..
make
fchen
  • 781
  • 7
  • 15