调试curses.h应用程序? (AppCode)

时间:2015-12-04 04:33:22

标签: debugging compiler-errors linker curses appcode

我几年来一直在使用JetBrains IDE AppCode ,但我以前从未需要将命令行参数传递给调试器。您可能知道,为了将编译器与必要的curses文件链接,您必须在命令行中包含std::wstring str = L"hello hi hello hi hello hi"; std::wregex remove{L"hi"}; str = std::regex_replace(str, remove, L""); 来编译程序。我遇到的问题是我不确定如何正确地将此参数传递给调试器。提前谢谢。

1 个答案:

答案 0 :(得分:1)

调试器不应该需要库列表,因为有关链接库的所有相关信息都存在于正在调试的可执行文件中。