Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 C 代码,您可以做到
gcc -Wl,-y,printf main.c
这非常容易记住,在 g++ 和 C++ 代码中你不能只做
g++ -Wl,-y,std::cout main.cpp
,那么 C++ 代码还有其他选择吗?
使用 nm -opr 检查符号名称并确定您想要的名称。
(这个答案的原始版本通过建议 c++filt 给出了所需答案的反面)。