ember91 / vrt_tools_cmd

Command line tools for packets following the ANSI/VITA 49.0 Radio Transport (VRT) standard.
MIT License
1 stars 2 forks source link

issue with libvrt during build; vrt/vrt_types.h: No such file or directory #2

Open efreneau opened 2 years ago

efreneau commented 2 years ago

During make -j4 the compilation process stops at about 40% with...

[ 41%] Building CXX object lib/common/CMakeFiles/vrt_common.dir/src/comparator_id.cpp.o

/home/main/Downloads/vrt_tools_cmd/lib/common/src/comparator_id.cpp:3:10: fatal error: vrt/vrt_types.h: No such file or directory
    3 | #include "vrt/vrt_types.h"
      |          ^~~~~~~~~~~~~~~~~
compilation terminated.

During cmake it seems to find everything it needs besides the docs generators.

-- The C compiler identification is GNU 12.1.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Found Doxygen: /usr/bin/doxygen (found version "1.9.3") found components: doxygen dot 
-- Could NOT find Breathe (missing: BREATHE_APIDOC) 
-- Found Sphinx: /usr/bin/sphinx-build  
-- Found PythonInterp: /usr/bin/python (found version "3.10.4") 
-- Could NOT find Exhale (missing: EXHALE_IMPORT_STATUS) 
CMake Warning at CMakeLists.txt:68 (message):
  Breathe is required for documentation generation

CMake Warning at CMakeLists.txt:74 (message):
  Exhale is required for documentation generation

-- The CXX compiler identification is GNU 12.1.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done

CMake is warning about deprecation. I don't think its relevant but just something I noticed.

CMake Deprecation Warning at lib/libsocket/headers/CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED):
  Compatibility with CMake < 2.8.12 will be removed from a future version of
  CMake.
ember91 commented 2 years ago

Hi!

This was one of my pandemic projects. I never finished it and it's pretty much abandoned right now. We'll see if I'll pick it up in the future or not.

efreneau commented 2 years ago

Hey Emil,

Nice. Yeah I figured it was something like that. I have a smattering of unfinished projects too.

There aren't too many VRT open source projects out there. So I have been getting as deep as I can into everything I can find.

I got Wireshark to interpret the packets I needed earlier. But I figured I would report these issues; funny enough this is my first time submitting an issue.

Good luck with your projects!