标签: objective-c c xcode lldb
我用C编写的函数我想在调试器中使用它来向javascript引擎发送命令。由于此函数不直接在代码中使用,因此链接器会剥离此符号。有没有办法将特定函数标记为不被剥离?
答案 0 :(得分:5)
发现它!
http://disanji.net/iOS_Doc/#documentation/DeveloperTools/Conceptual/XcodeBuildSystem/500-Linking/bs_linking.html
声明应该
__attribute__((used))