diff options
| author | 2021-04-22 17:46:33 +0000 | |
|---|---|---|
| committer | 2021-04-22 17:46:33 +0000 | |
| commit | be1c47b2165d8df0a0939205cf07ad690e769df9 (patch) | |
| tree | cd32be1a55d93e48dd67bc78739b965f93c29adf | |
| parent | 1552c7b1787ffdf36ff7108606cf1cda1ac0c3bc (diff) | |
| parent | 5baca302dfe7c1e797051002cf8c896f4db0a8f2 (diff) | |
Merge "Add libc_openbsd to mixed builds deny list."
| -rw-r--r-- | android/bazel.go | 3 |
1 files changed, 2 insertions, 1 deletions
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 |