提问人:Sakura Adachi 提问时间:8/14/2021 最后编辑:Sakura Adachi 更新时间:8/17/2021 访问量:82
如何运行我从 clang++ test.cpp -S 获得的程序集?
How to run the assembly I got from clang++ test.cpp -S?
问:
所以我得到了一个 C++ 程序的汇编代码clang++ test.cpp -S
现在我有了 test.s,它是组件......现在如何在 Android (ARM) 中运行它?
我当时试过......但它在 ld 部分给了我一个错误......错误信息test.s -o test.o
ld test.o -o test
答:
1赞
Sakura Adachi
8/17/2021
#1
clang++ -v test.cpp
以查看它传递给 ld 的参数。
然后复制粘贴它起作用了,谢谢ld args -o test
评论
c++
clang++
clang++ test.s
clang++ -v test.s
ld
clang++
as test.s -o test.o
ld test.o args_here -o test