Re: [Discuss-gnuradio] package 'gnuradio-fft' not found

2018-01-12 Thread Koyel Das
Hi,

Thanks so much. I could resolve the issue by installing the dependencies.

Regards,
Koyel

On Wed, Jan 10, 2018 at 9:35 PM, Dave NotTelling 
wrote:

> You are missing quite a few libs.  The one that's causing your specific
> issue:
>
> -- Configuring gr-fec support...
> --   Dependency ENABLE_VOLK = ON
> --   Dependency Boost_FOUND = 1
> --   Dependency ENABLE_GNURADIO_RUNTIME = ON
> --   Dependency ENABLE_GR_BLOCKS = ON
> --   Enabling gr-fec support.
> --   Override with -DENABLE_GR_FEC=ON/OFF
> -- checking for module 'fftw3f >= 3.0'
> --   package 'fftw3f >= 3.0' not found
> -- Could NOT find FFTW3F (missing:  FFTW3F_LIBRARIES FFTW3F_INCLUDE_DIRS)
> --
> -- Configuring gr-fft support...
> --   Dependency ENABLE_VOLK = ON
> --   Dependency Boost_FOUND = 1
> --   Dependency ENABLE_GNURADIO_RUNTIME = ON
> --   Dependency ENABLE_GR_BLOCKS = ON
> --   Dependency FFTW3F_FOUND = FALSE
> --   Disabling gr-fft support.
> --   Override with -DENABLE_GR_FFT=ON/OFF
>
> Notice that fftwf3 is missing which means you don't have libfftw which
> means no FFT support.  Since you're running Ubuntu you should look at
> https://wiki.gnuradio.org/index.php/UbuntuInstall and run the canned
> apt-get commands for your version.
>
> On Tue, Jan 9, 2018 at 11:48 PM, Koyel Das  wrote:
>
>> Hi,
>>
>> yes cmake of gnuradio has gr-fft and many other components disables.
>> Following is the outcome of cmake
>>
>> -- Build type not specified: defaulting to release.
>> -- Build type set to Release.
>> -- Extracting version information from git describe...
>> -- Compiler Version: cc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4
>> Copyright (C) 2013 Free Software Foundation, Inc.
>> This is free software; see the source for copying conditions.  There is NO
>> warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
>> PURPOSE.
>> -- Compiler Flags: /usr/bin/cc:::-O3 -DNDEBUG  -std=gnu99
>> -fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized
>> /usr/bin/c++:::-O3 -DNDEBUG  -std=c++98 -fvisibility=hidden
>> -Wsign-compare -Wall -Wno-uninitialized
>> -- ADDING PERF COUNTERS
>> -- Building Static Libraries: OFF
>> -- Boost version: 1.54.0
>> -- Found the following Boost libraries:
>> --   date_time
>> --   program_options
>> --   filesystem
>> --   system
>> --   regex
>> --   thread
>> -- Enabling use of known bad versions of Boost.
>> -- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython2.7.so (found
>> suitable version "2.7.6", minimum required is "2.7")
>> --
>> -- Checking for module SWIG
>> -- Found SWIG version 2.0.11.
>> -- Requested SWIG version is at least .
>> -- Disabling SWIG because version check failed.
>> --
>> -- The build system will automatically enable all components.
>> -- Use -DENABLE_DEFAULT=OFF to disable components by default.
>> --
>> -- Configuring python-support support...
>> --   Dependency PYTHONLIBS_FOUND = TRUE
>> --   Dependency SWIG_FOUND = FALSE
>> --   Dependency SWIG_VERSION_CHECK = FALSE
>> --   Disabling python-support support.
>> --   Override with -DENABLE_PYTHON=ON/OFF
>> --
>> -- Configuring testing-support support...
>> --   Dependency CPPUNIT_FOUND = TRUE
>> --   Enabling testing-support support.
>> --   Override with -DENABLE_TESTING=ON/OFF
>> --
>> -- Configuring VOLK support...
>> -- Build type set to Release.
>> -- Extracting version information from git describe...
>> --
>> -- Python checking for python >= 2.5
>> -- Python checking for python >= 2.5 - found
>> --
>> -- Python checking for Cheetah >= 2.0.0
>> -- Python checking for Cheetah >= 2.0.0 - found
>> -- Boost version: 1.54.0
>> -- Found the following Boost libraries:
>> --   filesystem
>> --   system
>> --   unit_test_framework
>> --   program_options
>> -- Enabling use of known bad versions of Boost.
>> -- checking for module 'orc-0.4 > 0.4.11'
>> --   package 'orc-0.4 > 0.4.11' not found
>> -- orc files (missing:  ORC_LIBRARY ORC_INCLUDE_DIR ORCC_EXECUTABLE)
>> -- QA Testing is enabled.
>> --   Modify using: -DENABLE_TESTING=ON/OFF
>> -- System profiling is disabled.
>> --   Modify using: -DENABLE_PROFILING=ON/OFF
>> -- Compiler name: GNU
>> -- x86* CPU detected
>> -- ORC support not found, Overruled arch orc
>> -- CPU width is 64 bits, Overruled arch 32
>> -- Available architectures: generic;64;3dnow;abm;popcount;
>> mmx;fma;sse;sse2;norc;sse3;ssse3;sse4_a;sse4_1;sse4_2;avx;avx2
>> -- Available machines: generic;sse2_64_mmx;sse3_64_mm
>> x;ssse3_64_mmx;sse4_a_64_mmx;sse4_1_64_mmx;sse4_2_64_mmx;
>> avx_64_mmx;avx2_64_mmx
>> -- BUILD TYPE = RELEASE
>> -- Base cflags = -O3 -DNDEBUG  -std=gnu99 -fvisibility=hidden
>> -Wsign-compare -Wall -Wno-uninitialized -Wall
>> -- BUILD INFO ::: generic ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
>> -fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall
>> -- BUILD INFO ::: sse2_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
>> -fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
>> -mmmx -msse -msse2
>> -- BUILD INFO ::: sse3_64_mmx ::: GNU ::: -O3 -DNDEBUG  -s

Re: [Discuss-gnuradio] package 'gnuradio-fft' not found

2018-01-10 Thread Dave NotTelling
You are missing quite a few libs.  The one that's causing your specific
issue:

-- Configuring gr-fec support...
--   Dependency ENABLE_VOLK = ON
--   Dependency Boost_FOUND = 1
--   Dependency ENABLE_GNURADIO_RUNTIME = ON
--   Dependency ENABLE_GR_BLOCKS = ON
--   Enabling gr-fec support.
--   Override with -DENABLE_GR_FEC=ON/OFF
-- checking for module 'fftw3f >= 3.0'
--   package 'fftw3f >= 3.0' not found
-- Could NOT find FFTW3F (missing:  FFTW3F_LIBRARIES FFTW3F_INCLUDE_DIRS)
-- 
-- Configuring gr-fft support...
--   Dependency ENABLE_VOLK = ON
--   Dependency Boost_FOUND = 1
--   Dependency ENABLE_GNURADIO_RUNTIME = ON
--   Dependency ENABLE_GR_BLOCKS = ON
--   Dependency FFTW3F_FOUND = FALSE
--   Disabling gr-fft support.
--   Override with -DENABLE_GR_FFT=ON/OFF

Notice that fftwf3 is missing which means you don't have libfftw which
means no FFT support.  Since you're running Ubuntu you should look at
https://wiki.gnuradio.org/index.php/UbuntuInstall and run the canned
apt-get commands for your version.

On Tue, Jan 9, 2018 at 11:48 PM, Koyel Das  wrote:

> Hi,
>
> yes cmake of gnuradio has gr-fft and many other components disables.
> Following is the outcome of cmake
>
> -- Build type not specified: defaulting to release.
> -- Build type set to Release.
> -- Extracting version information from git describe...
> -- Compiler Version: cc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4
> Copyright (C) 2013 Free Software Foundation, Inc.
> This is free software; see the source for copying conditions.  There is NO
> warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
> -- Compiler Flags: /usr/bin/cc:::-O3 -DNDEBUG  -std=gnu99
> -fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized
> /usr/bin/c++:::-O3 -DNDEBUG  -std=c++98 -fvisibility=hidden -Wsign-compare
> -Wall -Wno-uninitialized
> -- ADDING PERF COUNTERS
> -- Building Static Libraries: OFF
> -- Boost version: 1.54.0
> -- Found the following Boost libraries:
> --   date_time
> --   program_options
> --   filesystem
> --   system
> --   regex
> --   thread
> -- Enabling use of known bad versions of Boost.
> -- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython2.7.so (found
> suitable version "2.7.6", minimum required is "2.7")
> --
> -- Checking for module SWIG
> -- Found SWIG version 2.0.11.
> -- Requested SWIG version is at least .
> -- Disabling SWIG because version check failed.
> --
> -- The build system will automatically enable all components.
> -- Use -DENABLE_DEFAULT=OFF to disable components by default.
> --
> -- Configuring python-support support...
> --   Dependency PYTHONLIBS_FOUND = TRUE
> --   Dependency SWIG_FOUND = FALSE
> --   Dependency SWIG_VERSION_CHECK = FALSE
> --   Disabling python-support support.
> --   Override with -DENABLE_PYTHON=ON/OFF
> --
> -- Configuring testing-support support...
> --   Dependency CPPUNIT_FOUND = TRUE
> --   Enabling testing-support support.
> --   Override with -DENABLE_TESTING=ON/OFF
> --
> -- Configuring VOLK support...
> -- Build type set to Release.
> -- Extracting version information from git describe...
> --
> -- Python checking for python >= 2.5
> -- Python checking for python >= 2.5 - found
> --
> -- Python checking for Cheetah >= 2.0.0
> -- Python checking for Cheetah >= 2.0.0 - found
> -- Boost version: 1.54.0
> -- Found the following Boost libraries:
> --   filesystem
> --   system
> --   unit_test_framework
> --   program_options
> -- Enabling use of known bad versions of Boost.
> -- checking for module 'orc-0.4 > 0.4.11'
> --   package 'orc-0.4 > 0.4.11' not found
> -- orc files (missing:  ORC_LIBRARY ORC_INCLUDE_DIR ORCC_EXECUTABLE)
> -- QA Testing is enabled.
> --   Modify using: -DENABLE_TESTING=ON/OFF
> -- System profiling is disabled.
> --   Modify using: -DENABLE_PROFILING=ON/OFF
> -- Compiler name: GNU
> -- x86* CPU detected
> -- ORC support not found, Overruled arch orc
> -- CPU width is 64 bits, Overruled arch 32
> -- Available architectures: generic;64;3dnow;abm;popcount;
> mmx;fma;sse;sse2;norc;sse3;ssse3;sse4_a;sse4_1;sse4_2;avx;avx2
> -- Available machines: generic;sse2_64_mmx;sse3_64_
> mmx;ssse3_64_mmx;sse4_a_64_mmx;sse4_1_64_mmx;sse4_2_64_
> mmx;avx_64_mmx;avx2_64_mmx
> -- BUILD TYPE = RELEASE
> -- Base cflags = -O3 -DNDEBUG  -std=gnu99 -fvisibility=hidden
> -Wsign-compare -Wall -Wno-uninitialized -Wall
> -- BUILD INFO ::: generic ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
> -fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall
> -- BUILD INFO ::: sse2_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
> -fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
> -mmmx -msse -msse2
> -- BUILD INFO ::: sse3_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
> -fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
> -mmmx -msse -msse2 -msse3
> -- BUILD INFO ::: ssse3_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
> -fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
> -mmmx -msse -msse2 -msse3 -mssse3
> -- BUILD INF

Re: [Discuss-gnuradio] package 'gnuradio-fft' not found

2018-01-09 Thread Koyel Das
Hi,

yes cmake of gnuradio has gr-fft and many other components disables.
Following is the outcome of cmake

-- Build type not specified: defaulting to release.
-- Build type set to Release.
-- Extracting version information from git describe...
-- Compiler Version: cc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-- Compiler Flags: /usr/bin/cc:::-O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized
/usr/bin/c++:::-O3 -DNDEBUG  -std=c++98 -fvisibility=hidden -Wsign-compare
-Wall -Wno-uninitialized
-- ADDING PERF COUNTERS
-- Building Static Libraries: OFF
-- Boost version: 1.54.0
-- Found the following Boost libraries:
--   date_time
--   program_options
--   filesystem
--   system
--   regex
--   thread
-- Enabling use of known bad versions of Boost.
-- Found PythonLibs: /usr/lib/x86_64-linux-gnu/libpython2.7.so (found
suitable version "2.7.6", minimum required is "2.7")
-- 
-- Checking for module SWIG
-- Found SWIG version 2.0.11.
-- Requested SWIG version is at least .
-- Disabling SWIG because version check failed.
-- 
-- The build system will automatically enable all components.
-- Use -DENABLE_DEFAULT=OFF to disable components by default.
-- 
-- Configuring python-support support...
--   Dependency PYTHONLIBS_FOUND = TRUE
--   Dependency SWIG_FOUND = FALSE
--   Dependency SWIG_VERSION_CHECK = FALSE
--   Disabling python-support support.
--   Override with -DENABLE_PYTHON=ON/OFF
-- 
-- Configuring testing-support support...
--   Dependency CPPUNIT_FOUND = TRUE
--   Enabling testing-support support.
--   Override with -DENABLE_TESTING=ON/OFF
-- 
-- Configuring VOLK support...
-- Build type set to Release.
-- Extracting version information from git describe...
-- 
-- Python checking for python >= 2.5
-- Python checking for python >= 2.5 - found
-- 
-- Python checking for Cheetah >= 2.0.0
-- Python checking for Cheetah >= 2.0.0 - found
-- Boost version: 1.54.0
-- Found the following Boost libraries:
--   filesystem
--   system
--   unit_test_framework
--   program_options
-- Enabling use of known bad versions of Boost.
-- checking for module 'orc-0.4 > 0.4.11'
--   package 'orc-0.4 > 0.4.11' not found
-- orc files (missing:  ORC_LIBRARY ORC_INCLUDE_DIR ORCC_EXECUTABLE)
-- QA Testing is enabled.
--   Modify using: -DENABLE_TESTING=ON/OFF
-- System profiling is disabled.
--   Modify using: -DENABLE_PROFILING=ON/OFF
-- Compiler name: GNU
-- x86* CPU detected
-- ORC support not found, Overruled arch orc
-- CPU width is 64 bits, Overruled arch 32
-- Available architectures:
generic;64;3dnow;abm;popcount;mmx;fma;sse;sse2;norc;sse3;ssse3;sse4_a;sse4_1;sse4_2;avx;avx2
-- Available machines:
generic;sse2_64_mmx;sse3_64_mmx;ssse3_64_mmx;sse4_a_64_mmx;sse4_1_64_mmx;sse4_2_64_mmx;avx_64_mmx;avx2_64_mmx
-- BUILD TYPE = RELEASE
-- Base cflags = -O3 -DNDEBUG  -std=gnu99 -fvisibility=hidden
-Wsign-compare -Wall -Wno-uninitialized -Wall
-- BUILD INFO ::: generic ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall
-- BUILD INFO ::: sse2_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
-mmmx -msse -msse2
-- BUILD INFO ::: sse3_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
-mmmx -msse -msse2 -msse3
-- BUILD INFO ::: ssse3_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
-mmmx -msse -msse2 -msse3 -mssse3
-- BUILD INFO ::: sse4_a_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
-mmmx -msse -msse2 -msse3 -msse4a -mpopcnt
-- BUILD INFO ::: sse4_1_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
-mmmx -msse -msse2 -msse3 -mssse3 -msse4.1
-- BUILD INFO ::: sse4_2_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
-mmmx -msse -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mpopcnt
-- BUILD INFO ::: avx_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
-mmmx -msse -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mpopcnt -mavx
-- BUILD INFO ::: avx2_64_mmx ::: GNU ::: -O3 -DNDEBUG  -std=gnu99
-fvisibility=hidden -Wsign-compare -Wall -Wno-uninitialized -Wall -m64
-mmmx -msse -msse2 -msse3 -mssse3 -msse4.1 -msse4.2 -mpopcnt -mavx -mfma
-mavx2
-- Compiler Version: cc (Ubuntu 4.8.4-2ubuntu1~14.04.3) 4.8.4
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-- c flags:  -std=gnu99 -fv

Re: [Discuss-gnuradio] package 'gnuradio-fft' not found

2018-01-09 Thread Martin Braun
Koyel,

how did yo build/install GNU Radio? By hand? Can you re-run its CMake
and see if fftw was found?

-- M

On 01/09/2018 05:28 AM, Koyel Das wrote:
> Hi,
> 
> I am setting up the development environment for RFNoC by following the link
> 
> https://kb.ettus.com/Getting_Started_with_RFNoC_Development
> 
> 
> I am using the "Create the development environment manually". When I
> clone the following
> 
> git clone -b master https://github.com/EttusResearch/gr-ettus.git
> 
> 
> then enter into "gr-ettus", create "build" directory and inside build
> run the command "cmake ../"
> 
> I get the following errors
> 
> Checking for GNU Radio Module: FFT
> -- checking for module 'gnuradio-fft'
> --   package 'gnuradio-fft' not found
>  * INCLUDES=GNURADIO_FFT_INCLUDE_DIRS-NOTFOUND
>  * LIBS=GNURADIO_FFT_LIBRARIES_gnuradio-fft-NOTFOUND
> -- Could NOT find GNURADIO_FFT (missing:  GNURADIO_FFT_LIBRARIES
> GNURADIO_FFT_INCLUDE_DIRS)
> GNURADIO_FFT_FOUND = FALSE
> CMake Error at /usr/local/lib/cmake/gnuradio/GnuradioConfig.cmake:114
> (message):
>   Required GNU Radio Component: FFT missing!
> Call Stack (most recent call first):
>   /usr/local/lib/cmake/gnuradio/GnuradioConfig.cmake:130 (GR_MODULE)
>   CMakeLists.txt:169 (find_package)
> 
> 
> -- Configuring incomplete, errors occurred!
> 
> 
> Please help. How to solve it.
> 
> Regards,
> Koyel
> 
> 
> 
> 
> 
> ___
> Discuss-gnuradio mailing list
> Discuss-gnuradio@gnu.org
> https://lists.gnu.org/mailman/listinfo/discuss-gnuradio
> 


___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio


[Discuss-gnuradio] package 'gnuradio-fft' not found

2018-01-09 Thread Koyel Das
Hi,

I am setting up the development environment for RFNoC by following the link

https://kb.ettus.com/Getting_Started_with_RFNoC_Development

I am using the "Create the development environment manually". When I clone
the following

git clone -b master https://github.com/EttusResearch/gr-ettus.git

then enter into "gr-ettus", create "build" directory and inside build run
the command "cmake ../"

I get the following errors

Checking for GNU Radio Module: FFT
-- checking for module 'gnuradio-fft'
--   package 'gnuradio-fft' not found
 * INCLUDES=GNURADIO_FFT_INCLUDE_DIRS-NOTFOUND
 * LIBS=GNURADIO_FFT_LIBRARIES_gnuradio-fft-NOTFOUND
-- Could NOT find GNURADIO_FFT (missing:  GNURADIO_FFT_LIBRARIES
GNURADIO_FFT_INCLUDE_DIRS)
GNURADIO_FFT_FOUND = FALSE
CMake Error at /usr/local/lib/cmake/gnuradio/GnuradioConfig.cmake:114
(message):
  Required GNU Radio Component: FFT missing!
Call Stack (most recent call first):
  /usr/local/lib/cmake/gnuradio/GnuradioConfig.cmake:130 (GR_MODULE)
  CMakeLists.txt:169 (find_package)


-- Configuring incomplete, errors occurred!


Please help. How to solve it.

Regards,
Koyel
___
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio