从Android源大厦只是一个工具

从Android源大厦只是一个工具

本文介绍了从Android源大厦只是一个工具(AOSP)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

目前我使用上的图像亚马逊AWS构建Android。结果
问题的关键是,我只是在外部工具感兴趣 grxmlcompile 这是专为路径主机(Linux版): AOSP /输出/主机/ Linux的的x86 /斌结果
其中源是 AOSP /外部/ SREC /工具/ grxmlcompile

Currently I'm using the the AOSP ROM Builder image on Amazon AWS to build Android.
The point is, I'm only interested in the external tool grxmlcompile that is built for the host (linux) in the path: aosp/out/host/linux-x86/bin
where the source is at aosp/external/srec/tools/grxmlcompile

我不是很熟悉Linux,使文件,因此我的困难让这个下去。

I'm not very familiar with Linux and make files, hence my difficulty to get this going.

我想复制源(如果需要的话,整个树),并建立只是一个Linux机器上运行此工具。

I would like to copy the source (if needed the whole tree) and build just this tool on another linux machine.

我找不到make文件我需要运行建立只是这一部分。

I can't find the make file I need to run to build just this part.

更新:
貌似辨认出/主机/ Linux的的x86 /斌/ grxmlcompile 将做的工作。我仍希望能够端口只在源代码树的构建机器的需要的部分。

UPDATE:Looks like make out/host/linux-x86/bin/grxmlcompile would do the job. I would still like to be able to port only the needed parts of the source tree to the build machine

推荐答案

CD 到您的Andr​​oid版本源的顶部。

cd to the top of your Android build source.

source build/envsetup.sh
cd external/srec/tools/grxmlcompile
mma

......或任何目录或子目录一个makefile。从AOSP构建/ envsetup.sh

...or any directory, or sub-directory a makefile. From AOSP build/envsetup.sh


  • L:从树的顶部使得

  • 毫米:所有构建在当前目录中的模块,而不是它们的依赖

  • MMM:所有构建在提供的目录中的模块,而不是它们的依赖。
           为了限制模块正在建造使用的语法:MMM DIR /:目标1,TARGET2

  • MMA:所有构建在当前目录中的模块,以及它们依赖

  • mmma:所有构建在提供的目录中的模块,以及它们依赖

外部/ SREC从平台/ Android的5.1.1_r4标签之后清单中删除。所以后来,如果您使用的是这样的表现为修订版本5,6或更高版本,你可能需要做 git的克隆的https://android.googlesource/platform/external/srec外部/ SREC 来包括目录。

external/srec was removed from the platform/manifest after android-5.1.1_r4 tag. So later, if you are using a manifest such as revision 5, 6 or later, you may need to do git clone https://android.googlesource/platform/external/srec external/srec to include that directory.

这篇关于从Android源大厦只是一个工具(AOSP)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-31 07:20