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.
在 iPhone GCC4.2 的汇编代码中,如何定义外部函数?例子:
_main: bl myfunc bx lr
我们知道,如果一个普通的编译器,我们可以使用“import myfunc”或“extern myfunc”来声明这个函数,但是iOS开发者中的GCC44.2并不能识别它们。
Apple 的 GAS 是一个非常古老的分支。我认为它需要“.globl”。检查这个文档。