2015-01-31 09:27:36 +08:00
|
|
|
// Copyright 2015 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"
|
2018-07-26 00:19:50 +08:00
|
|
|
"path/filepath"
|
2015-01-31 09:27:36 +08:00
|
|
|
"regexp"
|
|
|
|
"strings"
|
2015-04-09 04:03:43 +08:00
|
|
|
|
2016-05-19 06:37:25 +08:00
|
|
|
"android/soong/android"
|
2015-01-31 09:27:36 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
// Efficiently converts a list of include directories to a single string
|
|
|
|
// of cflags with -I prepended to each directory.
|
2016-05-19 06:37:25 +08:00
|
|
|
func includeDirsToFlags(dirs android.Paths) string {
|
|
|
|
return android.JoinWithPrefix(dirs.Strings(), "-I")
|
2015-01-31 09:27:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func ldDirsToFlags(dirs []string) string {
|
2016-05-19 06:37:25 +08:00
|
|
|
return android.JoinWithPrefix(dirs, "-L")
|
2015-01-31 09:27:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func libNamesToFlags(names []string) string {
|
2016-05-19 06:37:25 +08:00
|
|
|
return android.JoinWithPrefix(names, "-l")
|
2015-01-31 09:27:36 +08:00
|
|
|
}
|
|
|
|
|
2017-12-23 07:47:09 +08:00
|
|
|
var indexList = android.IndexList
|
|
|
|
var inList = android.InList
|
|
|
|
var filterList = android.FilterList
|
|
|
|
var removeListFromList = android.RemoveListFromList
|
|
|
|
var removeFromList = android.RemoveFromList
|
2016-01-07 06:41:07 +08:00
|
|
|
|
2015-01-31 09:27:36 +08:00
|
|
|
var libNameRegexp = regexp.MustCompile(`^lib(.*)$`)
|
|
|
|
|
|
|
|
func moduleToLibName(module string) (string, error) {
|
|
|
|
matches := libNameRegexp.FindStringSubmatch(module)
|
|
|
|
if matches == nil {
|
|
|
|
return "", fmt.Errorf("Library module name %s does not start with lib", module)
|
|
|
|
}
|
|
|
|
return matches[1], nil
|
|
|
|
}
|
|
|
|
|
2016-01-05 06:34:37 +08:00
|
|
|
func flagsToBuilderFlags(in Flags) builderFlags {
|
2015-01-31 09:27:36 +08:00
|
|
|
return builderFlags{
|
2019-11-06 23:06:58 +08:00
|
|
|
globalCommonFlags: strings.Join(in.Global.CommonFlags, " "),
|
|
|
|
globalAsFlags: strings.Join(in.Global.AsFlags, " "),
|
|
|
|
globalYasmFlags: strings.Join(in.Global.YasmFlags, " "),
|
|
|
|
globalCFlags: strings.Join(in.Global.CFlags, " "),
|
|
|
|
globalToolingCFlags: strings.Join(in.Global.ToolingCFlags, " "),
|
|
|
|
globalToolingCppFlags: strings.Join(in.Global.ToolingCppFlags, " "),
|
|
|
|
globalConlyFlags: strings.Join(in.Global.ConlyFlags, " "),
|
|
|
|
globalCppFlags: strings.Join(in.Global.CppFlags, " "),
|
|
|
|
globalLdFlags: strings.Join(in.Global.LdFlags, " "),
|
|
|
|
|
|
|
|
localCommonFlags: strings.Join(in.Local.CommonFlags, " "),
|
|
|
|
localAsFlags: strings.Join(in.Local.AsFlags, " "),
|
|
|
|
localYasmFlags: strings.Join(in.Local.YasmFlags, " "),
|
|
|
|
localCFlags: strings.Join(in.Local.CFlags, " "),
|
|
|
|
localToolingCFlags: strings.Join(in.Local.ToolingCFlags, " "),
|
|
|
|
localToolingCppFlags: strings.Join(in.Local.ToolingCppFlags, " "),
|
|
|
|
localConlyFlags: strings.Join(in.Local.ConlyFlags, " "),
|
|
|
|
localCppFlags: strings.Join(in.Local.CppFlags, " "),
|
|
|
|
localLdFlags: strings.Join(in.Local.LdFlags, " "),
|
2019-11-05 01:37:55 +08:00
|
|
|
|
|
|
|
aidlFlags: strings.Join(in.aidlFlags, " "),
|
|
|
|
rsFlags: strings.Join(in.rsFlags, " "),
|
|
|
|
libFlags: strings.Join(in.libFlags, " "),
|
|
|
|
extraLibFlags: strings.Join(in.extraLibFlags, " "),
|
|
|
|
tidyFlags: strings.Join(in.TidyFlags, " "),
|
|
|
|
sAbiFlags: strings.Join(in.SAbiFlags, " "),
|
|
|
|
toolchain: in.Toolchain,
|
2020-04-22 03:40:27 +08:00
|
|
|
gcovCoverage: in.GcovCoverage,
|
2019-11-05 01:37:55 +08:00
|
|
|
tidy: in.Tidy,
|
|
|
|
sAbiDump: in.SAbiDump,
|
|
|
|
emitXrefs: in.EmitXrefs,
|
2016-12-02 06:45:23 +08:00
|
|
|
|
2017-03-31 06:03:04 +08:00
|
|
|
systemIncludeFlags: strings.Join(in.SystemIncludeFlags, " "),
|
|
|
|
|
2019-08-28 12:20:40 +08:00
|
|
|
assemblerWithCpp: in.AssemblerWithCpp,
|
|
|
|
groupStaticLibs: in.GroupStaticLibs,
|
2018-11-17 13:05:32 +08:00
|
|
|
|
2019-03-29 05:45:07 +08:00
|
|
|
proto: in.proto,
|
2018-11-17 13:05:32 +08:00
|
|
|
protoC: in.protoC,
|
|
|
|
protoOptionsFile: in.protoOptionsFile,
|
2019-04-11 13:59:54 +08:00
|
|
|
|
|
|
|
yacc: in.Yacc,
|
2020-07-15 16:58:56 +08:00
|
|
|
lex: in.Lex,
|
2015-01-31 09:27:36 +08:00
|
|
|
}
|
|
|
|
}
|
2016-01-15 07:17:19 +08:00
|
|
|
|
2020-08-19 20:53:01 +08:00
|
|
|
func flagsToStripFlags(in Flags) StripFlags {
|
|
|
|
return StripFlags{Toolchain: in.Toolchain}
|
|
|
|
}
|
|
|
|
|
2016-05-26 05:47:21 +08:00
|
|
|
func addPrefix(list []string, prefix string) []string {
|
|
|
|
for i := range list {
|
|
|
|
list[i] = prefix + list[i]
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
2017-08-03 20:22:50 +08:00
|
|
|
|
|
|
|
func addSuffix(list []string, suffix string) []string {
|
|
|
|
for i := range list {
|
|
|
|
list[i] = list[i] + suffix
|
|
|
|
}
|
|
|
|
return list
|
|
|
|
}
|
2018-07-26 00:19:50 +08:00
|
|
|
|
2019-02-25 10:05:47 +08:00
|
|
|
// linkDirOnDevice/linkName -> target
|
|
|
|
func makeSymlinkCmd(linkDirOnDevice string, linkName string, target string) string {
|
|
|
|
dir := filepath.Join("$(PRODUCT_OUT)", linkDirOnDevice)
|
|
|
|
return "mkdir -p " + dir + " && " +
|
|
|
|
"ln -sf " + target + " " + filepath.Join(dir, linkName)
|
|
|
|
}
|
2020-12-02 12:14:28 +08:00
|
|
|
|
|
|
|
func copyFileRule(ctx android.SingletonContext, path android.Path, out string) android.OutputPath {
|
|
|
|
outPath := android.PathForOutput(ctx, out)
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.Cp,
|
|
|
|
Input: path,
|
|
|
|
Output: outPath,
|
|
|
|
Description: "copy " + path.String() + " -> " + out,
|
|
|
|
Args: map[string]string{
|
|
|
|
"cpFlags": "-f -L",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
return outPath
|
|
|
|
}
|
|
|
|
|
|
|
|
func combineNoticesRule(ctx android.SingletonContext, paths android.Paths, out string) android.OutputPath {
|
|
|
|
outPath := android.PathForOutput(ctx, out)
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.Cat,
|
|
|
|
Inputs: paths,
|
|
|
|
Output: outPath,
|
|
|
|
Description: "combine notices for " + out,
|
|
|
|
})
|
|
|
|
return outPath
|
|
|
|
}
|
|
|
|
|
|
|
|
func writeStringToFileRule(ctx android.SingletonContext, content, out string) android.OutputPath {
|
|
|
|
outPath := android.PathForOutput(ctx, out)
|
|
|
|
android.WriteFileRule(ctx, outPath, content)
|
|
|
|
return outPath
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dump a map to a list file as:
|
|
|
|
//
|
|
|
|
// {key1} {value1}
|
|
|
|
// {key2} {value2}
|
|
|
|
// ...
|
|
|
|
func installMapListFileRule(ctx android.SingletonContext, m map[string]string, path string) android.OutputPath {
|
|
|
|
var txtBuilder strings.Builder
|
|
|
|
for idx, k := range android.SortedStringKeys(m) {
|
|
|
|
if idx > 0 {
|
|
|
|
txtBuilder.WriteString("\n")
|
|
|
|
}
|
|
|
|
txtBuilder.WriteString(k)
|
|
|
|
txtBuilder.WriteString(" ")
|
|
|
|
txtBuilder.WriteString(m[k])
|
|
|
|
}
|
|
|
|
return writeStringToFileRule(ctx, txtBuilder.String(), path)
|
|
|
|
}
|