Secure, optimizing build options

This commit is contained in:
Ian Gulliver
2016-09-25 16:47:05 -07:00
parent 6da1c57c36
commit c067cbd71e
3 changed files with 90 additions and 0 deletions

22
build/BUILD Normal file
View File

@@ -0,0 +1,22 @@
package(default_visibility = ["//visibility:public"])
exports_files(["CROSSTOOL"])
filegroup(
name = "empty",
srcs = [],
)
cc_toolchain(
name = "cc-compiler-local",
all_files = ":empty",
compiler_files = ":empty",
cpu = "local",
dwp_files = ":empty",
dynamic_runtime_libs = [":empty"],
linker_files = ":empty",
objcopy_files = ":empty",
static_runtime_libs = [":empty"],
strip_files = ":empty",
supports_param_files = 1,
)