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

Issue installing LTE-CELL-SCANNER #15

Open
indiggg opened this issue Sep 9, 2015 · 2 comments
Open

Issue installing LTE-CELL-SCANNER #15

indiggg opened this issue Sep 9, 2015 · 2 comments

Comments

@indiggg
Copy link

indiggg commented Sep 9, 2015

Hi, I can't install LTE-CELL-SCANNER, so, could you help me? this is the log and I've already installed the itpp library...

root@CloudNav-PC:/home/LTE-Cell-Scanner/build# cmake ..
-- Boost version: 1.55.0
-- Found the following Boost libraries:
-- thread
-- system
CMake Error at cmake/Modules/FindITPP.cmake:62 (MESSAGE):
Could not find ITPP library
Call Stack (most recent call first):
CMakeLists.txt:27 (FIND_PACKAGE)

-- Configuring incomplete, errors occurred!
See also "/home/LTE-Cell-Scanner/build/CMakeFiles/CMakeOutput.log".
root@CloudNav-PC:/home/LTE-Cell-Scanner/build# aptitude search itpp
i libitpp-dev - C++ library of signal processing and communication routines: Headers
pi libitpp-doc - C++ library of signal processing and communication routines: Documentation
i A libitpp8 - C++ library of signal processing and communication routines
pi libitpp8-dbg - C++ library of signal processing and communication routines: Debug symbols
root@CloudNav-PC:/home/LTE-Cell-Scanner/build#

Could anyone help me? Thanks,

@seahorse41
Copy link

I'm probably late to the game, but others will have the same error message.
The problem with not finding ITPP even though it is installed, can be fixed thusly:

  1. Searching the package manager sometimes fails to find it because it is also known as it++
  2. The default location for installing in debian,ubuntu,mint etc for 32 bit systems is not listed in the cmake files in this project. Easy fix:
    edit the following 3 files, and add the next line to the FIND_LIBRARY section,

cmake/Modules/FindITPP.cmake
/usr/lib/i386-linux-gnu

cmake/Modules/FindFFTW.cmake
/usr/lib/i386-linux-gnu

cmake/Modules/FindRTLSDR.cmake
/usr/lib/i386-linux-gnu

I put the added line right before the x86_64 line.
Editing the 2nd and 3rd files also fixes the errors finding FFTW and RTLSDR, since the problem is the same cause.

@lucasduffey
Copy link

lucasduffey commented Jul 22, 2016

find directory to include.....

cd /usr/lib && find. | grep -i itpp

files to modify

cmake/Modules/FindITPP.cmake
/usr/lib/x86_64-linux-gnu/ # what I had to add

cmake/Modules/FindRTLSDR.cmake
/usr/lib/x86_64-linux-gnu

dependencies

sudo apt install libblas-dev librtlsdr-dev libncurses5-dev libitpp-dev -y

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

3 participants