编译Android Qemu镜像

发布于 2024-07-20 05:52:04 字数 505 浏览 6 评论 0原文

我想开始尝试 Android。 下载源代码并按照 下载页面 中的说明

进行操作 制作了一个简单的通用构建:

============================================
TARGET_PRODUCT=generic
TARGET_BUILD_VARIANT=eng
TARGET_SIMULATOR=
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm
HOST_ARCH=x86
HOST_OS=linux
HOST_BUILD_TYPE=release
BUILD_ID=
============================================

但是我如何创建来自其中的egqemu 图像。 我环顾了一下 /out 目录,找到了主机工具和模拟器,但不知道从哪里开始运行它。

I want to start playing around with Android. Downloaded the sources and followed the instructions from the download page

Made a plain generic build:

============================================
TARGET_PRODUCT=generic
TARGET_BUILD_VARIANT=eng
TARGET_SIMULATOR=
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm
HOST_ARCH=x86
HOST_OS=linux
HOST_BUILD_TYPE=release
BUILD_ID=
============================================

But how can i create an e.g.qemu image from that. I looked around the /out dir,found the host tools and the emulator but dont know where to start to get this running.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不知在何时 2024-07-27 05:52:05

您是否正在尝试为模拟器构建?
如果是这样,请按照以下步骤操作:

  1. 从 Android 根文件夹运行以下命令:“source build/envsetup.sh”,这将设置构建环境。
  2. 要选择模拟器选项的构建,请使用以下命令“lunch 1”
  3. 构建,从根文件夹:“make -j4”(数字 4 是系统处理器数量的两倍,因此如果您有四核机器,请使用-j8)。
  4. 运行模拟器:“emulator”

这应该可以帮助您开始。

如果您需要快速重建子集并在模拟器中加载更改,请使用“adb remount && adbsync”。

如果您想重建系统映像,请使用“make snod”

希望这会有所帮助。

Are you trying to build for the emulator?
if so follow these steps:

  1. from your android root folder run the following command: "source build/envsetup.sh" that will setup the build environment.
  2. to select the build for emulator option use the following command "lunch 1"
  3. build, from your root folder: "make -j4" (the number 4 is twice the number of processors your system has, so if you have a quad core machine use -j8).
  4. run the emulator: "emulator"

That should get you started.

if you need to quickly rebuild a subset and load the changes in the emulator use "adb remount && adb sync".

if you want to rebuild the system image use "make snod"

Hope this helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文