首先感谢MAC编译Android源码 prebuilts/misc/darwin-x86/bison/bison出错这篇博客的博主,他的方法解决了我的问题,虽然出的问题不太相同,但是bison出问题时都可以试试这个解决方案。
1. 定位问题
在编译过程中出现下方问题,一开始上网查以为是bison、yacc的安装问题,用which bison/which yacc检查都安装过了,这就很费解了,为什么会出现这个问题呢?
Yacc: aidl <= frameworks/base/tools/aidl/aidl_language_y.y
prebuilts/misc/darwin-x86/bison/bison -d -o out/host/darwin-x86/obj/EXECUTABLES/aidl_intermediates/aidl_language_y.cpp frameworks/base/tools/aidl/aidl_language_y.y
make: *** [out/host/darwin-x86/obj/EXECUTABLES/aidl_intermediates/aidl_language_y.cpp] Abort trap: 6
#### make failed to build some targets (04:08 (mm:ss)) ####
后来经过各种查找,定位到是bison出了问题,在使用命令prebuilts/misc/darwin-x86/bison/bison --version
时,输出Abort trap: 6
也就是说,当前预编译目录下的bison,有问题。不知道是不是系统的问题,目前我的系统版本是macOS High Sierra 10.13.6。
2. 解决方案
既然预编译出的bison有问题,那么就把他替换掉就好了啊!
首先,使用如下命令删掉原本使用的bison。
rm prebuilts/misc/darwin-x86/bison/bison
之后,建立系统内bison到该目录的软链接。
sudo ln -s /usr/local/Cellar/bison/<bison_version>/bin/bison /<source_code_root_dir>/prebuilts/misc/darwin-x86/bison/bison
之后使用上面的命令prebuilts/misc/darwin-x86/bison/bison --version
试一下,如果输出正常,那么bison应该不会出问题了
bison (GNU Bison) 3.1
Written by Robert Corbett and Richard Stallman.
Copyright © 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
之后重新进行编译,看到make completed successfully!!!太激动人心了,之前这个问题卡了很久,在这记录一下,也希望可以帮到更多的人~