昨天晚上我试着下载了一个叫做"Evan's debugger (edb)“的反汇编程序,它的GUI类似于Ollydbg (仅限Linux)。
我尝试通过终端构建它们,使用:
sudo cmake ../edb_folder其中../edb_folder是包含edb源代码的目录。
它给出了关于Qt5的以下错误:
-- Boost version: 1.58.0
-- Checking for module 'libgvc>=2.38.0'
--
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!
See also "/home/kanna/Desktop/build/CMakeFiles/CMakeOutput.log".但是我已经在我的系统上安装了Qt5 (参见this picture)。为什么cmake找不到Qt5?
(仅供参考:我使用的是ubuntu 64位)
发布于 2016-11-30 05:56:45
转到synaptic并安装libqt5svg5 + libqt5svg5-dev + libqt5svg5-private-dev
https://stackoverflow.com/questions/40636333
复制相似问题