Skip to content

Commit 462144b

Browse files
komugi1211sChromeos LUCI
authored and
Chromeos LUCI
committedOct 11, 2024·
CRAS: remove the linker flag -lc_fake_feature_library
This CL is a part of ongoing effort to clean up fake library that are being provided from the featured. The linker flag `-lc_fake_feature_library` provides symbols that are no longer referenced by the adhd nor cras itself. removing this flag makes it possible to clean up the featured fake library without breaking the compilation. BUG=b:242920490 TEST=after emerging fake libraries to `/build/lib64`, `build-packages media-sound/adhd` succeeds. Cq-Depend: 5868354 Change-Id: I5474f6b11abe6490c20fbf04a0cd46fba6424e9d Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/adhd/+/5872346 Commit-Queue: Soichiro Fujii <[email protected]> Tested-by: [email protected] <[email protected]> Reviewed-by: Hung-Hsien Chen <[email protected]> Reviewed-by: Li-Yu Yu <[email protected]> Tested-by: Soichiro Fujii <[email protected]>
1 parent 8b73f31 commit 462144b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
 

‎repositories/system_cras_rust/BUILD.system_cras_rust.bazel

+1-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ cc_import(
88
name = "system_cras_rust",
99
linkopts = [
1010
"-lm",
11-
] + select({
12-
"@adhd//:featured_build": ["-lc_fake_feature_library"],
13-
"//conditions:default": [],
14-
}),
11+
],
1512
static_library = "libcras_rust.a",
1613
visibility = ["//visibility:public"],
1714
deps = [

0 commit comments

Comments
 (0)
Please sign in to comment.