How to show which options are passed to QEMU when launching the android emulator?

前端 未结 1 637
一向
一向 2020-12-12 05:32

I built AOSP 8.1.0_r60 from source, and launched it as explained at: https://stackoverflow.com/revisions/48310014/9

. build/envsetup.sh
lunch ao         


        
相关标签:
1条回答
  • 2020-12-12 06:16

    -verbose

    Just run with:

    emulator -verbose
    

    This makes the emulator command contains lines of form:

    emulator: argv[00] = "/path/to/aosp/8.1.0_r60/prebuilts/android-emulator/linux-x86_64/qemu/linux-x86_64/qemu-system-x86_64"
    emulator: argv[01] = "-dns-server"
    emulator: argv[02] = "10.1.2.24,10.1.2.23"
    emulator: argv[03] = "-serial"
    emulator: argv[04] = "stdio"
    

    which shows all the arguments given.

    0 讨论(0)
提交回复
热议问题