From 5baca302dfe7c1e797051002cf8c896f4db0a8f2 Mon Sep 17 00:00:00 2001 From: Rupert Shuttleworth Date: Thu, 22 Apr 2021 13:41:37 -0400 Subject: [PATCH] Add libc_openbsd to mixed builds deny list. Test: USE_BAZEL_ANALYSIS=1 m linkerconfig Change-Id: I59386d7d70a9a3c0cabe1b641284dfbd131d532d --- android/bazel.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/android/bazel.go b/android/bazel.go index 3e57e222b..6800c9167 100644 --- a/android/bazel.go +++ b/android/bazel.go @@ -220,7 +220,8 @@ var ( // Per-module denylist to opt modules out of mixed builds. Such modules will // still be generated via bp2build. mixedBuildsDisabledList = []string{ - "libc_gdtoa", // ruperts@, cc_library_static, OK for bp2build but undefined symbol: __strtorQ for mixed builds + "libc_gdtoa", // ruperts@, cc_library_static, OK for bp2build but undefined symbol: __strtorQ for mixed builds + "libc_openbsd", // ruperts@, cc_library_static, OK for bp2build but error: duplicate symbol: strcpy for mixed builds } // Used for quicker lookups