在AOSP构建目录中找不到模拟器

时间:2015-01-13 09:01:06

标签: android android-emulator

我下载了棒棒糖的AOSP源,并按照以下命令构建了源码。

 source build/envsetup.sh
 lunch aosp_arm-eng
 make -j4

它成功编译,没有任何错误。我在终端中输入了模拟器,但显示了

emulator: WARNING: system partition size adjusted to match image file (550 MB > 200 MB)
emulator: WARNING: data partition size adjusted to match image file (550 MB > 200 MB)
SDL init failure, reason is: No available video device

我试图浏览模拟器fules,但在/ host / linux-86 / bin下没有名为emulator的文件。我使用64位的ubuntu 14。可以从任何其他来源下载模拟器。

1 个答案:

答案 0 :(得分:1)

模拟器二进制文件位于prebuilts / android-emulator / now。

警告非常无害,真的。另一方面,SDL无法初始化,可能是因为您没有在您的环境中定义DISPLAY。我认为这是一个无头服务器或您正在测试的虚拟机。

尝试使用-no-window标志在没有窗口的情况下启动。