how to export a function in GAS assembler?

醉酒当歌 提交于 2019-12-06 06:13:50

You'll need to set your symbol global for it to be externally linkable;

.text 
.global __ls__11NSDOM_EncapFf          /* Sets the symbol externally linkable */
__ls__11NSDOM_EncapFf:
/* first load the symbolic constant*/
...

Use .global symbol or .globl symbol (see Using as - Assembler directives).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!