diff options
Diffstat (limited to 'cc/linker.go')
-rw-r--r-- | cc/linker.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cc/linker.go b/cc/linker.go index f34658485..4e9404c0f 100644 --- a/cc/linker.go +++ b/cc/linker.go @@ -389,9 +389,7 @@ func (linker *baseLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { } deps.SystemSharedLibs = linker.Properties.System_shared_libs - // In Bazel conversion mode, variations have not been specified, so SystemSharedLibs may - // inaccuarately appear unset, which can cause issues with circular dependencies. - if deps.SystemSharedLibs == nil && !ctx.BazelConversionMode() { + if deps.SystemSharedLibs == nil { // Provide a default system_shared_libs if it is unspecified. Note: If an // empty list [] is specified, it implies that the module declines the // default system_shared_libs. |