作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用了以下...
~/Development/Android/android-ndk-r8c/build/tools/make-standalone-toolchain.sh --platform=android-9 --install-dir=/Users/me/toolchain
int main ()
{
return 0;
}
<toolchain>/arm-linux-androideabi-gcc test.c
<toolchain>/arm-linux-androideabi-gcc --sysroot=<toolchain>/sysroot test.c
toolchain/bin/../lib/gcc/arm-linux-androideabi/4.6/../../../../arm-linux-androideabi/bin/ld: error: cannot open crtbegin_dynamic.o: No such file or directory
最佳答案
为了使它更简单,只需设置 sysroot:
<toolchain>/arm-linux-androideabi-g++ ~/test.c -o ~/test --sysroot=/home/user/android-ndk/platforms/android-9/arch-arm/
关于android-ndk - Android : error: cannot open crtbegin_dynamic. o: 没有那个文件或目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16795583/
当使用 Android x86 工具链调试链接错误(undefined reference to _dso_handle)时,我注意到它正在静态链接 crtbegin_dynamic.o。这个文件的用
我使用了以下... ~/Development/Android/android-ndk-r8c/build/tools/make-standalone-toolchain.sh --platform=
从readelf我们知道一个ELF可执行文件的入口点在Android(32位ARM)中是“_start”,而“_start”定义在crtbegin_dynamic.S 用于动态链接的可执行文件。 问题
我是一名优秀的程序员,十分优秀!