2016-07-29 21:48:20 +02:00
|
|
|
// Copyright 2016 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package cc
|
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
import (
|
|
|
|
"android/soong/android"
|
2018-10-09 00:10:12 +02:00
|
|
|
"android/soong/cc/config"
|
2016-07-30 02:28:03 +02:00
|
|
|
"fmt"
|
2018-11-30 23:00:04 +01:00
|
|
|
"strconv"
|
2016-09-29 23:06:02 +02:00
|
|
|
|
2018-02-15 23:12:26 +01:00
|
|
|
"github.com/google/blueprint"
|
2016-09-29 23:06:02 +02:00
|
|
|
"github.com/google/blueprint/proptools"
|
2016-07-30 02:28:03 +02:00
|
|
|
)
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
// This file contains the basic functionality for linking against static libraries and shared
|
|
|
|
// libraries. Final linking into libraries or executables is handled in library.go, binary.go, etc.
|
|
|
|
|
|
|
|
type BaseLinkerProperties struct {
|
|
|
|
// list of modules whose object files should be linked into this module
|
|
|
|
// in their entirety. For static library modules, all of the .o files from the intermediate
|
|
|
|
// directory of the dependency will be linked into this modules .a file. For a shared library,
|
|
|
|
// the dependency's .a file will be linked into this module using -Wl,--whole-archive.
|
|
|
|
Whole_static_libs []string `android:"arch_variant,variant_prepend"`
|
|
|
|
|
|
|
|
// list of modules that should be statically linked into this module.
|
|
|
|
Static_libs []string `android:"arch_variant,variant_prepend"`
|
|
|
|
|
|
|
|
// list of modules that should be dynamically linked into this module.
|
|
|
|
Shared_libs []string `android:"arch_variant"`
|
|
|
|
|
2016-12-13 21:50:57 +01:00
|
|
|
// list of modules that should only provide headers for this module.
|
|
|
|
Header_libs []string `android:"arch_variant,variant_prepend"`
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
// list of module-specific flags that will be used for all link steps
|
|
|
|
Ldflags []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of system libraries that will be dynamically linked to
|
2017-08-19 01:52:25 +02:00
|
|
|
// shared library and executable modules. If unset, generally defaults to libc,
|
|
|
|
// libm, and libdl. Set to [] to prevent linking against the defaults.
|
2018-12-04 00:25:46 +01:00
|
|
|
System_shared_libs []string `android:"arch_variant"`
|
2016-07-29 21:48:20 +02:00
|
|
|
|
|
|
|
// allow the module to contain undefined symbols. By default,
|
|
|
|
// modules cannot contain undefined symbols that are not satisified by their immediate
|
|
|
|
// dependencies. Set this flag to true to remove --no-undefined from the linker flags.
|
|
|
|
// This flag should only be necessary for compiling low-level libraries like libc.
|
2016-12-08 18:45:21 +01:00
|
|
|
Allow_undefined_symbols *bool `android:"arch_variant"`
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-10-10 22:43:02 +02:00
|
|
|
// don't link in libclang_rt.builtins-*.a
|
2019-02-15 19:07:18 +01:00
|
|
|
No_libcrt *bool `android:"arch_variant"`
|
2018-10-10 22:43:02 +02:00
|
|
|
|
2018-04-03 20:33:34 +02:00
|
|
|
// Use clang lld instead of gnu ld.
|
2018-04-20 20:52:42 +02:00
|
|
|
Use_clang_lld *bool `android:"arch_variant"`
|
2018-04-03 20:33:34 +02:00
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
// -l arguments to pass to linker for host-provided shared libraries
|
|
|
|
Host_ldlibs []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of shared libraries to re-export include directories from. Entries must be
|
|
|
|
// present in shared_libs.
|
|
|
|
Export_shared_lib_headers []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of static libraries to re-export include directories from. Entries must be
|
|
|
|
// present in static_libs.
|
|
|
|
Export_static_lib_headers []string `android:"arch_variant"`
|
|
|
|
|
2016-12-13 21:50:57 +01:00
|
|
|
// list of header libraries to re-export include directories from. Entries must be
|
|
|
|
// present in header_libs.
|
|
|
|
Export_header_lib_headers []string `android:"arch_variant"`
|
|
|
|
|
2016-09-29 02:34:58 +02:00
|
|
|
// list of generated headers to re-export include directories from. Entries must be
|
|
|
|
// present in generated_headers.
|
|
|
|
Export_generated_headers []string `android:"arch_variant"`
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
// don't link in crt_begin and crt_end. This flag should only be necessary for
|
|
|
|
// compiling crt or libc.
|
|
|
|
Nocrt *bool `android:"arch_variant"`
|
2016-12-01 23:45:23 +01:00
|
|
|
|
|
|
|
// group static libraries. This can resolve missing symbols issues with interdependencies
|
|
|
|
// between static libraries, but it is generally better to order them correctly instead.
|
|
|
|
Group_static_libs *bool `android:"arch_variant"`
|
2017-06-16 05:03:55 +02:00
|
|
|
|
2017-12-19 18:17:32 +01:00
|
|
|
// list of modules that should be installed with this module. This is similar to 'required'
|
|
|
|
// but '.vendor' suffix will be appended to the module names if the shared libraries have
|
|
|
|
// vendor variants and this module uses VNDK.
|
|
|
|
Runtime_libs []string `android:"arch_variant"`
|
|
|
|
|
2017-06-16 05:03:55 +02:00
|
|
|
Target struct {
|
2020-10-29 08:49:43 +01:00
|
|
|
Vendor, Product struct {
|
|
|
|
// list of shared libs that only should be used to build vendor or
|
|
|
|
// product variant of the C/C++ module.
|
2018-11-06 17:12:13 +01:00
|
|
|
Shared_libs []string
|
|
|
|
|
2020-10-29 08:49:43 +01:00
|
|
|
// list of static libs that only should be used to build vendor or
|
|
|
|
// product variant of the C/C++ module.
|
2020-02-21 00:04:35 +01:00
|
|
|
Static_libs []string
|
|
|
|
|
2020-10-29 08:49:43 +01:00
|
|
|
// list of shared libs that should not be used to build vendor or
|
|
|
|
// product variant of the C/C++ module.
|
2017-06-16 05:03:55 +02:00
|
|
|
Exclude_shared_libs []string
|
2017-10-13 02:17:01 +02:00
|
|
|
|
2020-10-29 08:49:43 +01:00
|
|
|
// list of static libs that should not be used to build vendor or
|
|
|
|
// product variant of the C/C++ module.
|
2017-10-13 02:17:01 +02:00
|
|
|
Exclude_static_libs []string
|
2017-12-19 18:17:32 +01:00
|
|
|
|
2020-10-29 08:49:43 +01:00
|
|
|
// list of header libs that should not be used to build vendor or
|
|
|
|
// product variant of the C/C++ module.
|
2018-08-08 19:58:34 +02:00
|
|
|
Exclude_header_libs []string
|
|
|
|
|
2020-10-29 08:49:43 +01:00
|
|
|
// list of runtime libs that should not be installed along with
|
|
|
|
// vendor or variant of the C/C++ module.
|
2017-12-19 18:17:32 +01:00
|
|
|
Exclude_runtime_libs []string
|
2018-10-24 21:42:09 +02:00
|
|
|
|
2020-10-29 08:49:43 +01:00
|
|
|
// version script for vendor or product variant
|
2018-10-24 21:42:09 +02:00
|
|
|
Version_script *string `android:"arch_variant"`
|
2017-06-16 05:03:55 +02:00
|
|
|
}
|
2018-01-31 16:54:12 +01:00
|
|
|
Recovery struct {
|
2018-11-06 17:12:13 +01:00
|
|
|
// list of shared libs that only should be used to build the recovery
|
|
|
|
// variant of the C/C++ module.
|
|
|
|
Shared_libs []string
|
|
|
|
|
2019-08-01 22:45:42 +02:00
|
|
|
// list of static libs that only should be used to build the recovery
|
|
|
|
// variant of the C/C++ module.
|
|
|
|
Static_libs []string
|
|
|
|
|
2018-01-31 16:54:12 +01:00
|
|
|
// list of shared libs that should not be used to build
|
|
|
|
// the recovery variant of the C/C++ module.
|
|
|
|
Exclude_shared_libs []string
|
|
|
|
|
|
|
|
// list of static libs that should not be used to build
|
|
|
|
// the recovery variant of the C/C++ module.
|
|
|
|
Exclude_static_libs []string
|
2018-08-10 18:08:13 +02:00
|
|
|
|
|
|
|
// list of header libs that should not be used to build the recovery variant
|
|
|
|
// of the C/C++ module.
|
|
|
|
Exclude_header_libs []string
|
2018-01-31 16:54:12 +01:00
|
|
|
}
|
2020-01-22 02:04:13 +01:00
|
|
|
Ramdisk struct {
|
|
|
|
// list of static libs that only should be used to build the recovery
|
|
|
|
// variant of the C/C++ module.
|
|
|
|
Static_libs []string
|
|
|
|
|
|
|
|
// list of shared libs that should not be used to build
|
|
|
|
// the ramdisk variant of the C/C++ module.
|
|
|
|
Exclude_shared_libs []string
|
|
|
|
|
|
|
|
// list of static libs that should not be used to build
|
|
|
|
// the ramdisk variant of the C/C++ module.
|
|
|
|
Exclude_static_libs []string
|
|
|
|
}
|
2020-10-27 23:01:21 +01:00
|
|
|
Vendor_ramdisk struct {
|
|
|
|
// list of shared libs that should not be used to build
|
|
|
|
// the recovery variant of the C/C++ module.
|
|
|
|
Exclude_shared_libs []string
|
|
|
|
|
|
|
|
// list of static libs that should not be used to build
|
|
|
|
// the vendor ramdisk variant of the C/C++ module.
|
|
|
|
Exclude_static_libs []string
|
|
|
|
}
|
2020-04-07 18:50:32 +02:00
|
|
|
Platform struct {
|
|
|
|
// list of shared libs that should be use to build the platform variant
|
|
|
|
// of a module that sets sdk_version. This should rarely be necessary,
|
|
|
|
// in most cases the same libraries are available for the SDK and platform
|
|
|
|
// variants.
|
|
|
|
Shared_libs []string
|
|
|
|
}
|
2020-12-03 09:28:25 +01:00
|
|
|
Apex struct {
|
|
|
|
// list of shared libs that should not be used to build the apex variant of
|
|
|
|
// the C/C++ module.
|
|
|
|
Exclude_shared_libs []string
|
|
|
|
|
|
|
|
// list of static libs that should not be used to build the apex ramdisk
|
|
|
|
// variant of the C/C++ module.
|
|
|
|
Exclude_static_libs []string
|
|
|
|
}
|
2017-06-16 05:03:55 +02:00
|
|
|
}
|
2018-02-15 23:12:26 +01:00
|
|
|
|
|
|
|
// make android::build:GetBuildNumber() available containing the build ID.
|
|
|
|
Use_version_lib *bool `android:"arch_variant"`
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-05-24 03:30:46 +02:00
|
|
|
// Generate compact dynamic relocation table, default true.
|
|
|
|
Pack_relocations *bool `android:"arch_variant"`
|
2018-07-26 23:00:24 +02:00
|
|
|
|
|
|
|
// local file name to pass to the linker as --version_script
|
2019-03-05 07:35:41 +01:00
|
|
|
Version_script *string `android:"path,arch_variant"`
|
2019-12-16 18:55:10 +01:00
|
|
|
|
|
|
|
// list of static libs that should not be used to build this module
|
2020-06-11 00:47:34 +02:00
|
|
|
Exclude_static_libs []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of shared libs that should not be used to build this module
|
|
|
|
Exclude_shared_libs []string `android:"arch_variant"`
|
2018-05-24 03:30:46 +02:00
|
|
|
}
|
|
|
|
|
2018-07-26 23:00:24 +02:00
|
|
|
func NewBaseLinker(sanitize *sanitize) *baseLinker {
|
|
|
|
return &baseLinker{sanitize: sanitize}
|
2016-07-30 02:28:03 +02:00
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
// baseLinker provides support for shared_libs, static_libs, and whole_static_libs properties
|
|
|
|
type baseLinker struct {
|
|
|
|
Properties BaseLinkerProperties
|
|
|
|
dynamicProperties struct {
|
Add support for versioned stubs.
A cc_library or cc_library_shared can be configured to have stubs
variants of the lib.
cc_library_shared {
name: "libfoo",
srcs: ["foo.cpp"],
stubs: {
symbol_file: "foo.map.txt",
versions: ["1", "2", "3"],
},
}
then, stubs variants of libfoo for version 1, 2, and 3 are created
from foo.map.txt. Each version has the symbols from the map file where
each symbol is annotated with the version that the symbol was introduced
via the 'introduced=<ver>' syntax. The versions don't need to be in sync
with the platform versions (e.g., P for 28). The versions are local to
the library.
For another library or executable to use the versioned stubs lib, use
the new 'name#ver' syntax to specify the version:
cc_binary {
name: "test",
....
shared_libs: ["libFoo#2"],
}
Internally, a new mutator 'version' is applied to all cc.Module objects.
By default, a variant named 'impl' is created for the non-stub version.
If the versions property is set, additional variations are created per a
version with the mutable property BuildStubs set as true, which lets the
compiler and the linker to build a stubs lib from the symbol file
instead from the source files.
This feature will be used to enforce stable interfaces among APEXs. When
a lib foo in an APEX is depending on a lib bar in another APEX, then bar
should have stable interface (in C lang) and foo should be depending on
one of the stubs libs of bar. Only libraries in the same APEX as foo can
link against non-stub version of it.
Bug: 112672359
Test: m (cc_test added)
Change-Id: I2488be0b9d7b7b8d7761234dc1c9c0e3add8601c
2018-10-15 15:25:07 +02:00
|
|
|
RunPaths []string `blueprint:"mutated"`
|
|
|
|
BuildStubs bool `blueprint:"mutated"`
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
2018-07-26 23:00:24 +02:00
|
|
|
|
|
|
|
sanitize *sanitize
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (linker *baseLinker) appendLdflags(flags []string) {
|
|
|
|
linker.Properties.Ldflags = append(linker.Properties.Ldflags, flags...)
|
|
|
|
}
|
|
|
|
|
2020-11-20 23:27:25 +01:00
|
|
|
// linkerInit initializes dynamic properties of the linker (such as runpath).
|
2016-08-01 22:20:05 +02:00
|
|
|
func (linker *baseLinker) linkerInit(ctx BaseModuleContext) {
|
2016-07-29 21:48:20 +02:00
|
|
|
if ctx.toolchain().Is64Bit() {
|
2016-07-30 02:28:03 +02:00
|
|
|
linker.dynamicProperties.RunPaths = append(linker.dynamicProperties.RunPaths, "../lib64", "lib64")
|
2016-07-29 21:48:20 +02:00
|
|
|
} else {
|
2016-07-30 02:28:03 +02:00
|
|
|
linker.dynamicProperties.RunPaths = append(linker.dynamicProperties.RunPaths, "../lib", "lib")
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-01 22:20:05 +02:00
|
|
|
func (linker *baseLinker) linkerProps() []interface{} {
|
2018-10-24 21:42:09 +02:00
|
|
|
return []interface{}{&linker.Properties, &linker.dynamicProperties}
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2018-07-26 23:00:24 +02:00
|
|
|
func (linker *baseLinker) linkerDeps(ctx DepsContext, deps Deps) Deps {
|
2016-07-29 21:48:20 +02:00
|
|
|
deps.WholeStaticLibs = append(deps.WholeStaticLibs, linker.Properties.Whole_static_libs...)
|
2016-12-13 21:50:57 +01:00
|
|
|
deps.HeaderLibs = append(deps.HeaderLibs, linker.Properties.Header_libs...)
|
2016-07-29 21:48:20 +02:00
|
|
|
deps.StaticLibs = append(deps.StaticLibs, linker.Properties.Static_libs...)
|
|
|
|
deps.SharedLibs = append(deps.SharedLibs, linker.Properties.Shared_libs...)
|
2017-12-19 18:17:32 +01:00
|
|
|
deps.RuntimeLibs = append(deps.RuntimeLibs, linker.Properties.Runtime_libs...)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2016-12-13 21:50:57 +01:00
|
|
|
deps.ReexportHeaderLibHeaders = append(deps.ReexportHeaderLibHeaders, linker.Properties.Export_header_lib_headers...)
|
2016-07-29 21:48:20 +02:00
|
|
|
deps.ReexportStaticLibHeaders = append(deps.ReexportStaticLibHeaders, linker.Properties.Export_static_lib_headers...)
|
|
|
|
deps.ReexportSharedLibHeaders = append(deps.ReexportSharedLibHeaders, linker.Properties.Export_shared_lib_headers...)
|
2016-09-29 02:34:58 +02:00
|
|
|
deps.ReexportGeneratedHeaders = append(deps.ReexportGeneratedHeaders, linker.Properties.Export_generated_headers...)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2020-06-11 00:47:34 +02:00
|
|
|
deps.SharedLibs = removeListFromList(deps.SharedLibs, linker.Properties.Exclude_shared_libs)
|
|
|
|
deps.StaticLibs = removeListFromList(deps.StaticLibs, linker.Properties.Exclude_static_libs)
|
2019-12-16 18:55:10 +01:00
|
|
|
deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, linker.Properties.Exclude_static_libs)
|
|
|
|
|
2020-12-03 09:28:25 +01:00
|
|
|
// Record the libraries that need to be excluded when building for APEX. Unlike other
|
|
|
|
// target.*.exclude_* properties, SharedLibs and StaticLibs are not modified here because
|
|
|
|
// this module hasn't yet passed the apexMutator. Therefore, we can't tell whether this is
|
|
|
|
// an apex variant of not. Record the exclude list in the deps struct for now. The info is
|
|
|
|
// used to mark the dependency tag when adding dependencies to the deps. Then inside
|
|
|
|
// GenerateAndroidBuildActions, the marked dependencies are ignored (i.e. not used) for APEX
|
|
|
|
// variants.
|
|
|
|
deps.ExcludeLibsForApex = append(deps.ExcludeLibsForApex, linker.Properties.Target.Apex.Exclude_shared_libs...)
|
|
|
|
deps.ExcludeLibsForApex = append(deps.ExcludeLibsForApex, linker.Properties.Target.Apex.Exclude_static_libs...)
|
|
|
|
|
2018-02-15 23:12:26 +01:00
|
|
|
if Bool(linker.Properties.Use_version_lib) {
|
|
|
|
deps.WholeStaticLibs = append(deps.WholeStaticLibs, "libbuildversion")
|
|
|
|
}
|
|
|
|
|
2020-10-29 08:49:43 +01:00
|
|
|
// TODO(b/150902910): product variant must use Target.Product
|
2017-09-28 02:01:44 +02:00
|
|
|
if ctx.useVndk() {
|
2018-11-06 17:12:13 +01:00
|
|
|
deps.SharedLibs = append(deps.SharedLibs, linker.Properties.Target.Vendor.Shared_libs...)
|
2017-08-09 17:48:06 +02:00
|
|
|
deps.SharedLibs = removeListFromList(deps.SharedLibs, linker.Properties.Target.Vendor.Exclude_shared_libs)
|
|
|
|
deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, linker.Properties.Target.Vendor.Exclude_shared_libs)
|
2020-02-21 00:04:35 +01:00
|
|
|
deps.StaticLibs = append(deps.StaticLibs, linker.Properties.Target.Vendor.Static_libs...)
|
2017-10-13 02:17:01 +02:00
|
|
|
deps.StaticLibs = removeListFromList(deps.StaticLibs, linker.Properties.Target.Vendor.Exclude_static_libs)
|
2018-08-08 19:58:34 +02:00
|
|
|
deps.HeaderLibs = removeListFromList(deps.HeaderLibs, linker.Properties.Target.Vendor.Exclude_header_libs)
|
2017-10-13 02:17:01 +02:00
|
|
|
deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, linker.Properties.Target.Vendor.Exclude_static_libs)
|
|
|
|
deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, linker.Properties.Target.Vendor.Exclude_static_libs)
|
2017-12-19 18:17:32 +01:00
|
|
|
deps.RuntimeLibs = removeListFromList(deps.RuntimeLibs, linker.Properties.Target.Vendor.Exclude_runtime_libs)
|
2017-08-09 17:48:06 +02:00
|
|
|
}
|
|
|
|
|
2018-01-31 16:54:12 +01:00
|
|
|
if ctx.inRecovery() {
|
2018-11-06 17:12:13 +01:00
|
|
|
deps.SharedLibs = append(deps.SharedLibs, linker.Properties.Target.Recovery.Shared_libs...)
|
2018-01-31 16:54:12 +01:00
|
|
|
deps.SharedLibs = removeListFromList(deps.SharedLibs, linker.Properties.Target.Recovery.Exclude_shared_libs)
|
|
|
|
deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, linker.Properties.Target.Recovery.Exclude_shared_libs)
|
2019-08-01 22:45:42 +02:00
|
|
|
deps.StaticLibs = append(deps.StaticLibs, linker.Properties.Target.Recovery.Static_libs...)
|
2018-01-31 16:54:12 +01:00
|
|
|
deps.StaticLibs = removeListFromList(deps.StaticLibs, linker.Properties.Target.Recovery.Exclude_static_libs)
|
2018-08-10 18:08:13 +02:00
|
|
|
deps.HeaderLibs = removeListFromList(deps.HeaderLibs, linker.Properties.Target.Recovery.Exclude_header_libs)
|
|
|
|
deps.ReexportHeaderLibHeaders = removeListFromList(deps.ReexportHeaderLibHeaders, linker.Properties.Target.Recovery.Exclude_header_libs)
|
2018-01-31 16:54:12 +01:00
|
|
|
deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, linker.Properties.Target.Recovery.Exclude_static_libs)
|
|
|
|
deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, linker.Properties.Target.Recovery.Exclude_static_libs)
|
2020-01-22 02:04:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.inRamdisk() {
|
2020-10-27 23:03:34 +01:00
|
|
|
deps.SharedLibs = removeListFromList(deps.SharedLibs, linker.Properties.Target.Ramdisk.Exclude_shared_libs)
|
|
|
|
deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, linker.Properties.Target.Ramdisk.Exclude_shared_libs)
|
|
|
|
deps.StaticLibs = append(deps.StaticLibs, linker.Properties.Target.Ramdisk.Static_libs...)
|
|
|
|
deps.StaticLibs = removeListFromList(deps.StaticLibs, linker.Properties.Target.Ramdisk.Exclude_static_libs)
|
|
|
|
deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, linker.Properties.Target.Ramdisk.Exclude_static_libs)
|
|
|
|
deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, linker.Properties.Target.Ramdisk.Exclude_static_libs)
|
2018-01-31 16:54:12 +01:00
|
|
|
}
|
|
|
|
|
2020-10-27 23:01:21 +01:00
|
|
|
if ctx.inVendorRamdisk() {
|
|
|
|
deps.SharedLibs = removeListFromList(deps.SharedLibs, linker.Properties.Target.Vendor_ramdisk.Exclude_shared_libs)
|
|
|
|
deps.ReexportSharedLibHeaders = removeListFromList(deps.ReexportSharedLibHeaders, linker.Properties.Target.Vendor_ramdisk.Exclude_shared_libs)
|
|
|
|
deps.StaticLibs = removeListFromList(deps.StaticLibs, linker.Properties.Target.Vendor_ramdisk.Exclude_static_libs)
|
|
|
|
deps.ReexportStaticLibHeaders = removeListFromList(deps.ReexportStaticLibHeaders, linker.Properties.Target.Vendor_ramdisk.Exclude_static_libs)
|
|
|
|
deps.WholeStaticLibs = removeListFromList(deps.WholeStaticLibs, linker.Properties.Target.Vendor_ramdisk.Exclude_static_libs)
|
|
|
|
}
|
|
|
|
|
2020-04-07 18:50:32 +02:00
|
|
|
if !ctx.useSdk() {
|
|
|
|
deps.SharedLibs = append(deps.SharedLibs, linker.Properties.Target.Platform.Shared_libs...)
|
|
|
|
}
|
|
|
|
|
2018-10-05 21:46:01 +02:00
|
|
|
if ctx.toolchain().Bionic() {
|
2019-12-11 03:37:45 +01:00
|
|
|
// libclang_rt.builtins and libatomic have to be last on the command line
|
2018-10-10 22:43:02 +02:00
|
|
|
if !Bool(linker.Properties.No_libcrt) {
|
2019-02-12 18:41:18 +01:00
|
|
|
deps.LateStaticLibs = append(deps.LateStaticLibs, config.BuiltinsRuntimeLibrary(ctx.toolchain()))
|
2019-03-30 04:05:14 +01:00
|
|
|
deps.LateStaticLibs = append(deps.LateStaticLibs, "libatomic")
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2020-09-22 12:45:04 +02:00
|
|
|
deps.SystemSharedLibs = linker.Properties.System_shared_libs
|
|
|
|
if deps.SystemSharedLibs == nil {
|
2019-01-15 14:12:43 +01:00
|
|
|
// 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.
|
2020-09-22 12:45:04 +02:00
|
|
|
deps.SystemSharedLibs = []string{"libc", "libm", "libdl"}
|
2018-12-04 00:25:46 +01:00
|
|
|
}
|
2017-06-27 03:13:56 +02:00
|
|
|
|
2018-12-04 00:25:46 +01:00
|
|
|
if inList("libdl", deps.SharedLibs) {
|
|
|
|
// If system_shared_libs has libc but not libdl, make sure shared_libs does not
|
|
|
|
// have libdl to avoid loading libdl before libc.
|
2020-09-22 12:45:04 +02:00
|
|
|
if inList("libc", deps.SystemSharedLibs) {
|
|
|
|
if !inList("libdl", deps.SystemSharedLibs) {
|
2018-12-04 00:25:46 +01:00
|
|
|
ctx.PropertyErrorf("shared_libs",
|
|
|
|
"libdl must be in system_shared_libs, not shared_libs")
|
2017-06-27 03:13:56 +02:00
|
|
|
}
|
2018-12-04 00:25:46 +01:00
|
|
|
_, deps.SharedLibs = removeFromList("libdl", deps.SharedLibs)
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
2018-12-04 00:25:46 +01:00
|
|
|
}
|
2019-04-02 01:30:21 +02:00
|
|
|
|
2018-12-04 00:25:46 +01:00
|
|
|
// If libc and libdl are both in system_shared_libs make sure libdl comes after libc
|
|
|
|
// to avoid loading libdl before libc.
|
2020-09-22 12:45:04 +02:00
|
|
|
if inList("libdl", deps.SystemSharedLibs) && inList("libc", deps.SystemSharedLibs) &&
|
|
|
|
indexList("libdl", deps.SystemSharedLibs) < indexList("libc", deps.SystemSharedLibs) {
|
2018-12-04 00:25:46 +01:00
|
|
|
ctx.PropertyErrorf("system_shared_libs", "libdl must be after libc")
|
Split /system and /vendor modules, allow multi-installation
Nothing changes if BOARD_VNDK_VERSION isn't set.
When the VNDK is enabled (BOARD_VNDK_VERSION in Make), this will split
/system and /vendor modules into two different variant spaces that can't
link to each other. There are a few interfaces between the two variant
spaces:
The `llndk_library` stubs will be available in the /vendor variant, but
won't be installed, so at runtime the /system variant will be used.
Setting `vendor_available: true` will split a module into both variants.
The /system (or "core") variant will compile just like today. The
/vendor ("vendor") variant will compile against everything else in the
vendor space (so LL-NDK instead of libc/liblog/etc). There will be two
copies of these libraries installed onto the final device.
Since the available runtime interfaces for vendor modules may be
reduced, and your dependencies may not expose their private interfaces,
we allow the vendor variants to reduce their compilation set, and export
a different set of headers:
cc_library {
name: "libfoo",
srcs: ["common.cpp", "private_impl.cpp"],
export_include_dirs: ["include"],
target: {
vendor: {
export_include_dirs: ["include_vndk"],
exclude_srcs: ["private_impl.cpp"],
srcs: ["vendor_only.cpp"],
},
},
}
So the "core" variant would compile with both "common.cpp" and
"private_impl.cpp", and export "include".
The "vendor" variant would compile "common.cpp" and "vendor_only.cpp",
and export "include_vndk".
Bug: 36426473
Bug: 36079834
Test: out/soong/build.ninja, out/soong/Android- only changes due to _core addition and
.llndk -> .vendor
Test: attempt to compile with BOARD_VNDK_VERSION:=current
Change-Id: Idef28764043bf6c33dc0d2e7e2026c38867ff769
2017-04-06 21:43:22 +02:00
|
|
|
}
|
2018-12-04 00:25:46 +01:00
|
|
|
|
2020-09-22 12:45:04 +02:00
|
|
|
deps.LateSharedLibs = append(deps.LateSharedLibs, deps.SystemSharedLibs...)
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2019-01-17 23:44:05 +01:00
|
|
|
if ctx.Fuchsia() {
|
|
|
|
if ctx.ModuleName() != "libbioniccompat" &&
|
|
|
|
ctx.ModuleName() != "libcompiler_rt-extras" &&
|
|
|
|
ctx.ModuleName() != "libcompiler_rt" {
|
|
|
|
deps.StaticLibs = append(deps.StaticLibs, "libbioniccompat")
|
|
|
|
}
|
|
|
|
if ctx.ModuleName() != "libcompiler_rt" && ctx.ModuleName() != "libcompiler_rt-extras" {
|
|
|
|
deps.LateStaticLibs = append(deps.LateStaticLibs, "libcompiler_rt")
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-04-04 21:59:48 +02:00
|
|
|
if ctx.Windows() {
|
2017-02-24 02:52:24 +01:00
|
|
|
deps.LateStaticLibs = append(deps.LateStaticLibs, "libwinpthread")
|
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
return deps
|
|
|
|
}
|
|
|
|
|
2018-04-03 20:33:34 +02:00
|
|
|
func (linker *baseLinker) useClangLld(ctx ModuleContext) bool {
|
2018-04-25 01:00:01 +02:00
|
|
|
// Clang lld is not ready for for Darwin host executables yet.
|
|
|
|
// See https://lld.llvm.org/AtomLLD.html for status of lld for Mach-O.
|
|
|
|
if ctx.Darwin() {
|
|
|
|
return false
|
|
|
|
}
|
2018-04-03 20:33:34 +02:00
|
|
|
if linker.Properties.Use_clang_lld != nil {
|
|
|
|
return Bool(linker.Properties.Use_clang_lld)
|
|
|
|
}
|
2018-10-22 04:47:01 +02:00
|
|
|
return true
|
2018-04-03 20:33:34 +02:00
|
|
|
}
|
|
|
|
|
2018-11-30 23:00:04 +01:00
|
|
|
// Check whether the SDK version is not older than the specific one
|
|
|
|
func CheckSdkVersionAtLeast(ctx ModuleContext, SdkVersion int) bool {
|
|
|
|
if ctx.sdkVersion() == "current" {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
parsedSdkVersion, err := strconv.Atoi(ctx.sdkVersion())
|
|
|
|
if err != nil {
|
|
|
|
ctx.PropertyErrorf("sdk_version",
|
|
|
|
"Invalid sdk_version value (must be int or current): %q",
|
|
|
|
ctx.sdkVersion())
|
|
|
|
}
|
|
|
|
if parsedSdkVersion < SdkVersion {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-04-03 20:33:34 +02:00
|
|
|
// ModuleContext extends BaseModuleContext
|
|
|
|
// BaseModuleContext should know if LLD is used?
|
2016-08-01 22:20:05 +02:00
|
|
|
func (linker *baseLinker) linkerFlags(ctx ModuleContext, flags Flags) Flags {
|
2016-07-29 21:48:20 +02:00
|
|
|
toolchain := ctx.toolchain()
|
|
|
|
|
Consolidate ldflags that are used on all devices
Move ldflags that are specified for all devices into
deviceGlobalLdflags, and add them to linker.go:
-Wl,-z,noexecstack
-Wl,-z,relro
-Wl,-z,now
-Wl,--build-id=md5
-Wl,--warn-shared-textrel
-Wl,--fatal-warnings
-Wl,--no-undefined-version
Bug: 68855788
Test: m checkbuild
Change-Id: I82561b4189287d7638006f9e298c5151f9930c5e
2017-11-03 07:09:41 +01:00
|
|
|
hod := "Host"
|
|
|
|
if ctx.Os().Class == android.Device {
|
|
|
|
hod = "Device"
|
|
|
|
}
|
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
if linker.useClangLld(ctx) {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, fmt.Sprintf("${config.%sGlobalLldflags}", hod))
|
2018-10-24 21:42:09 +02:00
|
|
|
if !BoolDefault(linker.Properties.Pack_relocations, true) {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,--pack-dyn-relocs=none")
|
2018-11-30 23:00:04 +01:00
|
|
|
} else if ctx.Device() {
|
|
|
|
// The SHT_RELR relocations is only supported by API level >= 28.
|
|
|
|
// Do not turn this on if older version NDK is used.
|
|
|
|
if !ctx.useSdk() || CheckSdkVersionAtLeast(ctx, 28) {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags,
|
|
|
|
"-Wl,--pack-dyn-relocs=android+relr",
|
|
|
|
"-Wl,--use-android-relr-tags")
|
2020-01-28 22:08:40 +01:00
|
|
|
} else if CheckSdkVersionAtLeast(ctx, 23) {
|
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,--pack-dyn-relocs=android")
|
2018-11-30 23:00:04 +01:00
|
|
|
}
|
2018-05-24 03:30:46 +02:00
|
|
|
}
|
2018-04-03 20:33:34 +02:00
|
|
|
} else {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, fmt.Sprintf("${config.%sGlobalLdflags}", hod))
|
2018-04-03 20:33:34 +02:00
|
|
|
}
|
2017-11-03 21:31:05 +01:00
|
|
|
if Bool(linker.Properties.Allow_undefined_symbols) {
|
|
|
|
if ctx.Darwin() {
|
|
|
|
// darwin defaults to treating undefined symbols as errors
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,-undefined,dynamic_lookup")
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
2019-06-08 02:58:59 +02:00
|
|
|
} else if !ctx.Darwin() && !ctx.Windows() {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,--no-undefined")
|
2017-11-03 21:31:05 +01:00
|
|
|
}
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
if linker.useClangLld(ctx) {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, toolchain.ClangLldflags())
|
2017-11-03 21:31:05 +01:00
|
|
|
} else {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, toolchain.ClangLdflags())
|
2017-11-03 21:31:05 +01:00
|
|
|
}
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2019-01-17 23:44:05 +01:00
|
|
|
if !ctx.toolchain().Bionic() && !ctx.Fuchsia() {
|
2017-11-03 21:31:05 +01:00
|
|
|
CheckBadHostLdlibs(ctx, "host_ldlibs", linker.Properties.Host_ldlibs)
|
|
|
|
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Local.LdFlags = append(flags.Local.LdFlags, linker.Properties.Host_ldlibs...)
|
2017-11-03 21:31:05 +01:00
|
|
|
|
|
|
|
if !ctx.Windows() {
|
|
|
|
// Add -ldl, -lpthread, -lm and -lrt to host builds to match the default behavior of device
|
|
|
|
// builds
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags,
|
2017-11-03 21:31:05 +01:00
|
|
|
"-ldl",
|
|
|
|
"-lpthread",
|
|
|
|
"-lm",
|
|
|
|
)
|
|
|
|
if !ctx.Darwin() {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, "-lrt")
|
2017-09-08 21:45:18 +02:00
|
|
|
}
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-17 23:44:05 +01:00
|
|
|
if ctx.Fuchsia() {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, "-lfdio", "-lzircon")
|
2019-01-17 23:44:05 +01:00
|
|
|
}
|
|
|
|
|
2019-08-06 19:03:25 +02:00
|
|
|
if ctx.toolchain().LibclangRuntimeLibraryArch() != "" {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,--exclude-libs="+config.BuiltinsRuntimeLibrary(ctx.toolchain())+".a")
|
2019-08-06 19:03:25 +02:00
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
CheckBadLinkerFlags(ctx, "ldflags", linker.Properties.Ldflags)
|
|
|
|
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Local.LdFlags = append(flags.Local.LdFlags, proptools.NinjaAndShellEscapeList(linker.Properties.Ldflags)...)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2019-06-08 02:58:59 +02:00
|
|
|
if ctx.Host() && !ctx.Windows() {
|
2016-07-29 21:48:20 +02:00
|
|
|
rpath_prefix := `\$$ORIGIN/`
|
|
|
|
if ctx.Darwin() {
|
|
|
|
rpath_prefix = "@loader_path/"
|
|
|
|
}
|
|
|
|
|
2017-09-19 07:45:15 +02:00
|
|
|
if !ctx.static() {
|
|
|
|
for _, rpath := range linker.dynamicProperties.RunPaths {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,-rpath,"+rpath_prefix+rpath)
|
2017-09-19 07:45:15 +02:00
|
|
|
}
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-07 01:55:28 +01:00
|
|
|
if ctx.useSdk() {
|
2017-08-11 22:23:57 +02:00
|
|
|
// The bionic linker now has support gnu style hashes (which are much faster!), but shipping
|
|
|
|
// to older devices requires the old style hash. Fortunately, we can build with both and
|
|
|
|
// it'll work anywhere.
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, "-Wl,--hash-style=both")
|
2017-08-11 22:23:57 +02:00
|
|
|
}
|
|
|
|
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Global.LdFlags = append(flags.Global.LdFlags, toolchain.ToolchainClangLdflags())
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2016-12-01 23:45:23 +01:00
|
|
|
if Bool(linker.Properties.Group_static_libs) {
|
|
|
|
flags.GroupStaticLibs = true
|
|
|
|
}
|
|
|
|
|
Add support for versioned stubs.
A cc_library or cc_library_shared can be configured to have stubs
variants of the lib.
cc_library_shared {
name: "libfoo",
srcs: ["foo.cpp"],
stubs: {
symbol_file: "foo.map.txt",
versions: ["1", "2", "3"],
},
}
then, stubs variants of libfoo for version 1, 2, and 3 are created
from foo.map.txt. Each version has the symbols from the map file where
each symbol is annotated with the version that the symbol was introduced
via the 'introduced=<ver>' syntax. The versions don't need to be in sync
with the platform versions (e.g., P for 28). The versions are local to
the library.
For another library or executable to use the versioned stubs lib, use
the new 'name#ver' syntax to specify the version:
cc_binary {
name: "test",
....
shared_libs: ["libFoo#2"],
}
Internally, a new mutator 'version' is applied to all cc.Module objects.
By default, a variant named 'impl' is created for the non-stub version.
If the versions property is set, additional variations are created per a
version with the mutable property BuildStubs set as true, which lets the
compiler and the linker to build a stubs lib from the symbol file
instead from the source files.
This feature will be used to enforce stable interfaces among APEXs. When
a lib foo in an APEX is depending on a lib bar in another APEX, then bar
should have stable interface (in C lang) and foo should be depending on
one of the stubs libs of bar. Only libraries in the same APEX as foo can
link against non-stub version of it.
Bug: 112672359
Test: m (cc_test added)
Change-Id: I2488be0b9d7b7b8d7761234dc1c9c0e3add8601c
2018-10-15 15:25:07 +02:00
|
|
|
// Version_script is not needed when linking stubs lib where the version
|
|
|
|
// script is created from the symbol map file.
|
|
|
|
if !linker.dynamicProperties.BuildStubs {
|
|
|
|
versionScript := ctx.ExpandOptionalSource(
|
2018-10-24 21:42:09 +02:00
|
|
|
linker.Properties.Version_script, "version_script")
|
2018-07-26 23:00:24 +02:00
|
|
|
|
2020-10-29 08:49:43 +01:00
|
|
|
// TODO(b/150902910): product variant must use Target.Product
|
2018-10-24 21:42:09 +02:00
|
|
|
if ctx.useVndk() && linker.Properties.Target.Vendor.Version_script != nil {
|
Add support for versioned stubs.
A cc_library or cc_library_shared can be configured to have stubs
variants of the lib.
cc_library_shared {
name: "libfoo",
srcs: ["foo.cpp"],
stubs: {
symbol_file: "foo.map.txt",
versions: ["1", "2", "3"],
},
}
then, stubs variants of libfoo for version 1, 2, and 3 are created
from foo.map.txt. Each version has the symbols from the map file where
each symbol is annotated with the version that the symbol was introduced
via the 'introduced=<ver>' syntax. The versions don't need to be in sync
with the platform versions (e.g., P for 28). The versions are local to
the library.
For another library or executable to use the versioned stubs lib, use
the new 'name#ver' syntax to specify the version:
cc_binary {
name: "test",
....
shared_libs: ["libFoo#2"],
}
Internally, a new mutator 'version' is applied to all cc.Module objects.
By default, a variant named 'impl' is created for the non-stub version.
If the versions property is set, additional variations are created per a
version with the mutable property BuildStubs set as true, which lets the
compiler and the linker to build a stubs lib from the symbol file
instead from the source files.
This feature will be used to enforce stable interfaces among APEXs. When
a lib foo in an APEX is depending on a lib bar in another APEX, then bar
should have stable interface (in C lang) and foo should be depending on
one of the stubs libs of bar. Only libraries in the same APEX as foo can
link against non-stub version of it.
Bug: 112672359
Test: m (cc_test added)
Change-Id: I2488be0b9d7b7b8d7761234dc1c9c0e3add8601c
2018-10-15 15:25:07 +02:00
|
|
|
versionScript = ctx.ExpandOptionalSource(
|
2018-10-24 21:42:09 +02:00
|
|
|
linker.Properties.Target.Vendor.Version_script,
|
Add support for versioned stubs.
A cc_library or cc_library_shared can be configured to have stubs
variants of the lib.
cc_library_shared {
name: "libfoo",
srcs: ["foo.cpp"],
stubs: {
symbol_file: "foo.map.txt",
versions: ["1", "2", "3"],
},
}
then, stubs variants of libfoo for version 1, 2, and 3 are created
from foo.map.txt. Each version has the symbols from the map file where
each symbol is annotated with the version that the symbol was introduced
via the 'introduced=<ver>' syntax. The versions don't need to be in sync
with the platform versions (e.g., P for 28). The versions are local to
the library.
For another library or executable to use the versioned stubs lib, use
the new 'name#ver' syntax to specify the version:
cc_binary {
name: "test",
....
shared_libs: ["libFoo#2"],
}
Internally, a new mutator 'version' is applied to all cc.Module objects.
By default, a variant named 'impl' is created for the non-stub version.
If the versions property is set, additional variations are created per a
version with the mutable property BuildStubs set as true, which lets the
compiler and the linker to build a stubs lib from the symbol file
instead from the source files.
This feature will be used to enforce stable interfaces among APEXs. When
a lib foo in an APEX is depending on a lib bar in another APEX, then bar
should have stable interface (in C lang) and foo should be depending on
one of the stubs libs of bar. Only libraries in the same APEX as foo can
link against non-stub version of it.
Bug: 112672359
Test: m (cc_test added)
Change-Id: I2488be0b9d7b7b8d7761234dc1c9c0e3add8601c
2018-10-15 15:25:07 +02:00
|
|
|
"target.vendor.version_script")
|
|
|
|
}
|
2018-07-26 23:00:24 +02:00
|
|
|
|
Add support for versioned stubs.
A cc_library or cc_library_shared can be configured to have stubs
variants of the lib.
cc_library_shared {
name: "libfoo",
srcs: ["foo.cpp"],
stubs: {
symbol_file: "foo.map.txt",
versions: ["1", "2", "3"],
},
}
then, stubs variants of libfoo for version 1, 2, and 3 are created
from foo.map.txt. Each version has the symbols from the map file where
each symbol is annotated with the version that the symbol was introduced
via the 'introduced=<ver>' syntax. The versions don't need to be in sync
with the platform versions (e.g., P for 28). The versions are local to
the library.
For another library or executable to use the versioned stubs lib, use
the new 'name#ver' syntax to specify the version:
cc_binary {
name: "test",
....
shared_libs: ["libFoo#2"],
}
Internally, a new mutator 'version' is applied to all cc.Module objects.
By default, a variant named 'impl' is created for the non-stub version.
If the versions property is set, additional variations are created per a
version with the mutable property BuildStubs set as true, which lets the
compiler and the linker to build a stubs lib from the symbol file
instead from the source files.
This feature will be used to enforce stable interfaces among APEXs. When
a lib foo in an APEX is depending on a lib bar in another APEX, then bar
should have stable interface (in C lang) and foo should be depending on
one of the stubs libs of bar. Only libraries in the same APEX as foo can
link against non-stub version of it.
Bug: 112672359
Test: m (cc_test added)
Change-Id: I2488be0b9d7b7b8d7761234dc1c9c0e3add8601c
2018-10-15 15:25:07 +02:00
|
|
|
if versionScript.Valid() {
|
|
|
|
if ctx.Darwin() {
|
|
|
|
ctx.PropertyErrorf("version_script", "Not supported on Darwin")
|
|
|
|
} else {
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Local.LdFlags = append(flags.Local.LdFlags,
|
Add support for versioned stubs.
A cc_library or cc_library_shared can be configured to have stubs
variants of the lib.
cc_library_shared {
name: "libfoo",
srcs: ["foo.cpp"],
stubs: {
symbol_file: "foo.map.txt",
versions: ["1", "2", "3"],
},
}
then, stubs variants of libfoo for version 1, 2, and 3 are created
from foo.map.txt. Each version has the symbols from the map file where
each symbol is annotated with the version that the symbol was introduced
via the 'introduced=<ver>' syntax. The versions don't need to be in sync
with the platform versions (e.g., P for 28). The versions are local to
the library.
For another library or executable to use the versioned stubs lib, use
the new 'name#ver' syntax to specify the version:
cc_binary {
name: "test",
....
shared_libs: ["libFoo#2"],
}
Internally, a new mutator 'version' is applied to all cc.Module objects.
By default, a variant named 'impl' is created for the non-stub version.
If the versions property is set, additional variations are created per a
version with the mutable property BuildStubs set as true, which lets the
compiler and the linker to build a stubs lib from the symbol file
instead from the source files.
This feature will be used to enforce stable interfaces among APEXs. When
a lib foo in an APEX is depending on a lib bar in another APEX, then bar
should have stable interface (in C lang) and foo should be depending on
one of the stubs libs of bar. Only libraries in the same APEX as foo can
link against non-stub version of it.
Bug: 112672359
Test: m (cc_test added)
Change-Id: I2488be0b9d7b7b8d7761234dc1c9c0e3add8601c
2018-10-15 15:25:07 +02:00
|
|
|
"-Wl,--version-script,"+versionScript.String())
|
|
|
|
flags.LdFlagsDeps = append(flags.LdFlagsDeps, versionScript.Path())
|
|
|
|
|
|
|
|
if linker.sanitize.isSanitizerEnabled(cfi) {
|
|
|
|
cfiExportsMap := android.PathForSource(ctx, cfiExportsMapPath)
|
2019-11-04 18:37:55 +01:00
|
|
|
flags.Local.LdFlags = append(flags.Local.LdFlags,
|
Add support for versioned stubs.
A cc_library or cc_library_shared can be configured to have stubs
variants of the lib.
cc_library_shared {
name: "libfoo",
srcs: ["foo.cpp"],
stubs: {
symbol_file: "foo.map.txt",
versions: ["1", "2", "3"],
},
}
then, stubs variants of libfoo for version 1, 2, and 3 are created
from foo.map.txt. Each version has the symbols from the map file where
each symbol is annotated with the version that the symbol was introduced
via the 'introduced=<ver>' syntax. The versions don't need to be in sync
with the platform versions (e.g., P for 28). The versions are local to
the library.
For another library or executable to use the versioned stubs lib, use
the new 'name#ver' syntax to specify the version:
cc_binary {
name: "test",
....
shared_libs: ["libFoo#2"],
}
Internally, a new mutator 'version' is applied to all cc.Module objects.
By default, a variant named 'impl' is created for the non-stub version.
If the versions property is set, additional variations are created per a
version with the mutable property BuildStubs set as true, which lets the
compiler and the linker to build a stubs lib from the symbol file
instead from the source files.
This feature will be used to enforce stable interfaces among APEXs. When
a lib foo in an APEX is depending on a lib bar in another APEX, then bar
should have stable interface (in C lang) and foo should be depending on
one of the stubs libs of bar. Only libraries in the same APEX as foo can
link against non-stub version of it.
Bug: 112672359
Test: m (cc_test added)
Change-Id: I2488be0b9d7b7b8d7761234dc1c9c0e3add8601c
2018-10-15 15:25:07 +02:00
|
|
|
"-Wl,--version-script,"+cfiExportsMap.String())
|
|
|
|
flags.LdFlagsDeps = append(flags.LdFlagsDeps, cfiExportsMap)
|
|
|
|
}
|
2018-07-26 23:00:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
func (linker *baseLinker) link(ctx ModuleContext,
|
2016-09-27 02:33:01 +02:00
|
|
|
flags Flags, deps PathDeps, objs Objects) android.Path {
|
2016-07-30 02:28:03 +02:00
|
|
|
panic(fmt.Errorf("baseLinker doesn't know how to link"))
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
2018-02-15 23:12:26 +01:00
|
|
|
|
2020-03-06 13:30:43 +01:00
|
|
|
func (linker *baseLinker) linkerSpecifiedDeps(specifiedDeps specifiedDeps) specifiedDeps {
|
|
|
|
specifiedDeps.sharedLibs = append(specifiedDeps.sharedLibs, linker.Properties.Shared_libs...)
|
2020-03-24 02:19:52 +01:00
|
|
|
|
|
|
|
// Must distinguish nil and [] in system_shared_libs - ensure that [] in
|
|
|
|
// either input list doesn't come out as nil.
|
|
|
|
if specifiedDeps.systemSharedLibs == nil {
|
|
|
|
specifiedDeps.systemSharedLibs = linker.Properties.System_shared_libs
|
|
|
|
} else {
|
|
|
|
specifiedDeps.systemSharedLibs = append(specifiedDeps.systemSharedLibs, linker.Properties.System_shared_libs...)
|
|
|
|
}
|
|
|
|
|
2020-03-06 13:30:43 +01:00
|
|
|
return specifiedDeps
|
|
|
|
}
|
|
|
|
|
2018-02-15 23:12:26 +01:00
|
|
|
// Injecting version symbols
|
|
|
|
// Some host modules want a version number, but we don't want to rebuild it every time. Optionally add a step
|
|
|
|
// after linking that injects a constant placeholder with the current version number.
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
pctx.HostBinToolVariable("symbolInjectCmd", "symbol_inject")
|
|
|
|
}
|
|
|
|
|
|
|
|
var injectVersionSymbol = pctx.AndroidStaticRule("injectVersionSymbol",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "$symbolInjectCmd -i $in -o $out -s soong_build_number " +
|
2020-02-22 01:55:46 +01:00
|
|
|
"-from 'SOONG BUILD NUMBER PLACEHOLDER' -v $$(cat $buildNumberFile)",
|
2018-02-15 23:12:26 +01:00
|
|
|
CommandDeps: []string{"$symbolInjectCmd"},
|
|
|
|
},
|
2020-02-22 01:55:46 +01:00
|
|
|
"buildNumberFile")
|
2018-02-15 23:12:26 +01:00
|
|
|
|
|
|
|
func (linker *baseLinker) injectVersionSymbol(ctx ModuleContext, in android.Path, out android.WritablePath) {
|
2020-02-22 01:55:46 +01:00
|
|
|
buildNumberFile := ctx.Config().BuildNumberFile(ctx)
|
2018-02-15 23:12:26 +01:00
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: injectVersionSymbol,
|
|
|
|
Description: "inject version symbol",
|
|
|
|
Input: in,
|
|
|
|
Output: out,
|
2020-02-22 01:55:46 +01:00
|
|
|
OrderOnly: android.Paths{buildNumberFile},
|
2018-02-15 23:12:26 +01:00
|
|
|
Args: map[string]string{
|
2020-02-22 01:55:46 +01:00
|
|
|
"buildNumberFile": buildNumberFile.String(),
|
2018-02-15 23:12:26 +01:00
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|
2019-06-25 01:08:48 +02:00
|
|
|
|
|
|
|
// Rule to generate .bss symbol ordering file.
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = pctx.SourcePathVariable("genSortedBssSymbolsPath", "build/soong/scripts/gen_sorted_bss_symbols.sh")
|
|
|
|
gen_sorted_bss_symbols = pctx.AndroidStaticRule("gen_sorted_bss_symbols",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "CROSS_COMPILE=$crossCompile $genSortedBssSymbolsPath ${in} ${out}",
|
2019-09-19 19:50:18 +02:00
|
|
|
CommandDeps: []string{"$genSortedBssSymbolsPath", "${crossCompile}nm"},
|
2019-06-25 01:08:48 +02:00
|
|
|
},
|
|
|
|
"crossCompile")
|
|
|
|
)
|
|
|
|
|
|
|
|
func (linker *baseLinker) sortBssSymbolsBySize(ctx ModuleContext, in android.Path, symbolOrderingFile android.ModuleOutPath, flags builderFlags) string {
|
|
|
|
crossCompile := gccCmd(flags.toolchain, "")
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: gen_sorted_bss_symbols,
|
|
|
|
Description: "generate bss symbol order " + symbolOrderingFile.Base(),
|
|
|
|
Output: symbolOrderingFile,
|
|
|
|
Input: in,
|
|
|
|
Args: map[string]string{
|
|
|
|
"crossCompile": crossCompile,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
return "-Wl,--symbol-ordering-file," + symbolOrderingFile.String()
|
|
|
|
}
|