2016-01-13 08:20:28 +01: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
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-09-15 05:29:05 +02:00
|
|
|
"sort"
|
2016-01-13 08:20:28 +01:00
|
|
|
"strings"
|
2017-11-14 23:09:14 +01:00
|
|
|
"sync"
|
2016-01-13 08:20:28 +01:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
"android/soong/android"
|
2016-07-29 22:44:28 +02:00
|
|
|
"android/soong/cc/config"
|
2016-01-13 08:20:28 +01:00
|
|
|
)
|
|
|
|
|
2017-11-14 23:09:14 +01:00
|
|
|
const (
|
2018-01-29 18:18:45 +01:00
|
|
|
modulesAddedWall = "ModulesAddedWall"
|
|
|
|
modulesUsingWnoError = "ModulesUsingWnoError"
|
|
|
|
modulesMissingProfileFile = "ModulesMissingProfileFile"
|
2017-11-14 23:09:14 +01:00
|
|
|
)
|
|
|
|
|
2016-01-13 08:20:28 +01:00
|
|
|
func init() {
|
2016-05-19 00:37:25 +02:00
|
|
|
android.RegisterMakeVarsProvider(pctx, makeVarsProvider)
|
2016-01-13 08:20:28 +01:00
|
|
|
}
|
|
|
|
|
2018-01-29 18:18:45 +01:00
|
|
|
func getNamedMapForConfig(config android.Config, name string) *sync.Map {
|
2017-11-14 23:09:14 +01:00
|
|
|
return config.Once(name, func() interface{} {
|
|
|
|
return &sync.Map{}
|
|
|
|
}).(*sync.Map)
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeStringOfKeys(ctx android.MakeVarsContext, setName string) string {
|
2018-01-29 18:18:45 +01:00
|
|
|
set := getNamedMapForConfig(ctx.Config(), setName)
|
2017-11-14 23:09:14 +01:00
|
|
|
keys := []string{}
|
|
|
|
set.Range(func(key interface{}, value interface{}) bool {
|
|
|
|
keys = append(keys, key.(string))
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
sort.Strings(keys)
|
|
|
|
return strings.Join(keys, " ")
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeStringOfWarningAllowedProjects() string {
|
|
|
|
allProjects := append([]string{}, config.WarningAllowedProjects...)
|
|
|
|
allProjects = append(allProjects, config.WarningAllowedOldProjects...)
|
|
|
|
sort.Strings(allProjects)
|
|
|
|
// Makefile rules use pattern "path/%" to match module paths.
|
|
|
|
if len(allProjects) > 0 {
|
|
|
|
return strings.Join(allProjects, "% ") + "%"
|
|
|
|
} else {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func makeVarsProvider(ctx android.MakeVarsContext) {
|
2016-12-15 00:50:54 +01:00
|
|
|
ctx.Strict("LLVM_RELEASE_VERSION", "${config.ClangShortVersion}")
|
2016-07-29 22:44:28 +02:00
|
|
|
ctx.Strict("LLVM_PREBUILTS_VERSION", "${config.ClangVersion}")
|
|
|
|
ctx.Strict("LLVM_PREBUILTS_BASE", "${config.ClangBase}")
|
|
|
|
ctx.Strict("LLVM_PREBUILTS_PATH", "${config.ClangBin}")
|
|
|
|
ctx.Strict("CLANG", "${config.ClangBin}/clang")
|
|
|
|
ctx.Strict("CLANG_CXX", "${config.ClangBin}/clang++")
|
|
|
|
ctx.Strict("LLVM_AS", "${config.ClangBin}/llvm-as")
|
|
|
|
ctx.Strict("LLVM_LINK", "${config.ClangBin}/llvm-link")
|
2016-09-27 00:45:04 +02:00
|
|
|
ctx.Strict("PATH_TO_CLANG_TIDY", "${config.ClangBin}/clang-tidy")
|
2016-07-29 22:44:28 +02:00
|
|
|
ctx.StrictSorted("CLANG_CONFIG_UNKNOWN_CFLAGS", strings.Join(config.ClangUnknownCflags, " "))
|
|
|
|
|
2017-02-02 04:19:52 +01:00
|
|
|
ctx.Strict("RS_LLVM_PREBUILTS_VERSION", "${config.RSClangVersion}")
|
|
|
|
ctx.Strict("RS_LLVM_PREBUILTS_BASE", "${config.RSClangBase}")
|
|
|
|
ctx.Strict("RS_LLVM_PREBUILTS_PATH", "${config.RSLLVMPrebuiltsPath}")
|
2017-04-20 15:53:59 +02:00
|
|
|
ctx.Strict("RS_LLVM_INCLUDES", "${config.RSIncludePath}")
|
2017-02-02 04:19:52 +01:00
|
|
|
ctx.Strict("RS_CLANG", "${config.RSLLVMPrebuiltsPath}/clang")
|
|
|
|
ctx.Strict("RS_LLVM_AS", "${config.RSLLVMPrebuiltsPath}/llvm-as")
|
|
|
|
ctx.Strict("RS_LLVM_LINK", "${config.RSLLVMPrebuiltsPath}/llvm-link")
|
|
|
|
|
2016-07-29 22:44:28 +02:00
|
|
|
ctx.Strict("GLOBAL_CFLAGS_NO_OVERRIDE", "${config.NoOverrideGlobalCflags}")
|
|
|
|
ctx.Strict("GLOBAL_CLANG_CFLAGS_NO_OVERRIDE", "${config.ClangExtraNoOverrideCflags}")
|
2016-05-28 00:23:38 +02:00
|
|
|
ctx.Strict("GLOBAL_CPPFLAGS_NO_OVERRIDE", "")
|
|
|
|
ctx.Strict("GLOBAL_CLANG_CPPFLAGS_NO_OVERRIDE", "")
|
2016-07-08 06:40:39 +02:00
|
|
|
ctx.Strict("NDK_PREBUILT_SHARED_LIBRARIES", strings.Join(ndkPrebuiltSharedLibs, " "))
|
2016-05-28 00:23:38 +02:00
|
|
|
|
2018-03-12 23:30:26 +01:00
|
|
|
ctx.Strict("BOARD_VNDK_VERSION", ctx.DeviceConfig().VndkVersion())
|
2016-11-18 23:54:24 +01:00
|
|
|
|
2017-08-03 14:22:50 +02:00
|
|
|
ctx.Strict("VNDK_CORE_LIBRARIES", strings.Join(vndkCoreLibraries, " "))
|
|
|
|
ctx.Strict("VNDK_SAMEPROCESS_LIBRARIES", strings.Join(vndkSpLibraries, " "))
|
|
|
|
ctx.Strict("LLNDK_LIBRARIES", strings.Join(llndkLibraries, " "))
|
2017-08-16 07:05:54 +02:00
|
|
|
ctx.Strict("VNDK_PRIVATE_LIBRARIES", strings.Join(vndkPrivateLibraries, " "))
|
2017-08-03 14:22:50 +02:00
|
|
|
|
Allow platform modules to link to vendor public libraries
Normally, when building with VNDK, platform modules are not allowed to
link against vendor libraries, because the ABI of the vendor libraries
are not guaranteed to be stable and may differ across multiple vendor
images.
However, the vendor public libraries are the exceptions. Vendor public
libraries are vendor libraries that are exposed to 3rd party apps and
listed in /vendor/etc/public.libraries.txt. Since they are intended to
be exposed to public, their ABI stability is guaranteed (by definition,
though it is up to the vendor to actually guarantee it).
This change provides a way to make a vendor lib as public by defining a
module of type 'vendor_public_library' with a map file that enumerates
public symbols that are publicized:
cc_library {
name: "libvendor",
proprietary: true,
...
}
vendor_public_library {
name: "libvendor",
symbol_file: "libvendor.map.txt",
}
This defines a stub library module named libvendor.vendorpublic from the
map file. `shared_libs: ["libvendor"]` is redirected to the stub library
when it is from the outside of the vendor partition.
Bug: 74275385
Test: m -j
Test: cc_test.go passes
Change-Id: I5bed94d7c4282b777632ab2f0fb63c203ee313ba
2018-03-19 10:23:01 +01:00
|
|
|
// Filter vendor_public_library that are exported to make
|
|
|
|
exportedVendorPublicLibraries := []string{}
|
|
|
|
ctx.SingletonContext().VisitAllModules(func(module android.Module) {
|
|
|
|
if ccModule, ok := module.(*Module); ok {
|
|
|
|
baseName := ccModule.BaseModuleName()
|
|
|
|
if inList(baseName, vendorPublicLibraries) && module.ExportedToMake() {
|
|
|
|
if !inList(baseName, exportedVendorPublicLibraries) {
|
|
|
|
exportedVendorPublicLibraries = append(exportedVendorPublicLibraries, baseName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
sort.Strings(exportedVendorPublicLibraries)
|
|
|
|
ctx.Strict("VENDOR_PUBLIC_LIBRARIES", strings.Join(exportedVendorPublicLibraries, " "))
|
|
|
|
|
2018-02-24 01:43:23 +01:00
|
|
|
sort.Strings(lsdumpPaths)
|
|
|
|
ctx.Strict("LSDUMP_PATHS", strings.Join(lsdumpPaths, " "))
|
|
|
|
|
2017-11-14 23:09:14 +01:00
|
|
|
ctx.Strict("ANDROID_WARNING_ALLOWED_PROJECTS", makeStringOfWarningAllowedProjects())
|
|
|
|
ctx.Strict("SOONG_MODULES_ADDED_WALL", makeStringOfKeys(ctx, modulesAddedWall))
|
|
|
|
ctx.Strict("SOONG_MODULES_USING_WNO_ERROR", makeStringOfKeys(ctx, modulesUsingWnoError))
|
2018-01-29 18:18:45 +01:00
|
|
|
ctx.Strict("SOONG_MODULES_MISSING_PGO_PROFILE_FILE", makeStringOfKeys(ctx, modulesMissingProfileFile))
|
2017-11-14 23:09:14 +01:00
|
|
|
|
2017-06-15 23:45:18 +02:00
|
|
|
ctx.Strict("ADDRESS_SANITIZER_CONFIG_EXTRA_CFLAGS", strings.Join(asanCflags, " "))
|
|
|
|
ctx.Strict("ADDRESS_SANITIZER_CONFIG_EXTRA_LDFLAGS", strings.Join(asanLdflags, " "))
|
|
|
|
ctx.Strict("ADDRESS_SANITIZER_CONFIG_EXTRA_STATIC_LIBRARIES", strings.Join(asanLibs, " "))
|
2016-10-14 01:44:07 +02:00
|
|
|
|
2017-06-15 23:45:18 +02:00
|
|
|
ctx.Strict("CFI_EXTRA_CFLAGS", strings.Join(cfiCflags, " "))
|
|
|
|
ctx.Strict("CFI_EXTRA_LDFLAGS", strings.Join(cfiLdflags, " "))
|
2017-02-14 16:59:33 +01:00
|
|
|
|
2017-06-28 18:10:48 +02:00
|
|
|
ctx.Strict("INTEGER_OVERFLOW_EXTRA_CFLAGS", strings.Join(intOverflowCflags, " "))
|
|
|
|
|
2016-10-17 23:19:06 +02:00
|
|
|
ctx.Strict("DEFAULT_C_STD_VERSION", config.CStdVersion)
|
|
|
|
ctx.Strict("DEFAULT_CPP_STD_VERSION", config.CppStdVersion)
|
|
|
|
ctx.Strict("DEFAULT_GCC_CPP_STD_VERSION", config.GccCppStdVersion)
|
2017-02-04 01:13:38 +01:00
|
|
|
ctx.Strict("EXPERIMENTAL_C_STD_VERSION", config.ExperimentalCStdVersion)
|
|
|
|
ctx.Strict("EXPERIMENTAL_CPP_STD_VERSION", config.ExperimentalCppStdVersion)
|
2016-10-17 23:19:06 +02:00
|
|
|
|
2016-09-27 00:45:04 +02:00
|
|
|
ctx.Strict("DEFAULT_GLOBAL_TIDY_CHECKS", "${config.TidyDefaultGlobalChecks}")
|
|
|
|
ctx.Strict("DEFAULT_LOCAL_TIDY_CHECKS", joinLocalTidyChecks(config.DefaultLocalTidyChecks))
|
|
|
|
ctx.Strict("DEFAULT_TIDY_HEADER_DIRS", "${config.TidyDefaultHeaderDirs}")
|
|
|
|
|
2016-11-03 22:28:51 +01:00
|
|
|
ctx.Strict("AIDL_CPP", "${aidlCmd}")
|
|
|
|
|
2017-05-02 02:37:24 +02:00
|
|
|
ctx.Strict("RS_GLOBAL_INCLUDES", "${config.RsGlobalIncludes}")
|
|
|
|
|
2017-07-18 22:29:35 +02:00
|
|
|
nativeHelperIncludeFlags, err := ctx.Eval("${config.CommonNativehelperInclude}")
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
nativeHelperIncludes, nativeHelperSystemIncludes := splitSystemIncludes(ctx, nativeHelperIncludeFlags)
|
|
|
|
if len(nativeHelperSystemIncludes) > 0 {
|
|
|
|
panic("native helper may not have any system includes")
|
|
|
|
}
|
|
|
|
ctx.Strict("JNI_H_INCLUDE", strings.Join(nativeHelperIncludes, " "))
|
|
|
|
|
2017-05-01 02:45:07 +02:00
|
|
|
includeFlags, err := ctx.Eval("${config.CommonGlobalIncludes}")
|
2016-07-20 21:14:19 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
includes, systemIncludes := splitSystemIncludes(ctx, includeFlags)
|
|
|
|
ctx.StrictRaw("SRC_HEADERS", strings.Join(includes, " "))
|
|
|
|
ctx.StrictRaw("SRC_SYSTEM_HEADERS", strings.Join(systemIncludes, " "))
|
|
|
|
|
2016-09-15 05:29:05 +02:00
|
|
|
sort.Strings(ndkMigratedLibs)
|
2016-06-18 01:45:24 +02:00
|
|
|
ctx.Strict("NDK_MIGRATED_LIBS", strings.Join(ndkMigratedLibs, " "))
|
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
hostTargets := ctx.Config().Targets[android.Host]
|
|
|
|
makeVarsToolchain(ctx, "", hostTargets[0])
|
|
|
|
if len(hostTargets) > 1 {
|
|
|
|
makeVarsToolchain(ctx, "2ND_", hostTargets[1])
|
2016-01-13 08:20:28 +01:00
|
|
|
}
|
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
crossTargets := ctx.Config().Targets[android.HostCross]
|
|
|
|
if len(crossTargets) > 0 {
|
|
|
|
makeVarsToolchain(ctx, "", crossTargets[0])
|
|
|
|
if len(crossTargets) > 1 {
|
|
|
|
makeVarsToolchain(ctx, "2ND_", crossTargets[1])
|
2016-01-13 08:20:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
deviceTargets := ctx.Config().Targets[android.Device]
|
|
|
|
makeVarsToolchain(ctx, "", deviceTargets[0])
|
|
|
|
if len(deviceTargets) > 1 {
|
|
|
|
makeVarsToolchain(ctx, "2ND_", deviceTargets[1])
|
2016-01-13 08:20:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
func makeVarsToolchain(ctx android.MakeVarsContext, secondPrefix string,
|
2016-06-02 02:09:44 +02:00
|
|
|
target android.Target) {
|
2016-01-13 08:20:28 +01:00
|
|
|
var typePrefix string
|
2016-06-02 02:09:44 +02:00
|
|
|
switch target.Os.Class {
|
|
|
|
case android.Host:
|
|
|
|
typePrefix = "HOST_"
|
|
|
|
case android.HostCross:
|
|
|
|
typePrefix = "HOST_CROSS_"
|
|
|
|
case android.Device:
|
2016-01-13 08:20:28 +01:00
|
|
|
typePrefix = "TARGET_"
|
|
|
|
}
|
|
|
|
makePrefix := secondPrefix + typePrefix
|
|
|
|
|
2016-07-29 22:44:28 +02:00
|
|
|
toolchain := config.FindToolchain(target.Os, target.Arch)
|
2016-01-13 08:20:28 +01:00
|
|
|
|
2016-05-18 01:35:02 +02:00
|
|
|
var productExtraCflags string
|
|
|
|
var productExtraLdflags string
|
2016-06-02 02:09:44 +02:00
|
|
|
|
2016-07-29 22:44:28 +02:00
|
|
|
hod := "Host"
|
2016-06-02 02:09:44 +02:00
|
|
|
if target.Os.Class == android.Device {
|
2016-07-29 22:44:28 +02:00
|
|
|
hod = "Device"
|
2016-06-02 02:09:44 +02:00
|
|
|
}
|
|
|
|
|
2018-03-12 23:30:26 +01:00
|
|
|
if target.Os.Class == android.Host && ctx.Config().HostStaticBinaries() {
|
2016-05-18 01:35:02 +02:00
|
|
|
productExtraLdflags += "-static"
|
2016-05-17 04:32:33 +02:00
|
|
|
}
|
|
|
|
|
2016-05-20 01:59:04 +02:00
|
|
|
ctx.Strict(makePrefix+"GLOBAL_CFLAGS", strings.Join([]string{
|
2016-05-19 08:00:57 +02:00
|
|
|
toolchain.Cflags(),
|
2016-07-29 22:44:28 +02:00
|
|
|
"${config.CommonGlobalCflags}",
|
|
|
|
fmt.Sprintf("${config.%sGlobalCflags}", hod),
|
2016-05-19 08:00:57 +02:00
|
|
|
toolchain.ToolchainCflags(),
|
2016-05-18 01:35:02 +02:00
|
|
|
productExtraCflags,
|
2016-01-13 08:20:28 +01:00
|
|
|
}, " "))
|
2016-10-07 22:12:58 +02:00
|
|
|
ctx.Strict(makePrefix+"GLOBAL_CONLYFLAGS", strings.Join([]string{
|
|
|
|
"${config.CommonGlobalConlyflags}",
|
|
|
|
}, " "))
|
2016-05-20 01:59:04 +02:00
|
|
|
ctx.Strict(makePrefix+"GLOBAL_CPPFLAGS", strings.Join([]string{
|
2016-07-29 22:44:28 +02:00
|
|
|
"${config.CommonGlobalCppflags}",
|
2017-11-06 22:59:48 +01:00
|
|
|
fmt.Sprintf("${config.%sGlobalCppflags}", hod),
|
2016-05-17 08:56:53 +02:00
|
|
|
toolchain.Cppflags(),
|
|
|
|
}, " "))
|
2016-05-20 01:59:04 +02:00
|
|
|
ctx.Strict(makePrefix+"GLOBAL_LDFLAGS", strings.Join([]string{
|
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
|
|
|
fmt.Sprintf("${config.%sGlobalLdflags}", hod),
|
2016-05-19 08:00:57 +02:00
|
|
|
toolchain.Ldflags(),
|
2016-01-13 08:20:28 +01:00
|
|
|
toolchain.ToolchainLdflags(),
|
2016-05-18 01:35:02 +02:00
|
|
|
productExtraLdflags,
|
2016-01-13 08:20:28 +01:00
|
|
|
}, " "))
|
2018-04-03 20:33:34 +02:00
|
|
|
ctx.Strict(makePrefix+"GLOBAL_LLDFLAGS", strings.Join([]string{
|
|
|
|
fmt.Sprintf("${config.%sGlobalLldflags}", hod),
|
|
|
|
toolchain.Ldflags(),
|
|
|
|
toolchain.ToolchainLdflags(),
|
|
|
|
productExtraLdflags,
|
|
|
|
}, " "))
|
2016-05-20 01:58:46 +02:00
|
|
|
|
|
|
|
includeFlags, err := ctx.Eval(toolchain.IncludeFlags())
|
2016-06-02 02:09:44 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2016-07-20 21:14:19 +02:00
|
|
|
includes, systemIncludes := splitSystemIncludes(ctx, includeFlags)
|
|
|
|
ctx.StrictRaw(makePrefix+"C_INCLUDES", strings.Join(includes, " "))
|
|
|
|
ctx.StrictRaw(makePrefix+"C_SYSTEM_INCLUDES", strings.Join(systemIncludes, " "))
|
2016-05-20 01:58:46 +02:00
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
if target.Arch.ArchType == android.Arm {
|
2016-05-20 01:58:46 +02:00
|
|
|
flags, err := toolchain.InstructionSetFlags("arm")
|
2016-06-02 02:09:44 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2016-05-20 01:58:46 +02:00
|
|
|
ctx.Strict(makePrefix+"arm_CFLAGS", flags)
|
|
|
|
|
|
|
|
flags, err = toolchain.InstructionSetFlags("thumb")
|
2016-06-02 02:09:44 +02:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
2016-05-20 01:58:46 +02:00
|
|
|
ctx.Strict(makePrefix+"thumb_CFLAGS", flags)
|
|
|
|
}
|
2016-01-13 08:20:28 +01:00
|
|
|
|
|
|
|
if toolchain.ClangSupported() {
|
|
|
|
clangPrefix := secondPrefix + "CLANG_" + typePrefix
|
2016-05-17 03:01:46 +02:00
|
|
|
clangExtras := "-target " + toolchain.ClangTriple()
|
2017-03-13 20:40:30 +01:00
|
|
|
clangExtras += " -B" + config.ToolPath(toolchain)
|
2016-01-13 08:20:28 +01:00
|
|
|
|
2016-05-20 01:59:04 +02:00
|
|
|
ctx.Strict(clangPrefix+"GLOBAL_CFLAGS", strings.Join([]string{
|
2016-05-19 08:00:57 +02:00
|
|
|
toolchain.ClangCflags(),
|
2016-07-29 22:44:28 +02:00
|
|
|
"${config.CommonClangGlobalCflags}",
|
|
|
|
fmt.Sprintf("${config.%sClangGlobalCflags}", hod),
|
2016-05-19 08:00:57 +02:00
|
|
|
toolchain.ToolchainClangCflags(),
|
2016-01-13 08:20:28 +01:00
|
|
|
clangExtras,
|
2016-05-19 08:00:57 +02:00
|
|
|
productExtraCflags,
|
2016-01-13 08:20:28 +01:00
|
|
|
}, " "))
|
2016-05-20 01:59:04 +02:00
|
|
|
ctx.Strict(clangPrefix+"GLOBAL_CPPFLAGS", strings.Join([]string{
|
2016-07-29 22:44:28 +02:00
|
|
|
"${config.CommonClangGlobalCppflags}",
|
2017-11-06 22:59:48 +01:00
|
|
|
fmt.Sprintf("${config.%sGlobalCppflags}", hod),
|
2016-05-17 08:56:53 +02:00
|
|
|
toolchain.ClangCppflags(),
|
|
|
|
}, " "))
|
2016-05-20 01:59:04 +02:00
|
|
|
ctx.Strict(clangPrefix+"GLOBAL_LDFLAGS", strings.Join([]string{
|
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
|
|
|
fmt.Sprintf("${config.%sGlobalLdflags}", hod),
|
2016-05-19 08:00:57 +02:00
|
|
|
toolchain.ClangLdflags(),
|
2016-01-13 08:20:28 +01:00
|
|
|
toolchain.ToolchainClangLdflags(),
|
2016-05-18 01:35:02 +02:00
|
|
|
productExtraLdflags,
|
2016-01-13 08:20:28 +01:00
|
|
|
clangExtras,
|
|
|
|
}, " "))
|
2018-04-03 20:33:34 +02:00
|
|
|
ctx.Strict(clangPrefix+"GLOBAL_LLDFLAGS", strings.Join([]string{
|
|
|
|
fmt.Sprintf("${config.%sGlobalLldflags}", hod),
|
|
|
|
toolchain.ClangLldflags(),
|
|
|
|
toolchain.ToolchainClangLdflags(),
|
|
|
|
productExtraLdflags,
|
|
|
|
clangExtras,
|
|
|
|
}, " "))
|
2016-05-20 01:58:46 +02:00
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
if target.Os.Class == android.Device {
|
2016-08-15 23:18:24 +02:00
|
|
|
ctx.Strict(secondPrefix+"ADDRESS_SANITIZER_RUNTIME_LIBRARY", strings.TrimSuffix(config.AddressSanitizerRuntimeLibrary(toolchain), ".so"))
|
|
|
|
ctx.Strict(secondPrefix+"UBSAN_RUNTIME_LIBRARY", strings.TrimSuffix(config.UndefinedBehaviorSanitizerRuntimeLibrary(toolchain), ".so"))
|
2018-02-22 00:49:20 +01:00
|
|
|
ctx.Strict(secondPrefix+"UBSAN_MINIMAL_RUNTIME_LIBRARY", strings.TrimSuffix(config.UndefinedBehaviorSanitizerMinimalRuntimeLibrary(toolchain), ".a"))
|
2017-03-27 20:00:38 +02:00
|
|
|
ctx.Strict(secondPrefix+"TSAN_RUNTIME_LIBRARY", strings.TrimSuffix(config.ThreadSanitizerRuntimeLibrary(toolchain), ".so"))
|
2016-05-20 01:58:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// This is used by external/gentoo/...
|
2016-06-02 02:09:44 +02:00
|
|
|
ctx.Strict("CLANG_CONFIG_"+target.Arch.ArchType.Name+"_"+typePrefix+"TRIPLE",
|
2016-05-20 01:58:46 +02:00
|
|
|
toolchain.ClangTriple())
|
2017-11-30 05:48:03 +01:00
|
|
|
|
|
|
|
ctx.Strict(makePrefix+"CLANG_SUPPORTED", "true")
|
|
|
|
} else {
|
|
|
|
ctx.Strict(makePrefix+"CLANG_SUPPORTED", "")
|
2016-01-13 08:20:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Strict(makePrefix+"CC", gccCmd(toolchain, "gcc"))
|
|
|
|
ctx.Strict(makePrefix+"CXX", gccCmd(toolchain, "g++"))
|
2018-06-01 19:58:58 +02:00
|
|
|
ctx.Strict(makePrefix+"STRIP", gccCmd(toolchain, "strip"))
|
2016-01-13 08:20:28 +01:00
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
if target.Os == android.Darwin {
|
2016-07-29 22:44:28 +02:00
|
|
|
ctx.Strict(makePrefix+"AR", "${config.MacArPath}")
|
2016-01-13 08:20:28 +01:00
|
|
|
} else {
|
2018-01-10 08:29:04 +01:00
|
|
|
ctx.Strict(makePrefix+"AR", "${config.ClangBin}/llvm-ar")
|
2016-01-13 08:20:28 +01:00
|
|
|
ctx.Strict(makePrefix+"READELF", gccCmd(toolchain, "readelf"))
|
|
|
|
ctx.Strict(makePrefix+"NM", gccCmd(toolchain, "nm"))
|
|
|
|
}
|
2016-05-16 23:22:56 +02:00
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
if target.Os == android.Windows {
|
2016-05-16 23:22:56 +02:00
|
|
|
ctx.Strict(makePrefix+"OBJDUMP", gccCmd(toolchain, "objdump"))
|
|
|
|
}
|
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
if target.Os.Class == android.Device {
|
2016-05-16 23:22:56 +02:00
|
|
|
ctx.Strict(makePrefix+"OBJCOPY", gccCmd(toolchain, "objcopy"))
|
|
|
|
ctx.Strict(makePrefix+"LD", gccCmd(toolchain, "ld"))
|
2016-05-20 01:58:46 +02:00
|
|
|
ctx.Strict(makePrefix+"GCC_VERSION", toolchain.GccVersion())
|
|
|
|
ctx.Strict(makePrefix+"NDK_GCC_VERSION", toolchain.GccVersion())
|
2018-03-16 02:44:57 +01:00
|
|
|
ctx.Strict(makePrefix+"NDK_TRIPLE", config.NDKTriple(toolchain))
|
2016-05-16 23:22:56 +02:00
|
|
|
}
|
|
|
|
|
2017-09-22 22:55:22 +02:00
|
|
|
if target.Os.Class == android.Host || target.Os.Class == android.HostCross {
|
|
|
|
ctx.Strict(makePrefix+"AVAILABLE_LIBRARIES", strings.Join(toolchain.AvailableLibraries(), " "))
|
|
|
|
}
|
|
|
|
|
2016-05-27 00:23:07 +02:00
|
|
|
ctx.Strict(makePrefix+"TOOLCHAIN_ROOT", toolchain.GccRoot())
|
2016-05-16 23:22:56 +02:00
|
|
|
ctx.Strict(makePrefix+"TOOLS_PREFIX", gccCmd(toolchain, ""))
|
2016-05-20 01:58:46 +02:00
|
|
|
ctx.Strict(makePrefix+"SHLIB_SUFFIX", toolchain.ShlibSuffix())
|
|
|
|
ctx.Strict(makePrefix+"EXECUTABLE_SUFFIX", toolchain.ExecutableSuffix())
|
2016-01-13 08:20:28 +01:00
|
|
|
}
|
2016-07-20 21:14:19 +02:00
|
|
|
|
|
|
|
func splitSystemIncludes(ctx android.MakeVarsContext, val string) (includes, systemIncludes []string) {
|
|
|
|
flags, err := ctx.Eval(val)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
extract := func(flags string, dirs []string, prefix string) (string, []string, bool) {
|
|
|
|
if strings.HasPrefix(flags, prefix) {
|
|
|
|
flags = strings.TrimPrefix(flags, prefix)
|
|
|
|
flags = strings.TrimLeft(flags, " ")
|
|
|
|
s := strings.SplitN(flags, " ", 2)
|
|
|
|
dirs = append(dirs, s[0])
|
|
|
|
if len(s) > 1 {
|
|
|
|
return strings.TrimLeft(s[1], " "), dirs, true
|
|
|
|
}
|
|
|
|
return "", dirs, true
|
|
|
|
} else {
|
|
|
|
return flags, dirs, false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
flags = strings.TrimLeft(flags, " ")
|
|
|
|
for flags != "" {
|
|
|
|
found := false
|
|
|
|
flags, includes, found = extract(flags, includes, "-I")
|
|
|
|
if !found {
|
|
|
|
flags, systemIncludes, found = extract(flags, systemIncludes, "-isystem ")
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
panic(fmt.Errorf("Unexpected flag in %q", flags))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return includes, systemIncludes
|
|
|
|
}
|
2016-09-27 00:45:04 +02:00
|
|
|
|
|
|
|
func joinLocalTidyChecks(checks []config.PathBasedTidyCheck) string {
|
|
|
|
rets := make([]string, len(checks))
|
|
|
|
for i, check := range config.DefaultLocalTidyChecks {
|
|
|
|
rets[i] = check.PathPrefix + ":" + check.Checks
|
|
|
|
}
|
|
|
|
return strings.Join(rets, " ")
|
|
|
|
}
|