您可能知道,Bionic是Google用于运行Android应用程序的C库.有人在Linux机器上进行编译,因此可以在Android之外轻松使用.这是最近一次努力的代码,最初称为Gentoo-bionic.原始项目是基于Gentoo的,但目前的来源不是Gentoo特有的.我正在使用Ubuntu.这是代码:
https://github.com/gentoobionic/bionic
这是关于ELC2013的介绍:
> http://elinux.org/images/2/25/2013_elc_gentoo_bionic.pdf
> http://free-electrons.com/blog/elc-2013-videos/(声音不好)
我试图在X86_64 Ubuntu上编译它,但失败了.我试过了:
./autogen.sh
./configure
我有:
configure: error: unsupported host cpu x86_64
所以我尝试过:
./configure --build=arm-linux --target=arm-linux --host=arm-linux
配置很好,但我得到:
$make
make: *** No rule to make target `libc/arch-x86/include/machine/cpu-features.h',
needed by `all-am'. Stop.
是否有人可以建议解决方法?
解决方法:
自2015年11月起,我的set of ebuid scripts在我的Gentoo x86_64桌面上为x86_64和i386编译仿生.所需工具:glibc目标GCC版本4.9.3或5.3.0; binutils 2.4.25或更早版本,glibc-targeting clang 3.5.0,make.
如果您可以在桌面上安装这些工具,则可以编译仿生.
但请注意,我的ebuild应用了大量补丁.
要了解他们的工作,您可以执行以下操作:
>在x86_64台式机或笔记本电脑上启动Gentoo DVD.
>安装我的脚本.
>例如,运行它们捕获输出
USE = verbose ebuild bionic / bionic-5.1.1-r29.ebuild clean install qmerge 2>& 1 | tee /tmp/bionic.cout
一旦这样的命令终止,您将获得修补的源代码树,中间和最终编译结果,以及使用gcc / clang / ld / ar命令行的完整构建日志.