Hello, I'm having some problems running ./configure on both server and monitor directories. I'm using Linux Mint 17.1 as OS
Below you see the last bit of the output from running ./configure in the server directory.
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for boostlib >= 1.32.0... yes
checking whether the Boost::System library is available... yes configure: error: Could not find a version of the library!
~/Dropbox/Semestre/4_semester/Project/rcssserver-15.2.2 $
Could not find the a version of the library?, what library?
First, I installed the package libboost-all-dev. Then, I looked for a file containing "boost-system" in its name inside the usr directory. In my case, it was found inside /usr/lib/x86_64-linux-gnu/. So I ran the configure script with the parameter: --with-boost-libdir=/usr/lib/x86_64-linux-gnu/ and it worked!
teste
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, I'm having some problems running ./configure on both server and monitor directories. I'm using Linux Mint 17.1 as OS
Below you see the last bit of the output from running ./configure in the server directory.
Could not find the a version of the library?, what library?
Link to whole output
Last edit: Kaj Printz Madsen 2015-02-06
Hi, I had the same problem.
First, I installed the package libboost-all-dev. Then, I looked for a file containing "boost-system" in its name inside the usr directory. In my case, it was found inside /usr/lib/x86_64-linux-gnu/. So I ran the configure script with the parameter: --with-boost-libdir=/usr/lib/x86_64-linux-gnu/ and it worked!
teste