Skip to content

Commit

Permalink
Link most binaries statically
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 681496458
  • Loading branch information
Kostik Shtoyk authored and copybara-github committed Oct 2, 2024
1 parent 36c29e6 commit 7ce0244
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions orchestrator/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ package(default_visibility = ["//visibility:public"])
cc_binary(
name = "silifuzz_orchestrator_main",
srcs = ["silifuzz_orchestrator_main.cc"],
features = ["fully_static_link"],
linkstatic = 1,
deps = [
":corpus_util",
":orchestrator_util",
Expand Down
4 changes: 4 additions & 0 deletions tools/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ cc_binary(
cc_binary(
name = "silifuzz_platform_id",
srcs = ["silifuzz_platform_id.cc"],
features = ["fully_static_link"],
linkstatic = 1,
deps = [
"@silifuzz//util:arch",
"@silifuzz//util:cpu_features",
Expand All @@ -92,6 +94,8 @@ cc_library(
cc_binary(
name = "fuzz_filter_tool",
srcs = ["fuzz_filter_tool_main.cc"],
features = ["fully_static_link"],
linkstatic = 1,
deps = [
":fuzz_filter_tool_lib",
"@silifuzz//util:checks",
Expand Down
2 changes: 2 additions & 0 deletions tracing/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ cc_binary(
srcs = [
"trace_tool.cc",
],
features = ["fully_static_link"],
linkstatic = 1,
deps = [
":analysis",
":execution_trace",
Expand Down

0 comments on commit 7ce0244

Please sign in to comment.