shell脚本里的 lunsh命令
时间: 2023-06-28 08:08:21 浏览: 140
教师节主题班会.pptx
我想您可能是想问的是Linux中的"lunch"命令。这是Android源代码编译环境中使用的一个脚本,它的作用是设置环境变量和编译选项,以便编译Android源代码。
使用lunch命令时,需要先进入Android源代码根目录,然后运行lunch命令并选择要编译的目标设备。例如,要编译Nexus 5X设备,可以运行以下命令:
```
$ cd /path/to/android/source
$ source build/envsetup.sh
$ lunch aosp_bullhead-userdebug
```
其中,aosp_bullhead-userdebug是Nexus 5X设备的编译目标。
此外,lunch命令还可以用来选择编译Android的其他变体,例如编译模拟器镜像或只编译某个特定的应用程序等。
阅读全文