提问人:DailyLearner 提问时间:8/26/2023 最后编辑:DailyLearner 更新时间:8/26/2023 访问量:128
Windows 上的 GCC:使用地址清理程序
GCC on Windows: Using Address Sanitizer
问:
我正在使用 GCC 的 WinLibs 独立版本和适用于 Windows 的 MinGW-w64。
当我添加编译器选项时,我收到库的链接器错误。-fsanitize=address
asan
这是我用来编译程序的命令行:
g++ -fsanitize=address -g -Wall -Wextra -pedantic -std=c++20 .\test.cpp
这是错误:
C:/sw/gcc-13.1.0/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/13.1.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lasan: No such file or directory
collect2.exe: error: ld returned 1 exit status
如何解决此链接器错误?
答: 暂无答案
评论