1、构建Apollo
在运行系统之前,必须先构建系统。请注意,bootstrap.sh
实际上会成功,但是如果跳过构建步骤,则不会显示用户界面。以下步骤需要在apollo/
目录下运行:
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
1 | $ hexo new "My New Post" |
More info: Writing
官网: https://www.bazel.build
Github: https://github.com/bazelbuild/bazel
Bazel是一个类似于Make的编译工具,是Google为其内部软件开发的特点量身定制的工具,如今Google使用它来构建内部大多数的软件。Google认为直接用Makefile构建软件速度太慢,结果不可靠,所以构建了一个新的工具叫做Bazel,Bazel的规则层级更高。
下面就以C++和Bazel结合的例子理解一下Bazel的工作原理。