我试图在Mac上用make -jN构建aosp,但它以下一个错误结束:
required: BlockingQueue<Runnable>
found: BlockingQueue
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
29 warnings
ninja: build stopped: subcommand failed.
make: *** [ninja_wrapper] Error 1占整个过程的43%。
发布于 2016-09-17 10:30:51
为了消除这个错误,您需要更新API。
$ make update-api让它更新,然后再次启动make。
$ make -jNhttps://stackoverflow.com/questions/36106920
复制相似问题