在OSX上为Android Rom创建缓存时出错



我正在尝试使用缓存来更快地构建空间。

http://source.android.com/source/building.html的链接给出了以下代码:

$ export USE_CCACHE=1
$ export CCACHE_DIR=/<path_of_your_choice>/.ccache
$ prebuilts/misc/linux-x86/ccache/ccache -M 50G

但是在第3行

出现以下错误

$ prebuilts/misc/linux-x86/ccache/ccache -M 50G
-bash: prebuilts/misc/linux-x86/ccache/ccache: cannot execute binary file

即使我进入目录并尝试通过"。/ccache -M 50G"它给出相同的'cannot execute binary file'错误。

你们能告诉我我做错了什么吗?

我能解决这个问题

$ export USE_CCACHE=1 

应该放在.bash_profile

之后,你可以给出以下命令,它将工作。

prebuilts/misc/linux-x86/ccache/ccache -M 50G

相关内容

  • 没有找到相关文章

最新更新