- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我最近开始使用 CMake,但一直无法弄清楚如何让我的调试符号适用于 Valgrind。所以,我做了一个测试项目来演示我的问题。如果没有 CMake,我只会用 -g 编译:
g++ -std=c++11 -g main.cpp -o test
我得到了我想要的 test.dSYM
目录。根据How do you set GDB debug flag with cmake? , 要获得 -g 标志,我应该使用参数
-D CMAKE_BUILD_TYPE=Debug
这就是我尝试过的。在名为 Testing
的文件夹中,我创建了一个包含以下内容的测试文件 main.cpp
:
#include <iostream>
using std::cout;
int main( int argc , const char* argv[] ) {
int* leak = new int;
int arr[] = { 1 , 2 , 3 , 4 };
for ( int i : arr ) {
cout << i << "\n";
}
return 0;
}
在 Testing
中,我还创建了一个包含以下内容的文件 CMakeLists.txt
:
cmake_minimum_required( VERSION 3.1 )
project( Testing )
add_executable( test1 main.cpp )
set_property(TARGET test1 PROPERTY CXX_STANDARD 11)
set_property(TARGET test1 PROPERTY CXX_STANDARD_REQUIRED ON)
然后我创建了一个新目录 Testing/cmake_build
并在该目录中运行了以下命令:
Testing/cmake_build$ cmake -D CMAKE_BUILD_TYPE=Debug ..
Testing/cmake_build$ make
Testing/cmake_build$ valgrind --leak-check=yes ./test
并且 Valgrind 提示 dSYM 目录丢失。我自己找了一圈,没找到。因此,我没有在泄漏检查输出中获得行号,也无法调试我的项目:
==2388== Using Valgrind-3.10.0 and LibVEX; rerun with -h for copyright info
==2388== Command: ./test
==2388==
--2388-- ./test:
--2388-- dSYM directory is missing; consider using --dsymutil=yes
1
2
3
4
==2388==
==2388== HEAP SUMMARY:
==2388== in use at exit: 29,443 bytes in 378 blocks
==2388== total heap usage: 472 allocs, 94 frees, 36,027 bytes allocated
==2388==
==2388== 4 bytes in 1 blocks are definitely lost in loss record 1 of 76
==2388== at 0x47F1: malloc (vg_replace_malloc.c:300)
==2388== by 0x4928D: operator new(unsigned long) (in /usr/lib/libc++.1.dylib)
==2388== by 0x1000012E5: main (in ./test)
==2388==
==2388== LEAK SUMMARY:
==2388== definitely lost: 4 bytes in 1 blocks
==2388== indirectly lost: 0 bytes in 0 blocks
==2388== possibly lost: 0 bytes in 0 blocks
==2388== still reachable: 4,096 bytes in 1 blocks
==2388== suppressed: 25,343 bytes in 376 blocks
==2388== Reachable blocks (those to which a pointer was found) are not shown.
==2388== To see them, rerun with: --leak-check=full --show-leak-kinds=all
==2388==
应该说
==2530== by 0x1000012E5: main (main.cpp:5)
谁能告诉我如何使用 CMake 来获取 dSYM 目录?谢谢。
编辑 1(生成所有命令):
这是在我的 makefile 中生成的 make all 命令:
all: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start <Path>/Testing/cmake_build/CMakeFiles <Path>/Testing/cmake_build/CMakeFiles/progress.marks
$(MAKE) -f CMakeFiles/Makefile2 all
$(CMAKE_COMMAND) -E cmake_progress_start <Path>/Testing/cmake_build/CMakeFiles 0
编辑2(Makefile2的all命令):
# Target rules for target CMakeFiles/test1.dir
# All Build rule for target.
CMakeFiles/test1.dir/all:
$(MAKE) -f CMakeFiles/test1.dir/build.make CMakeFiles/test1.dir/depend
$(MAKE) -f CMakeFiles/test1.dir/build.make CMakeFiles/test1.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=<Path>/Testing/cmake_build/CMakeFiles --progress-num=1,2 "Built target test1"
.PHONY : CMakeFiles/test1.dir/all
# Include target in all.
all: CMakeFiles/test1.dir/all
编辑 3 (CmakeFiles/test1.dir/build.make):
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.4
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/local/bin/cmake
# The command to remove a file.
RM = /usr/local/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = <Path>/Desktop/Testing
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = <Path>/Desktop/Testing/cmake_build
# Include any dependencies generated for this target.
include CMakeFiles/test1.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/test1.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/test1.dir/flags.make
CMakeFiles/test1.dir/main.cpp.o: CMakeFiles/test1.dir/flags.make
CMakeFiles/test1.dir/main.cpp.o: ../main.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=<Path>/Desktop/Testing/cmake_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/test1.dir/main.cpp.o"
/Applications/Xcode6-Beta5.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/test1.dir/main.cpp.o -c <Path>/Desktop/Testing/main.cpp
CMakeFiles/test1.dir/main.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/test1.dir/main.cpp.i"
/Applications/Xcode6-Beta5.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E <Path>/Desktop/Testing/main.cpp > CMakeFiles/test1.dir/main.cpp.i
CMakeFiles/test1.dir/main.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/test1.dir/main.cpp.s"
/Applications/Xcode6-Beta5.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S <Path>/Desktop/Testing/main.cpp -o CMakeFiles/test1.dir/main.cpp.s
CMakeFiles/test1.dir/main.cpp.o.requires:
.PHONY : CMakeFiles/test1.dir/main.cpp.o.requires
CMakeFiles/test1.dir/main.cpp.o.provides: CMakeFiles/test1.dir/main.cpp.o.requires
$(MAKE) -f CMakeFiles/test1.dir/build.make CMakeFiles/test1.dir/main.cpp.o.provides.build
.PHONY : CMakeFiles/test1.dir/main.cpp.o.provides
CMakeFiles/test1.dir/main.cpp.o.provides.build: CMakeFiles/test1.dir/main.cpp.o
# Object files for target test1
test1_OBJECTS = \
"CMakeFiles/test1.dir/main.cpp.o"
# External object files for target test1
test1_EXTERNAL_OBJECTS =
test1: CMakeFiles/test1.dir/main.cpp.o
test1: CMakeFiles/test1.dir/build.make
test1: CMakeFiles/test1.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=<Path>/Desktop/Testing/cmake_build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable test1"
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/test1.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/test1.dir/build: test1
.PHONY : CMakeFiles/test1.dir/build
CMakeFiles/test1.dir/requires: CMakeFiles/test1.dir/main.cpp.o.requires
.PHONY : CMakeFiles/test1.dir/requires
CMakeFiles/test1.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/test1.dir/cmake_clean.cmake
.PHONY : CMakeFiles/test1.dir/clean
CMakeFiles/test1.dir/depend:
cd <Path>/Desktop/Testing/cmake_build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" <Path>/Desktop/Testing <Path>/Desktop/Testing <Path>/Desktop/Testing/cmake_build <Path>/Desktop/Testing/cmake_build <Path>/Desktop/Testing/cmake_build/CMakeFiles/test1.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/test1.dir/depend
编辑 4(进行详细输出):
/usr/local/bin/cmake -H<Path>/Desktop/Testing -B<Path>/Desktop/Testing/cmake_build --check-build-system CMakeFiles/Makefile.cmake 0
/usr/local/bin/cmake -E cmake_progress_start <Path>/Desktop/Testing/cmake_build/CMakeFiles <Path>/Desktop/Testing/cmake_build/CMakeFiles/progress.marks
/Applications/Xcode6-Beta5.app/Contents/Developer/usr/bin/make -f CMakeFiles/Makefile2 all
/Applications/Xcode6-Beta5.app/Contents/Developer/usr/bin/make -f CMakeFiles/test1.dir/build.make CMakeFiles/test1.dir/depend
cd <Path>/Desktop/Testing/cmake_build && /usr/local/bin/cmake -E cmake_depends "Unix Makefiles" <Path>/Desktop/Testing <Path>/Desktop/Testing <Path>/Desktop/Testing/cmake_build <Path>/Desktop/Testing/cmake_build <Path>/Desktop/Testing/cmake_build/CMakeFiles/test1.dir/DependInfo.cmake --color=
/Applications/Xcode6-Beta5.app/Contents/Developer/usr/bin/make -f CMakeFiles/test1.dir/build.make CMakeFiles/test1.dir/build
最佳答案
尝试通过添加
显式设置调试配置的-g标志设置(CMAKE_CXX_FLAGS_DEBUG“-g”)
到您的 CMakeLists.txt,然后使用
重新运行 cmake-DCMAKE_BUILD_TYPE=调试
关于c++ - 缺少 CMake 调试符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34440778/
运行 pip install cmake 时出现上述错误在 alpine linux (WSL) 上。 完整错误: /home/user# pip install cmake Collecting c
我的项目依赖 mariadb-connector-c我正在尝试使用 cmake 自动化下载、构建和链接过程。 我目前将项目下载到一个目录中,然后尝试执行生成忍者文件并运行它们,但我根本无法运行 cma
我正在尝试像这样在 cmake 中执行 execute_process execute_process(COMMAND ${CMAKE_COMMAND} -P myScript.cmake 这仅在文件
我想知道如果我没有给它任何变量告诉它在哪里找到它,cmake 如何找到我的 llvm cmake 配置。 我是 LLVM 新手。我正在构建一个 Hello World LLVM pass。我在 Ubu
我正在开发一个使用 CMake 的项目。顶CMakeLists.txt文件包含以下行: cmake_minimum_required(VERSION 3.7.2) # Kittens will die
我正在使用 Meego 1.2 工具链使用 cmake 运行构建(长话短说)。这个特定的工具链需要使用 --sysroot 选项来查找它需要的任何库。 set (CMAKE_CXX_FLAGS "-f
我们有一些源代码处理工具,可以从多个“片段”生成原始汇编文件等内容。 当使用 make 中的这些工具时,我们可以通过让源处理工具发出“依赖文件”来确保最新的构建,就像 gcc 一样-MD 标志。 例如
如何在 MSYS2 中安装和配置“cmake”?我尝试安装以下 MSYS 包 我在运行任何 cmake 命令时都收到以下错误 '''CMakeLists.txt:5 (cmake_minimum_re
有没有办法在 CMake 中得到一个变量列表?具体来说,我想要做的是调用一个现有函数,该函数接受多个变量并检查它们的计算结果是否为 true。 在某些情况下,其中一些变量将是空列表(计算结果为 fal
我有两组测试(功能测试和单元测试),我希望能够指定通过 cmake 运行哪一组。 一组测试是我想通过“make test”运行的单元测试。 另一组测试是我想通过“制作功能测试”来运行的功能测试。 目前
我的目标是查看有关调用 g++ 的详细信息由 cmake 直接调用从命令行。我不关心 make 的输出就这个问题而言。 根据official FAQ和 the accepted answer on a
我有一个生成库的CMake项目。我已经编写了一个CMake脚本FindXXX.cmake来帮助我的图书馆的用户。这样,他们可以使用find_package(XXX)并获取所需的变量。到现在为止还挺好。
当我看到带有命名空间的 CMake 库时,它们总是在表单中Parent::Component . 如果我有一个足够大的库,那么该库的子部分可能包含组件。我想知道是否可以/适合做 ParentProje
CMake 变量和属性似乎完成了非常相似的事情,我一直无法理解它们之间的区别。 它们每个都有自己的文档部分,但两者都会影响构建系统,两者都是“预先存在的”,并且两者都可以基于其他 CMake 命令动态
我有一个包含多个子目录的 CMake 项目,例如: dir1 subdir11 subdir12 dir2 subdir21 subdir22 根 CMakeLists
如果您想将静态库链接到共享库或可执行文件,同时保持所有符号可见(例如,您可以稍后打开它以找到它们),在 Linux/BSD 上执行此操作的一种非可移植方式是使用标志-Wl,--whole-archiv
CMake 自动创建一个 FooTarget.cmake文件例如添加 install(EXPORT FooTargets FILE FooTargets.cmake NAMESPACE Foo
在CMake中,ELSE和ENDIF控制流函数将表达式作为参数。根据文档,这些是optional。那么这些目的是什么?仅仅是为了维护目的而使原始IF表达式更清晰,还是提供某些功能? 最佳答案 正如您所
我是 cmake 的新手,我发现它非常令人沮丧。我试图在构建运行时评估的文件路径中使用通配符,而不是在生成构建时。 我创建了一个构建,它使用 SWIG 为某些 C++ 代码生成 Java 包装器。我可
我可能在谷歌上搜索错误,但我无法找到 .cmake 文件的用途。 我刚刚偶然发现了一个我必须使用的项目的 CMake 工具,我很难理解它是如何工作的。我明白在包含 CMakeLists.txt 的目录
我是一名优秀的程序员,十分优秀!