User Controls

Problems installing edb-debugger from source.

  1. #1
    Sophie Pedophile Tech Support
    So i have all the dependencies installed.

    http://pastebin.com/WiMNLLBr

    And i got cmake, so i made my build directory and typed `cmake ..` but it gave me this error message.


    -- Boost version: 1.55.0
    -- checking for module 'libgvc>=2.38.0'
    -- package 'libgvc>=2.38.0' not found
    CMake Error at /usr/lib/x86_64-linux-gnu/cmake/Qt5/Qt5Config.cmake:26 (find_package):
    Could not find a package configuration file provided by "Qt5Svg" with any
    of the following names:

    Qt5SvgConfig.cmake
    qt5svg-config.cmake

    Add the installation prefix of "Qt5Svg" to CMAKE_PREFIX_PATH or set
    "Qt5Svg_DIR" to a directory containing one of the above files. If "Qt5Svg"
    provides a separate development package or SDK, be sure it has been
    installed.
    Call Stack (most recent call first):
    src/CMakeLists.txt:26 (find_package)


    -- Configuring incomplete, errors occurred!


    As you can see it says it couldn't find libgvc>=2.38.0 but when i `apt search libgvc` it shows me i have it installed. So what exactly is the problem here?

    Here is my Cmakelist

    http://pastebin.com/5iUDY6tT


    Post last edited by Sophie at 2016-11-15T12:11:41.788126+00:00
  2. #2
    Parker Brother Yung Blood [the valiantly arthrosporous wyatt]
    When compiling things from source, you need the development versions of packages, the ones that end in the "-dev" suffix. These packages contain the header files that allow you to develop or compile software that uses the library.

    Also, your list of dependencies says you need qt4, but when compiling, it seems to ask for qt5.
  3. #3
    look its your handler
Jump to Top