目录
1.bazel 编译介绍
【bazel】
bazel build有两种方式
1.bazel build //demo_pkg/...
编译demo_pkg包下的所有程序,‘//’代表项目根目录,也可以省略(进入根目录后省略)
2.bazel build //demo_pkg:hello
编译demo_pkg下名为hello的程序,格式为“包名:目标名”
执行就是两种方式
1.
./bazel-bin/demo_pkg/hello
2.编译执行一体化
bazel run //demo_pkg:hello
bazel run //demo_pkg/...
bazel build //modules/prediction:prediction_component_lib