Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/197.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
QEMU vs Android emulator:命令行选项_Android_Android Emulator_Qemu - Fatal编程技术网

QEMU vs Android emulator:命令行选项

QEMU vs Android emulator:命令行选项,android,android-emulator,qemu,Android,Android Emulator,Qemu,股票QEMU和Android emulator在命令行选项方面有什么不同 有没有语法相同但工作方式不同的选项?Android emulator构建在qemu之上,因此基本上Android emulator继承了qemu的所有功能,并为Android提供了更具体的选项。从命令行的角度来看,android emulator更像一个包装器。它看起来像: emulator <options-for-android> -qemu <options-for-qemu> emulat

股票QEMU和Android emulator在命令行选项方面有什么不同


有没有语法相同但工作方式不同的选项?Android emulator构建在qemu之上,因此基本上Android emulator继承了qemu的所有功能,并为Android提供了更具体的选项。从命令行的角度来看,android emulator更像一个包装器。它看起来像:

emulator <options-for-android> -qemu <options-for-qemu>
emulator-qemu

您可以参考android emulator文件夹中main emulator.c文件中的代码。在这里,您将看到所有选项都将被解析并发送到vl android.c的主功能,这是修改后的qemu的入口点。

您还可以通过
-verbose
观察哪些选项被赋予qemu:

与qemu-system-x86_64-help相比,这里有一些特定于Android的选项


Android emulator源代码的位置已被问到:

谢谢你的回答,它向我澄清了很多!