Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1 | // Copyright 2015 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package cc |
| 16 | |
| 17 | // This file generates the final rules for compiling all C/C++. All properties related to |
| 18 | // compiling should have been translated into builderFlags or another argument to the Transform* |
| 19 | // functions. |
| 20 | |
| 21 | import ( |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 22 | "fmt" |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 23 | "path/filepath" |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 24 | "runtime" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 25 | "strings" |
Colin Cross | ed4cf0b | 2015-03-26 14:43:45 -0700 | [diff] [blame] | 26 | |
| 27 | "github.com/google/blueprint" |
Josh Gao | 75a50a2 | 2019-06-07 17:58:59 -0700 | [diff] [blame] | 28 | "github.com/google/blueprint/pathtools" |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 29 | |
| 30 | "android/soong/android" |
| 31 | "android/soong/cc/config" |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 32 | "android/soong/remoteexec" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 33 | ) |
| 34 | |
| 35 | const ( |
Dan Albert | c3144b1 | 2015-04-28 18:17:56 -0700 | [diff] [blame] | 36 | objectExtension = ".o" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 37 | staticLibraryExtension = ".a" |
| 38 | ) |
| 39 | |
| 40 | var ( |
Jayant Chowdhary | a3bb1b3 | 2017-11-01 11:12:15 -0700 | [diff] [blame] | 41 | abiCheckAllowFlags = []string{ |
Jayant Chowdhary | a3bb1b3 | 2017-11-01 11:12:15 -0700 | [diff] [blame] | 42 | "-allow-unreferenced-changes", |
| 43 | "-allow-unreferenced-elf-symbol-changes", |
| 44 | } |
| 45 | ) |
| 46 | |
| 47 | var ( |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 48 | pctx = android.NewPackageContext("android/soong/cc") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 49 | |
Ramy Medhat | 8ea054a | 2020-01-27 14:19:44 -0500 | [diff] [blame] | 50 | cc = pctx.AndroidRemoteStaticRule("cc", android.RemoteRuleSupports{Goma: true, RBE: true}, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 51 | blueprint.RuleParams{ |
| 52 | Depfile: "${out}.d", |
| 53 | Deps: blueprint.DepsGCC, |
Alistair Strachan | 777475c | 2016-08-26 12:55:49 -0700 | [diff] [blame] | 54 | Command: "$relPwd ${config.CcWrapper}$ccCmd -c $cFlags -MD -MF ${out}.d -o $out $in", |
Dan Willemsen | c94a768 | 2015-11-17 15:27:28 -0800 | [diff] [blame] | 55 | CommandDeps: []string{"$ccCmd"}, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 56 | }, |
Dan Willemsen | 322a0a6 | 2015-11-17 15:19:46 -0800 | [diff] [blame] | 57 | "ccCmd", "cFlags") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 58 | |
Kousik Kumar | 2976bfd | 2020-02-17 00:26:55 -0800 | [diff] [blame] | 59 | ccNoDeps = pctx.AndroidStaticRule("ccNoDeps", |
Dan Willemsen | fcabb1c | 2019-01-03 23:25:11 -0800 | [diff] [blame] | 60 | blueprint.RuleParams{ |
Kousik Kumar | 2976bfd | 2020-02-17 00:26:55 -0800 | [diff] [blame] | 61 | Command: "$relPwd $ccCmd -c $cFlags -o $out $in", |
Dan Willemsen | fcabb1c | 2019-01-03 23:25:11 -0800 | [diff] [blame] | 62 | CommandDeps: []string{"$ccCmd"}, |
| 63 | }, |
| 64 | "ccCmd", "cFlags") |
| 65 | |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 66 | ld, ldRE = remoteexec.StaticRules(pctx, "ld", |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 67 | blueprint.RuleParams{ |
Treehugger Robot | 35a9183 | 2020-04-27 20:37:30 +0000 | [diff] [blame] | 68 | Command: "$reTemplate$ldCmd ${crtBegin} @${out}.rsp " + |
Pete Bentley | 99f2fc2 | 2019-08-02 14:02:20 +0100 | [diff] [blame] | 69 | "${libFlags} ${crtEnd} -o ${out} ${ldFlags} ${extraLibFlags}", |
Dan Willemsen | c94a768 | 2015-11-17 15:27:28 -0800 | [diff] [blame] | 70 | CommandDeps: []string{"$ldCmd"}, |
Colin Cross | 7d21c44 | 2015-03-30 17:47:53 -0700 | [diff] [blame] | 71 | Rspfile: "${out}.rsp", |
| 72 | RspfileContent: "${in}", |
Colin Cross | 36ae135 | 2019-03-29 15:55:30 -0700 | [diff] [blame] | 73 | // clang -Wl,--out-implib doesn't update its output file if it hasn't changed. |
| 74 | Restat: true, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 75 | }, |
Treehugger Robot | 35a9183 | 2020-04-27 20:37:30 +0000 | [diff] [blame] | 76 | &remoteexec.REParams{ |
| 77 | Labels: map[string]string{"type": "link", "tool": "clang"}, |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 78 | ExecStrategy: "${config.RECXXLinksExecStrategy}", |
Ramy Medhat | c60af15 | 2020-08-28 14:21:55 -0400 | [diff] [blame] | 79 | Inputs: []string{"${out}.rsp", "$implicitInputs"}, |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 80 | RSPFile: "${out}.rsp", |
Kousik Kumar | 459c6b2 | 2020-04-28 09:13:50 +0000 | [diff] [blame] | 81 | OutputFiles: []string{"${out}", "$implicitOutputs"}, |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 82 | ToolchainInputs: []string{"$ldCmd"}, |
| 83 | Platform: map[string]string{remoteexec.PoolKey: "${config.RECXXLinksPool}"}, |
Ramy Medhat | c60af15 | 2020-08-28 14:21:55 -0400 | [diff] [blame] | 84 | }, []string{"ldCmd", "crtBegin", "libFlags", "crtEnd", "ldFlags", "extraLibFlags"}, []string{"implicitInputs", "implicitOutputs"}) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 85 | |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 86 | partialLd, partialLdRE = remoteexec.StaticRules(pctx, "partialLd", |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 87 | blueprint.RuleParams{ |
Chih-Hung Hsieh | 3ede294 | 2018-01-10 14:30:44 -0800 | [diff] [blame] | 88 | // Without -no-pie, clang 7.0 adds -pie to link Android files, |
| 89 | // but -r and -pie cannot be used together. |
Treehugger Robot | 35a9183 | 2020-04-27 20:37:30 +0000 | [diff] [blame] | 90 | Command: "$reTemplate$ldCmd -fuse-ld=lld -nostdlib -no-pie -Wl,-r ${in} -o ${out} ${ldFlags}", |
Dan Willemsen | c94a768 | 2015-11-17 15:27:28 -0800 | [diff] [blame] | 91 | CommandDeps: []string{"$ldCmd"}, |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 92 | }, &remoteexec.REParams{ |
Treehugger Robot | 35a9183 | 2020-04-27 20:37:30 +0000 | [diff] [blame] | 93 | Labels: map[string]string{"type": "link", "tool": "clang"}, |
| 94 | ExecStrategy: "${config.RECXXLinksExecStrategy}", |
Ramy Medhat | c60af15 | 2020-08-28 14:21:55 -0400 | [diff] [blame] | 95 | Inputs: []string{"$inCommaList", "$implicitInputs"}, |
Kousik Kumar | 459c6b2 | 2020-04-28 09:13:50 +0000 | [diff] [blame] | 96 | OutputFiles: []string{"${out}", "$implicitOutputs"}, |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 97 | ToolchainInputs: []string{"$ldCmd"}, |
| 98 | Platform: map[string]string{remoteexec.PoolKey: "${config.RECXXLinksPool}"}, |
Ramy Medhat | c60af15 | 2020-08-28 14:21:55 -0400 | [diff] [blame] | 99 | }, []string{"ldCmd", "ldFlags"}, []string{"implicitInputs", "inCommaList", "implicitOutputs"}) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 100 | |
Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 101 | ar = pctx.AndroidStaticRule("ar", |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 102 | blueprint.RuleParams{ |
Colin Cross | 7d21c44 | 2015-03-30 17:47:53 -0700 | [diff] [blame] | 103 | Command: "rm -f ${out} && $arCmd $arFlags $out @${out}.rsp", |
Dan Willemsen | c94a768 | 2015-11-17 15:27:28 -0800 | [diff] [blame] | 104 | CommandDeps: []string{"$arCmd"}, |
Colin Cross | 7d21c44 | 2015-03-30 17:47:53 -0700 | [diff] [blame] | 105 | Rspfile: "${out}.rsp", |
| 106 | RspfileContent: "${in}", |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 107 | }, |
| 108 | "arCmd", "arFlags") |
| 109 | |
Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 110 | darwinStrip = pctx.AndroidStaticRule("darwinStrip", |
Colin Cross | b8ecdfe | 2016-05-03 15:10:29 -0700 | [diff] [blame] | 111 | blueprint.RuleParams{ |
Colin Cross | a24166b | 2016-08-01 15:42:38 -0700 | [diff] [blame] | 112 | Command: "${config.MacStripPath} -u -r -o $out $in", |
| 113 | CommandDeps: []string{"${config.MacStripPath}"}, |
Colin Cross | b8ecdfe | 2016-05-03 15:10:29 -0700 | [diff] [blame] | 114 | }) |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 115 | |
Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 116 | prefixSymbols = pctx.AndroidStaticRule("prefixSymbols", |
Colin Cross | bfae885 | 2015-03-26 14:44:11 -0700 | [diff] [blame] | 117 | blueprint.RuleParams{ |
| 118 | Command: "$objcopyCmd --prefix-symbols=${prefix} ${in} ${out}", |
Dan Willemsen | c94a768 | 2015-11-17 15:27:28 -0800 | [diff] [blame] | 119 | CommandDeps: []string{"$objcopyCmd"}, |
Colin Cross | bfae885 | 2015-03-26 14:44:11 -0700 | [diff] [blame] | 120 | }, |
| 121 | "objcopyCmd", "prefix") |
| 122 | |
Nan Zhang | 43a485c | 2017-03-27 14:27:58 -0700 | [diff] [blame] | 123 | _ = pctx.SourcePathVariable("stripPath", "build/soong/scripts/strip.sh") |
Dan Willemsen | 8fec83a | 2018-03-09 10:47:52 -0800 | [diff] [blame] | 124 | _ = pctx.SourcePathVariable("xzCmd", "prebuilts/build-tools/${config.HostPrebuiltTag}/bin/xz") |
Colin Cross | 665dce9 | 2016-04-28 14:50:03 -0700 | [diff] [blame] | 125 | |
Colin Cross | ee3ea31 | 2019-05-17 15:36:46 -0700 | [diff] [blame] | 126 | // b/132822437: objcopy uses a file descriptor per .o file when called on .a files, which runs the system out of |
Colin Cross | badf8d6 | 2019-05-22 13:25:50 -0700 | [diff] [blame] | 127 | // file descriptors on darwin. Limit concurrent calls to 5 on darwin. |
Colin Cross | ee3ea31 | 2019-05-17 15:36:46 -0700 | [diff] [blame] | 128 | darwinStripPool = func() blueprint.Pool { |
| 129 | if runtime.GOOS == "darwin" { |
| 130 | return pctx.StaticPool("darwinStripPool", blueprint.PoolParams{ |
Colin Cross | badf8d6 | 2019-05-22 13:25:50 -0700 | [diff] [blame] | 131 | Depth: 5, |
Colin Cross | ee3ea31 | 2019-05-17 15:36:46 -0700 | [diff] [blame] | 132 | }) |
| 133 | } else { |
| 134 | return nil |
| 135 | } |
| 136 | }() |
| 137 | |
Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 138 | strip = pctx.AndroidStaticRule("strip", |
Colin Cross | 665dce9 | 2016-04-28 14:50:03 -0700 | [diff] [blame] | 139 | blueprint.RuleParams{ |
| 140 | Depfile: "${out}.d", |
| 141 | Deps: blueprint.DepsGCC, |
Chih-Hung Hsieh | 30485c9 | 2018-06-04 10:37:43 -0700 | [diff] [blame] | 142 | Command: "CROSS_COMPILE=$crossCompile XZ=$xzCmd CLANG_BIN=${config.ClangBin} $stripPath ${args} -i ${in} -o ${out} -d ${out}.d", |
Dan Willemsen | 8fec83a | 2018-03-09 10:47:52 -0800 | [diff] [blame] | 143 | CommandDeps: []string{"$stripPath", "$xzCmd"}, |
Colin Cross | ee3ea31 | 2019-05-17 15:36:46 -0700 | [diff] [blame] | 144 | Pool: darwinStripPool, |
Colin Cross | 665dce9 | 2016-04-28 14:50:03 -0700 | [diff] [blame] | 145 | }, |
| 146 | "args", "crossCompile") |
| 147 | |
Yi Kong | c49c393 | 2019-10-15 02:01:19 -0700 | [diff] [blame] | 148 | _ = pctx.SourcePathVariable("archiveRepackPath", "build/soong/scripts/archive_repack.sh") |
| 149 | |
| 150 | archiveRepack = pctx.AndroidStaticRule("archiveRepack", |
| 151 | blueprint.RuleParams{ |
| 152 | Depfile: "${out}.d", |
| 153 | Deps: blueprint.DepsGCC, |
| 154 | Command: "CLANG_BIN=${config.ClangBin} $archiveRepackPath -i ${in} -o ${out} -d ${out}.d ${objects}", |
| 155 | CommandDeps: []string{"$archiveRepackPath"}, |
| 156 | }, |
| 157 | "objects") |
| 158 | |
Colin Cross | 9d45bb7 | 2016-08-29 16:14:13 -0700 | [diff] [blame] | 159 | emptyFile = pctx.AndroidStaticRule("emptyFile", |
Dan Willemsen | 9f0b550 | 2016-05-13 14:05:09 -0700 | [diff] [blame] | 160 | blueprint.RuleParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 161 | Command: "rm -f $out && touch $out", |
Dan Willemsen | 9f0b550 | 2016-05-13 14:05:09 -0700 | [diff] [blame] | 162 | }) |
| 163 | |
Nan Zhang | 43a485c | 2017-03-27 14:27:58 -0700 | [diff] [blame] | 164 | _ = pctx.SourcePathVariable("tocPath", "build/soong/scripts/toc.sh") |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 165 | |
| 166 | toc = pctx.AndroidStaticRule("toc", |
| 167 | blueprint.RuleParams{ |
| 168 | Depfile: "${out}.d", |
| 169 | Deps: blueprint.DepsGCC, |
Colin Cross | b496cfd | 2018-09-10 16:50:05 -0700 | [diff] [blame] | 170 | Command: "CROSS_COMPILE=$crossCompile $tocPath $format -i ${in} -o ${out} -d ${out}.d", |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 171 | CommandDeps: []string{"$tocPath"}, |
| 172 | Restat: true, |
| 173 | }, |
Colin Cross | b496cfd | 2018-09-10 16:50:05 -0700 | [diff] [blame] | 174 | "crossCompile", "format") |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 175 | |
| 176 | clangTidy = pctx.AndroidStaticRule("clangTidy", |
| 177 | blueprint.RuleParams{ |
George Burgess IV | c4624c0 | 2019-04-04 16:22:37 -0700 | [diff] [blame] | 178 | Command: "rm -f $out && ${config.ClangBin}/clang-tidy $tidyFlags $in -- $cFlags && touch $out", |
| 179 | CommandDeps: []string{"${config.ClangBin}/clang-tidy"}, |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 180 | }, |
| 181 | "cFlags", "tidyFlags") |
Colin Cross | 91e9004 | 2016-12-02 17:13:24 -0800 | [diff] [blame] | 182 | |
Nan Zhang | 43a485c | 2017-03-27 14:27:58 -0700 | [diff] [blame] | 183 | _ = pctx.SourcePathVariable("yasmCmd", "prebuilts/misc/${config.HostPrebuiltTag}/yasm/yasm") |
Colin Cross | 91e9004 | 2016-12-02 17:13:24 -0800 | [diff] [blame] | 184 | |
| 185 | yasm = pctx.AndroidStaticRule("yasm", |
| 186 | blueprint.RuleParams{ |
Dan Willemsen | 1d3e545 | 2017-08-22 20:53:45 -0700 | [diff] [blame] | 187 | Command: "$yasmCmd $asFlags -o $out $in && $yasmCmd $asFlags -M $in >$out.d", |
Colin Cross | 91e9004 | 2016-12-02 17:13:24 -0800 | [diff] [blame] | 188 | CommandDeps: []string{"$yasmCmd"}, |
Dan Willemsen | 1d3e545 | 2017-08-22 20:53:45 -0700 | [diff] [blame] | 189 | Depfile: "$out.d", |
| 190 | Deps: blueprint.DepsGCC, |
Colin Cross | 91e9004 | 2016-12-02 17:13:24 -0800 | [diff] [blame] | 191 | }, |
| 192 | "asFlags") |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 193 | |
Dan Willemsen | 4f1c3d4 | 2017-09-09 01:15:26 -0700 | [diff] [blame] | 194 | windres = pctx.AndroidStaticRule("windres", |
| 195 | blueprint.RuleParams{ |
Nick Desaulniers | 18eeffa | 2020-01-29 16:20:11 -0800 | [diff] [blame] | 196 | Command: "$windresCmd $flags -I$$(dirname $in) -i $in -o $out --preprocessor \"${config.ClangBin}/clang -E -xc-header -DRC_INVOKED\"", |
Dan Willemsen | 4f1c3d4 | 2017-09-09 01:15:26 -0700 | [diff] [blame] | 197 | CommandDeps: []string{"$windresCmd"}, |
| 198 | }, |
| 199 | "windresCmd", "flags") |
| 200 | |
Jayant Chowdhary | a4c6df5 | 2018-02-20 12:36:51 -0800 | [diff] [blame] | 201 | _ = pctx.SourcePathVariable("sAbiDumper", "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/header-abi-dumper") |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 202 | |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 203 | // -w has been added since header-abi-dumper does not need to produce any sort of diagnostic information. |
Treehugger Robot | 35a9183 | 2020-04-27 20:37:30 +0000 | [diff] [blame] | 204 | sAbiDump, sAbiDumpRE = remoteexec.StaticRules(pctx, "sAbiDump", |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 205 | blueprint.RuleParams{ |
Treehugger Robot | 35a9183 | 2020-04-27 20:37:30 +0000 | [diff] [blame] | 206 | Command: "rm -f $out && $reTemplate$sAbiDumper -o ${out} $in $exportDirs -- $cFlags -w -isystem prebuilts/clang-tools/${config.HostPrebuiltTag}/clang-headers", |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 207 | CommandDeps: []string{"$sAbiDumper"}, |
Treehugger Robot | 35a9183 | 2020-04-27 20:37:30 +0000 | [diff] [blame] | 208 | }, &remoteexec.REParams{ |
| 209 | Labels: map[string]string{"type": "abi-dump", "tool": "header-abi-dumper"}, |
| 210 | ExecStrategy: "${config.REAbiDumperExecStrategy}", |
| 211 | Platform: map[string]string{ |
| 212 | remoteexec.PoolKey: "${config.RECXXPool}", |
| 213 | "InputRootAbsolutePath": android.AbsSrcDirForExistingUseCases(), |
| 214 | }, |
| 215 | }, []string{"cFlags", "exportDirs"}, nil) |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 216 | |
Jayant Chowdhary | a4c6df5 | 2018-02-20 12:36:51 -0800 | [diff] [blame] | 217 | _ = pctx.SourcePathVariable("sAbiLinker", "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/header-abi-linker") |
Ramy Medhat | c1be5ca | 2020-05-07 06:56:47 -0400 | [diff] [blame] | 218 | _ = pctx.SourcePathVariable("sAbiLinkerLibs", "prebuilts/clang-tools/${config.HostPrebuiltTag}/lib64") |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 219 | |
Ramy Medhat | c1be5ca | 2020-05-07 06:56:47 -0400 | [diff] [blame] | 220 | sAbiLink, sAbiLinkRE = remoteexec.StaticRules(pctx, "sAbiLink", |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 221 | blueprint.RuleParams{ |
Ramy Medhat | c1be5ca | 2020-05-07 06:56:47 -0400 | [diff] [blame] | 222 | Command: "$reTemplate$sAbiLinker -o ${out} $symbolFilter -arch $arch $exportedHeaderFlags @${out}.rsp ", |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 223 | CommandDeps: []string{"$sAbiLinker"}, |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 224 | Rspfile: "${out}.rsp", |
| 225 | RspfileContent: "${in}", |
Ramy Medhat | c1be5ca | 2020-05-07 06:56:47 -0400 | [diff] [blame] | 226 | }, &remoteexec.REParams{ |
| 227 | Labels: map[string]string{"type": "tool", "name": "abi-linker"}, |
| 228 | ExecStrategy: "${config.REAbiLinkerExecStrategy}", |
Ramy Medhat | c60af15 | 2020-08-28 14:21:55 -0400 | [diff] [blame] | 229 | Inputs: []string{"$sAbiLinkerLibs", "${out}.rsp", "$implicitInputs"}, |
Ramy Medhat | c1be5ca | 2020-05-07 06:56:47 -0400 | [diff] [blame] | 230 | RSPFile: "${out}.rsp", |
| 231 | OutputFiles: []string{"$out"}, |
| 232 | ToolchainInputs: []string{"$sAbiLinker"}, |
| 233 | Platform: map[string]string{remoteexec.PoolKey: "${config.RECXXPool}"}, |
Ramy Medhat | c60af15 | 2020-08-28 14:21:55 -0400 | [diff] [blame] | 234 | }, []string{"symbolFilter", "arch", "exportedHeaderFlags"}, []string{"implicitInputs"}) |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 235 | |
Jayant Chowdhary | a4c6df5 | 2018-02-20 12:36:51 -0800 | [diff] [blame] | 236 | _ = pctx.SourcePathVariable("sAbiDiffer", "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/header-abi-diff") |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 237 | |
Colin Cross | 2e2dbc2 | 2019-09-25 13:31:46 -0700 | [diff] [blame] | 238 | sAbiDiff = pctx.RuleFunc("sAbiDiff", |
Dan Willemsen | 54daaf0 | 2018-03-12 13:24:09 -0700 | [diff] [blame] | 239 | func(ctx android.PackageRuleContext) blueprint.RuleParams { |
Jayant Chowdhary | 39d167a | 2018-05-17 16:45:51 -0700 | [diff] [blame] | 240 | // TODO(b/78139997): Add -check-all-apis back |
Logan Chien | 6227fed | 2019-02-18 13:12:21 +0800 | [diff] [blame] | 241 | commandStr := "($sAbiDiffer ${allowFlags} -lib ${libName} -arch ${arch} -o ${out} -new ${in} -old ${referenceDump})" |
| 242 | commandStr += "|| (echo 'error: Please update ABI references with: $$ANDROID_BUILD_TOP/development/vndk/tools/header-checker/utils/create_reference_dumps.py ${createReferenceDumpFlags} -l ${libName}'" |
Logan Chien | 8f74fe6 | 2019-01-28 12:14:54 +0800 | [diff] [blame] | 243 | commandStr += " && (mkdir -p $$DIST_DIR/abidiffs && cp ${out} $$DIST_DIR/abidiffs/)" |
Jayant Chowdhary | d8b70a3 | 2018-02-01 17:23:09 -0800 | [diff] [blame] | 244 | commandStr += " && exit 1)" |
Jayant Chowdhary | 219139d | 2017-11-27 14:52:21 -0800 | [diff] [blame] | 245 | return blueprint.RuleParams{ |
| 246 | Command: commandStr, |
| 247 | CommandDeps: []string{"$sAbiDiffer"}, |
Dan Willemsen | 54daaf0 | 2018-03-12 13:24:09 -0700 | [diff] [blame] | 248 | } |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 249 | }, |
Logan Chien | 6227fed | 2019-02-18 13:12:21 +0800 | [diff] [blame] | 250 | "allowFlags", "referenceDump", "libName", "arch", "createReferenceDumpFlags") |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 251 | |
| 252 | unzipRefSAbiDump = pctx.AndroidStaticRule("unzipRefSAbiDump", |
| 253 | blueprint.RuleParams{ |
| 254 | Command: "gunzip -c $in > $out", |
| 255 | }) |
Oliver Nguyen | c743414 | 2019-04-24 14:22:25 -0700 | [diff] [blame] | 256 | |
| 257 | zip = pctx.AndroidStaticRule("zip", |
| 258 | blueprint.RuleParams{ |
| 259 | Command: "cat $out.rsp | tr ' ' '\\n' | tr -d \\' | sort -u > ${out}.tmp && ${SoongZipCmd} -o ${out} -C $$OUT_DIR -l ${out}.tmp", |
| 260 | CommandDeps: []string{"${SoongZipCmd}"}, |
| 261 | Rspfile: "$out.rsp", |
| 262 | RspfileContent: "$in", |
| 263 | }) |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 264 | |
| 265 | _ = pctx.SourcePathVariable("cxxExtractor", |
| 266 | "prebuilts/clang-tools/${config.HostPrebuiltTag}/bin/cxx_extractor") |
Sasha Smundak | 6514364 | 2019-09-26 20:14:28 -0700 | [diff] [blame] | 267 | _ = pctx.SourcePathVariable("kytheVnames", "build/soong/vnames.json") |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 268 | _ = pctx.VariableFunc("kytheCorpus", |
| 269 | func(ctx android.PackageVarContext) string { return ctx.Config().XrefCorpusName() }) |
Sasha Smundak | 6c2d4f9 | 2020-01-09 17:34:23 -0800 | [diff] [blame] | 270 | _ = pctx.VariableFunc("kytheCuEncoding", |
| 271 | func(ctx android.PackageVarContext) string { return ctx.Config().XrefCuEncoding() }) |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 272 | kytheExtract = pctx.StaticRule("kythe", |
| 273 | blueprint.RuleParams{ |
Sasha Smundak | 6c2d4f9 | 2020-01-09 17:34:23 -0800 | [diff] [blame] | 274 | Command: `rm -f $out && ` + |
| 275 | `KYTHE_CORPUS=${kytheCorpus} KYTHE_OUTPUT_FILE=$out KYTHE_VNAMES=$kytheVnames KYTHE_KZIP_ENCODING=${kytheCuEncoding} ` + |
| 276 | `$cxxExtractor $cFlags $in `, |
Sasha Smundak | 6514364 | 2019-09-26 20:14:28 -0700 | [diff] [blame] | 277 | CommandDeps: []string{"$cxxExtractor", "$kytheVnames"}, |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 278 | }, |
| 279 | "cFlags") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 280 | ) |
| 281 | |
Dan Willemsen | 322a0a6 | 2015-11-17 15:19:46 -0800 | [diff] [blame] | 282 | func init() { |
| 283 | // We run gcc/clang with PWD=/proc/self/cwd to remove $TOP from the |
| 284 | // debug output. That way two builds in two different directories will |
| 285 | // create the same output. |
| 286 | if runtime.GOOS != "darwin" { |
| 287 | pctx.StaticVariable("relPwd", "PWD=/proc/self/cwd") |
| 288 | } else { |
| 289 | // Darwin doesn't have /proc |
| 290 | pctx.StaticVariable("relPwd", "") |
| 291 | } |
Oliver Nguyen | c743414 | 2019-04-24 14:22:25 -0700 | [diff] [blame] | 292 | |
| 293 | pctx.HostBinToolVariable("SoongZipCmd", "soong_zip") |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 294 | pctx.Import("android/soong/remoteexec") |
Dan Willemsen | 322a0a6 | 2015-11-17 15:19:46 -0800 | [diff] [blame] | 295 | } |
| 296 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 297 | type builderFlags struct { |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 298 | globalCommonFlags string |
| 299 | globalAsFlags string |
| 300 | globalYasmFlags string |
| 301 | globalCFlags string |
| 302 | globalToolingCFlags string // A separate set of cFlags for clang LibTooling tools |
| 303 | globalToolingCppFlags string // A separate set of cppFlags for clang LibTooling tools |
| 304 | globalConlyFlags string |
| 305 | globalCppFlags string |
| 306 | globalLdFlags string |
| 307 | |
| 308 | localCommonFlags string |
| 309 | localAsFlags string |
| 310 | localYasmFlags string |
| 311 | localCFlags string |
| 312 | localToolingCFlags string // A separate set of cFlags for clang LibTooling tools |
| 313 | localToolingCppFlags string // A separate set of cppFlags for clang LibTooling tools |
| 314 | localConlyFlags string |
| 315 | localCppFlags string |
| 316 | localLdFlags string |
| 317 | |
| 318 | libFlags string |
| 319 | extraLibFlags string |
| 320 | tidyFlags string |
| 321 | sAbiFlags string |
| 322 | aidlFlags string |
| 323 | rsFlags string |
| 324 | toolchain config.Toolchain |
| 325 | tidy bool |
Oliver Nguyen | 6f641c1 | 2020-04-21 12:40:27 -0700 | [diff] [blame] | 326 | gcovCoverage bool |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 327 | sAbiDump bool |
| 328 | emitXrefs bool |
Colin Cross | 665dce9 | 2016-04-28 14:50:03 -0700 | [diff] [blame] | 329 | |
Dan Willemsen | 98ab311 | 2019-08-27 21:20:40 -0700 | [diff] [blame] | 330 | assemblerWithCpp bool |
| 331 | |
Colin Cross | c319948 | 2017-03-30 15:03:04 -0700 | [diff] [blame] | 332 | systemIncludeFlags string |
| 333 | |
Colin Cross | 18c0c5a | 2016-12-01 14:45:23 -0800 | [diff] [blame] | 334 | groupStaticLibs bool |
| 335 | |
Christopher Ferris | b43fe7a | 2019-05-17 16:39:54 -0700 | [diff] [blame] | 336 | stripKeepSymbols bool |
| 337 | stripKeepSymbolsList string |
| 338 | stripKeepSymbolsAndDebugFrame bool |
| 339 | stripKeepMiniDebugInfo bool |
| 340 | stripAddGnuDebuglink bool |
| 341 | stripUseGnuStrip bool |
Dan Willemsen | 60e62f0 | 2018-11-16 21:05:32 -0800 | [diff] [blame] | 342 | |
Colin Cross | 19878da | 2019-03-28 14:45:07 -0700 | [diff] [blame] | 343 | proto android.ProtoFlags |
Dan Willemsen | 60e62f0 | 2018-11-16 21:05:32 -0800 | [diff] [blame] | 344 | protoC bool |
| 345 | protoOptionsFile bool |
Dan Willemsen | 4e0aa23 | 2019-04-10 22:59:54 -0700 | [diff] [blame] | 346 | |
| 347 | yacc *YaccProperties |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 348 | } |
| 349 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 350 | type Objects struct { |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 351 | objFiles android.Paths |
| 352 | tidyFiles android.Paths |
| 353 | coverageFiles android.Paths |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 354 | sAbiDumpFiles android.Paths |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 355 | kytheFiles android.Paths |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 356 | } |
| 357 | |
| 358 | func (a Objects) Copy() Objects { |
| 359 | return Objects{ |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 360 | objFiles: append(android.Paths{}, a.objFiles...), |
| 361 | tidyFiles: append(android.Paths{}, a.tidyFiles...), |
| 362 | coverageFiles: append(android.Paths{}, a.coverageFiles...), |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 363 | sAbiDumpFiles: append(android.Paths{}, a.sAbiDumpFiles...), |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 364 | kytheFiles: append(android.Paths{}, a.kytheFiles...), |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 365 | } |
| 366 | } |
| 367 | |
| 368 | func (a Objects) Append(b Objects) Objects { |
| 369 | return Objects{ |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 370 | objFiles: append(a.objFiles, b.objFiles...), |
| 371 | tidyFiles: append(a.tidyFiles, b.tidyFiles...), |
| 372 | coverageFiles: append(a.coverageFiles, b.coverageFiles...), |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 373 | sAbiDumpFiles: append(a.sAbiDumpFiles, b.sAbiDumpFiles...), |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 374 | kytheFiles: append(a.kytheFiles, b.kytheFiles...), |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 375 | } |
| 376 | } |
| 377 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 378 | // Generate rules for compiling multiple .c, .cpp, or .S files to individual .o files |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 379 | func TransformSourceToObj(ctx android.ModuleContext, subdir string, srcFiles android.Paths, |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 380 | flags builderFlags, pathDeps android.Paths, cFlagsDeps android.Paths) Objects { |
Colin Cross | 581c189 | 2015-04-07 16:50:10 -0700 | [diff] [blame] | 381 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 382 | objFiles := make(android.Paths, len(srcFiles)) |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 383 | var tidyFiles android.Paths |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 384 | if flags.tidy { |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 385 | tidyFiles = make(android.Paths, 0, len(srcFiles)) |
| 386 | } |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 387 | var coverageFiles android.Paths |
Oliver Nguyen | 6f641c1 | 2020-04-21 12:40:27 -0700 | [diff] [blame] | 388 | if flags.gcovCoverage { |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 389 | coverageFiles = make(android.Paths, 0, len(srcFiles)) |
| 390 | } |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 391 | var kytheFiles android.Paths |
| 392 | if flags.emitXrefs { |
| 393 | kytheFiles = make(android.Paths, 0, len(srcFiles)) |
| 394 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 395 | |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 396 | // Produce fully expanded flags for use by C tools, C compiles, C++ tools, C++ compiles, and asm compiles |
| 397 | // respectively. |
| 398 | toolingCflags := flags.globalCommonFlags + " " + |
| 399 | flags.globalToolingCFlags + " " + |
| 400 | flags.globalConlyFlags + " " + |
| 401 | flags.localCommonFlags + " " + |
| 402 | flags.localToolingCFlags + " " + |
| 403 | flags.localConlyFlags + " " + |
| 404 | flags.systemIncludeFlags |
Jayant Chowdhary | 9677e8c | 2017-06-15 14:45:18 -0700 | [diff] [blame] | 405 | |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 406 | cflags := flags.globalCommonFlags + " " + |
| 407 | flags.globalCFlags + " " + |
| 408 | flags.globalConlyFlags + " " + |
| 409 | flags.localCommonFlags + " " + |
| 410 | flags.localCFlags + " " + |
| 411 | flags.localConlyFlags + " " + |
| 412 | flags.systemIncludeFlags |
Jayant Chowdhary | 9677e8c | 2017-06-15 14:45:18 -0700 | [diff] [blame] | 413 | |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 414 | toolingCppflags := flags.globalCommonFlags + " " + |
| 415 | flags.globalToolingCFlags + " " + |
| 416 | flags.globalToolingCppFlags + " " + |
| 417 | flags.localCommonFlags + " " + |
| 418 | flags.localToolingCFlags + " " + |
| 419 | flags.localToolingCppFlags + " " + |
| 420 | flags.systemIncludeFlags |
Colin Cross | c319948 | 2017-03-30 15:03:04 -0700 | [diff] [blame] | 421 | |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 422 | cppflags := flags.globalCommonFlags + " " + |
| 423 | flags.globalCFlags + " " + |
| 424 | flags.globalCppFlags + " " + |
| 425 | flags.localCommonFlags + " " + |
| 426 | flags.localCFlags + " " + |
| 427 | flags.localCppFlags + " " + |
| 428 | flags.systemIncludeFlags |
Jayant Chowdhary | 9677e8c | 2017-06-15 14:45:18 -0700 | [diff] [blame] | 429 | |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 430 | asflags := flags.globalCommonFlags + " " + |
| 431 | flags.globalAsFlags + " " + |
| 432 | flags.localCommonFlags + " " + |
| 433 | flags.localAsFlags + " " + |
| 434 | flags.systemIncludeFlags |
Jayant Chowdhary | 9677e8c | 2017-06-15 14:45:18 -0700 | [diff] [blame] | 435 | |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 436 | var sAbiDumpFiles android.Paths |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 437 | if flags.sAbiDump { |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 438 | sAbiDumpFiles = make(android.Paths, 0, len(srcFiles)) |
| 439 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 440 | |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 441 | cflags += " ${config.NoOverrideClangGlobalCflags}" |
| 442 | toolingCflags += " ${config.NoOverrideClangGlobalCflags}" |
| 443 | cppflags += " ${config.NoOverrideClangGlobalCflags}" |
| 444 | toolingCppflags += " ${config.NoOverrideClangGlobalCflags}" |
Dan Willemsen | be03f34 | 2016-03-03 17:21:04 -0800 | [diff] [blame] | 445 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 446 | for i, srcFile := range srcFiles { |
Dan Willemsen | 21ec490 | 2016-11-02 20:43:13 -0700 | [diff] [blame] | 447 | objFile := android.ObjPathWithExt(ctx, subdir, srcFile, "o") |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 448 | |
| 449 | objFiles[i] = objFile |
| 450 | |
Dan Willemsen | 4f1c3d4 | 2017-09-09 01:15:26 -0700 | [diff] [blame] | 451 | switch srcFile.Ext() { |
| 452 | case ".asm": |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 453 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 454 | Rule: yasm, |
| 455 | Description: "yasm " + srcFile.Rel(), |
| 456 | Output: objFile, |
| 457 | Input: srcFile, |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 458 | Implicits: cFlagsDeps, |
| 459 | OrderOnly: pathDeps, |
Colin Cross | 91e9004 | 2016-12-02 17:13:24 -0800 | [diff] [blame] | 460 | Args: map[string]string{ |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 461 | "asFlags": flags.globalYasmFlags + " " + flags.localYasmFlags, |
Colin Cross | 91e9004 | 2016-12-02 17:13:24 -0800 | [diff] [blame] | 462 | }, |
| 463 | }) |
| 464 | continue |
Dan Willemsen | 4f1c3d4 | 2017-09-09 01:15:26 -0700 | [diff] [blame] | 465 | case ".rc": |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 466 | ctx.Build(pctx, android.BuildParams{ |
Dan Willemsen | 4f1c3d4 | 2017-09-09 01:15:26 -0700 | [diff] [blame] | 467 | Rule: windres, |
| 468 | Description: "windres " + srcFile.Rel(), |
| 469 | Output: objFile, |
| 470 | Input: srcFile, |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 471 | Implicits: cFlagsDeps, |
| 472 | OrderOnly: pathDeps, |
Dan Willemsen | 4f1c3d4 | 2017-09-09 01:15:26 -0700 | [diff] [blame] | 473 | Args: map[string]string{ |
| 474 | "windresCmd": gccCmd(flags.toolchain, "windres"), |
| 475 | "flags": flags.toolchain.WindresFlags(), |
| 476 | }, |
| 477 | }) |
| 478 | continue |
Pete Bentley | fcf55bf | 2019-08-16 20:14:32 +0100 | [diff] [blame] | 479 | case ".o": |
| 480 | objFiles[i] = srcFile |
| 481 | continue |
Colin Cross | 91e9004 | 2016-12-02 17:13:24 -0800 | [diff] [blame] | 482 | } |
| 483 | |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 484 | var moduleFlags string |
| 485 | var moduleToolingFlags string |
| 486 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 487 | var ccCmd string |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 488 | tidy := flags.tidy |
Oliver Nguyen | 6f641c1 | 2020-04-21 12:40:27 -0700 | [diff] [blame] | 489 | coverage := flags.gcovCoverage |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 490 | dump := flags.sAbiDump |
Dan Willemsen | fcabb1c | 2019-01-03 23:25:11 -0800 | [diff] [blame] | 491 | rule := cc |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 492 | emitXref := flags.emitXrefs |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 493 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 494 | switch srcFile.Ext() { |
Dan Willemsen | fcabb1c | 2019-01-03 23:25:11 -0800 | [diff] [blame] | 495 | case ".s": |
Dan Willemsen | 98ab311 | 2019-08-27 21:20:40 -0700 | [diff] [blame] | 496 | if !flags.assemblerWithCpp { |
| 497 | rule = ccNoDeps |
| 498 | } |
Dan Willemsen | fcabb1c | 2019-01-03 23:25:11 -0800 | [diff] [blame] | 499 | fallthrough |
| 500 | case ".S": |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 501 | ccCmd = "clang" |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 502 | moduleFlags = asflags |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 503 | tidy = false |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 504 | coverage = false |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 505 | dump = false |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 506 | emitXref = false |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 507 | case ".c": |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 508 | ccCmd = "clang" |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 509 | moduleFlags = cflags |
| 510 | moduleToolingFlags = toolingCflags |
Colin Cross | d34ab7c | 2019-06-27 14:46:10 -0700 | [diff] [blame] | 511 | case ".cpp", ".cc", ".cxx", ".mm": |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 512 | ccCmd = "clang++" |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 513 | moduleFlags = cppflags |
| 514 | moduleToolingFlags = toolingCppflags |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 515 | default: |
| 516 | ctx.ModuleErrorf("File %s has unknown extension", srcFile) |
| 517 | continue |
| 518 | } |
| 519 | |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 520 | ccDesc := ccCmd |
| 521 | |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 522 | ccCmd = "${config.ClangBin}/" + ccCmd |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 523 | |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 524 | var implicitOutputs android.WritablePaths |
| 525 | if coverage { |
| 526 | gcnoFile := android.ObjPathWithExt(ctx, subdir, srcFile, "gcno") |
| 527 | implicitOutputs = append(implicitOutputs, gcnoFile) |
| 528 | coverageFiles = append(coverageFiles, gcnoFile) |
| 529 | } |
| 530 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 531 | ctx.Build(pctx, android.BuildParams{ |
Dan Willemsen | fcabb1c | 2019-01-03 23:25:11 -0800 | [diff] [blame] | 532 | Rule: rule, |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 533 | Description: ccDesc + " " + srcFile.Rel(), |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 534 | Output: objFile, |
| 535 | ImplicitOutputs: implicitOutputs, |
| 536 | Input: srcFile, |
Pirama Arumuga Nainar | f231b19 | 2018-01-23 10:49:04 -0800 | [diff] [blame] | 537 | Implicits: cFlagsDeps, |
| 538 | OrderOnly: pathDeps, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 539 | Args: map[string]string{ |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 540 | "cFlags": moduleFlags, |
Colin Cross | 2834452 | 2015-04-22 13:07:53 -0700 | [diff] [blame] | 541 | "ccCmd": ccCmd, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 542 | }, |
| 543 | }) |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 544 | |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 545 | if emitXref { |
| 546 | kytheFile := android.ObjPathWithExt(ctx, subdir, srcFile, "kzip") |
| 547 | ctx.Build(pctx, android.BuildParams{ |
| 548 | Rule: kytheExtract, |
| 549 | Description: "Xref C++ extractor " + srcFile.Rel(), |
| 550 | Output: kytheFile, |
| 551 | Input: srcFile, |
| 552 | Implicits: cFlagsDeps, |
| 553 | OrderOnly: pathDeps, |
| 554 | Args: map[string]string{ |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 555 | "cFlags": moduleFlags, |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 556 | }, |
| 557 | }) |
| 558 | kytheFiles = append(kytheFiles, kytheFile) |
| 559 | } |
| 560 | |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 561 | if tidy { |
Dan Willemsen | 21ec490 | 2016-11-02 20:43:13 -0700 | [diff] [blame] | 562 | tidyFile := android.ObjPathWithExt(ctx, subdir, srcFile, "tidy") |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 563 | tidyFiles = append(tidyFiles, tidyFile) |
| 564 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 565 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 566 | Rule: clangTidy, |
| 567 | Description: "clang-tidy " + srcFile.Rel(), |
| 568 | Output: tidyFile, |
| 569 | Input: srcFile, |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 570 | // We must depend on objFile, since clang-tidy doesn't |
| 571 | // support exporting dependencies. |
Dan Willemsen | 6b4419c | 2019-08-09 12:45:53 -0700 | [diff] [blame] | 572 | Implicit: objFile, |
| 573 | Implicits: cFlagsDeps, |
| 574 | OrderOnly: pathDeps, |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 575 | Args: map[string]string{ |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 576 | "cFlags": moduleToolingFlags, |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 577 | "tidyFlags": flags.tidyFlags, |
| 578 | }, |
| 579 | }) |
| 580 | } |
| 581 | |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 582 | if dump { |
| 583 | sAbiDumpFile := android.ObjPathWithExt(ctx, subdir, srcFile, "sdump") |
| 584 | sAbiDumpFiles = append(sAbiDumpFiles, sAbiDumpFile) |
| 585 | |
Treehugger Robot | 35a9183 | 2020-04-27 20:37:30 +0000 | [diff] [blame] | 586 | dumpRule := sAbiDump |
| 587 | if ctx.Config().IsEnvTrue("RBE_ABI_DUMPER") { |
| 588 | dumpRule = sAbiDumpRE |
| 589 | } |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 590 | ctx.Build(pctx, android.BuildParams{ |
Treehugger Robot | 35a9183 | 2020-04-27 20:37:30 +0000 | [diff] [blame] | 591 | Rule: dumpRule, |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 592 | Description: "header-abi-dumper " + srcFile.Rel(), |
| 593 | Output: sAbiDumpFile, |
| 594 | Input: srcFile, |
| 595 | Implicit: objFile, |
Dan Willemsen | 6b4419c | 2019-08-09 12:45:53 -0700 | [diff] [blame] | 596 | Implicits: cFlagsDeps, |
| 597 | OrderOnly: pathDeps, |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 598 | Args: map[string]string{ |
Colin Cross | 6d88dba | 2019-11-06 07:06:58 -0800 | [diff] [blame] | 599 | "cFlags": moduleToolingFlags, |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 600 | "exportDirs": flags.sAbiFlags, |
| 601 | }, |
| 602 | }) |
| 603 | } |
| 604 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 605 | } |
| 606 | |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 607 | return Objects{ |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 608 | objFiles: objFiles, |
| 609 | tidyFiles: tidyFiles, |
| 610 | coverageFiles: coverageFiles, |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 611 | sAbiDumpFiles: sAbiDumpFiles, |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 612 | kytheFiles: kytheFiles, |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 613 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 614 | } |
| 615 | |
| 616 | // Generate a rule for compiling multiple .o files to a static library (.a) |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 617 | func TransformObjToStaticLib(ctx android.ModuleContext, objFiles android.Paths, |
Dan Willemsen | a03cf6d | 2016-09-26 15:45:04 -0700 | [diff] [blame] | 618 | flags builderFlags, outputFile android.ModuleOutPath, deps android.Paths) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 619 | |
Stephen Hines | f1addeb | 2018-01-09 23:29:04 -0800 | [diff] [blame] | 620 | arCmd := "${config.ClangBin}/llvm-ar" |
Yi Kong | ee96a79 | 2019-09-06 15:11:57 -0700 | [diff] [blame] | 621 | arFlags := "crsPD" |
Stephen Hines | f1addeb | 2018-01-09 23:29:04 -0800 | [diff] [blame] | 622 | if !ctx.Darwin() { |
| 623 | arFlags += " -format=gnu" |
| 624 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 625 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 626 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 627 | Rule: ar, |
| 628 | Description: "static link " + outputFile.Base(), |
| 629 | Output: outputFile, |
| 630 | Inputs: objFiles, |
| 631 | Implicits: deps, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 632 | Args: map[string]string{ |
| 633 | "arFlags": arFlags, |
| 634 | "arCmd": arCmd, |
| 635 | }, |
| 636 | }) |
| 637 | } |
| 638 | |
| 639 | // Generate a rule for compiling multiple .o files, plus static libraries, whole static libraries, |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 640 | // and shared libraries, to a shared library (.so) or dynamic executable |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 641 | func TransformObjToDynamicBinary(ctx android.ModuleContext, |
| 642 | objFiles, sharedLibs, staticLibs, lateStaticLibs, wholeStaticLibs, deps android.Paths, |
Josh Gao | 75a50a2 | 2019-06-07 17:58:59 -0700 | [diff] [blame] | 643 | crtBegin, crtEnd android.OptionalPath, groupLate bool, flags builderFlags, outputFile android.WritablePath, implicitOutputs android.WritablePaths) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 644 | |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 645 | ldCmd := "${config.ClangBin}/clang++" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 646 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 647 | var libFlagsList []string |
| 648 | |
Colin Cross | 16b2349 | 2016-01-06 14:41:07 -0800 | [diff] [blame] | 649 | if len(flags.libFlags) > 0 { |
| 650 | libFlagsList = append(libFlagsList, flags.libFlags) |
| 651 | } |
| 652 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 653 | if len(wholeStaticLibs) > 0 { |
Dan Willemsen | 490fd49 | 2015-11-24 17:53:15 -0800 | [diff] [blame] | 654 | if ctx.Host() && ctx.Darwin() { |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 655 | libFlagsList = append(libFlagsList, android.JoinWithPrefix(wholeStaticLibs.Strings(), "-force_load ")) |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 656 | } else { |
| 657 | libFlagsList = append(libFlagsList, "-Wl,--whole-archive ") |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 658 | libFlagsList = append(libFlagsList, wholeStaticLibs.Strings()...) |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 659 | libFlagsList = append(libFlagsList, "-Wl,--no-whole-archive ") |
| 660 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 661 | } |
| 662 | |
Colin Cross | 7a7cf97 | 2016-12-05 18:47:39 -0800 | [diff] [blame] | 663 | if flags.groupStaticLibs && !ctx.Darwin() && len(staticLibs) > 0 { |
Colin Cross | 18c0c5a | 2016-12-01 14:45:23 -0800 | [diff] [blame] | 664 | libFlagsList = append(libFlagsList, "-Wl,--start-group") |
| 665 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 666 | libFlagsList = append(libFlagsList, staticLibs.Strings()...) |
Colin Cross | 7a7cf97 | 2016-12-05 18:47:39 -0800 | [diff] [blame] | 667 | if flags.groupStaticLibs && !ctx.Darwin() && len(staticLibs) > 0 { |
Colin Cross | 18c0c5a | 2016-12-01 14:45:23 -0800 | [diff] [blame] | 668 | libFlagsList = append(libFlagsList, "-Wl,--end-group") |
| 669 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 670 | |
Stephen Hines | 1034786 | 2016-07-18 15:54:54 -0700 | [diff] [blame] | 671 | if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 { |
Dan Willemsen | edc385f | 2015-07-08 13:02:23 -0700 | [diff] [blame] | 672 | libFlagsList = append(libFlagsList, "-Wl,--start-group") |
| 673 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 674 | libFlagsList = append(libFlagsList, lateStaticLibs.Strings()...) |
Stephen Hines | 1034786 | 2016-07-18 15:54:54 -0700 | [diff] [blame] | 675 | if groupLate && !ctx.Darwin() && len(lateStaticLibs) > 0 { |
Dan Willemsen | edc385f | 2015-07-08 13:02:23 -0700 | [diff] [blame] | 676 | libFlagsList = append(libFlagsList, "-Wl,--end-group") |
| 677 | } |
| 678 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 679 | for _, lib := range sharedLibs { |
Josh Gao | 75a50a2 | 2019-06-07 17:58:59 -0700 | [diff] [blame] | 680 | libFile := lib.String() |
| 681 | if ctx.Windows() { |
| 682 | libFile = pathtools.ReplaceExtension(libFile, "lib") |
| 683 | } |
| 684 | libFlagsList = append(libFlagsList, libFile) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 685 | } |
| 686 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 687 | deps = append(deps, staticLibs...) |
Colin Cross | 3075ad0 | 2015-03-17 10:47:08 -0700 | [diff] [blame] | 688 | deps = append(deps, lateStaticLibs...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 689 | deps = append(deps, wholeStaticLibs...) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 690 | if crtBegin.Valid() { |
| 691 | deps = append(deps, crtBegin.Path(), crtEnd.Path()) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 692 | } |
| 693 | |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 694 | rule := ld |
Kousik Kumar | 459c6b2 | 2020-04-28 09:13:50 +0000 | [diff] [blame] | 695 | args := map[string]string{ |
| 696 | "ldCmd": ldCmd, |
| 697 | "crtBegin": crtBegin.String(), |
| 698 | "libFlags": strings.Join(libFlagsList, " "), |
| 699 | "extraLibFlags": flags.extraLibFlags, |
| 700 | "ldFlags": flags.globalLdFlags + " " + flags.localLdFlags, |
| 701 | "crtEnd": crtEnd.String(), |
| 702 | } |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 703 | if ctx.Config().IsEnvTrue("RBE_CXX_LINKS") { |
| 704 | rule = ldRE |
Kousik Kumar | 459c6b2 | 2020-04-28 09:13:50 +0000 | [diff] [blame] | 705 | args["implicitOutputs"] = strings.Join(implicitOutputs.Strings(), ",") |
Ramy Medhat | c60af15 | 2020-08-28 14:21:55 -0400 | [diff] [blame] | 706 | args["implicitInputs"] = strings.Join(deps.Strings(), ",") |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 707 | } |
| 708 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 709 | ctx.Build(pctx, android.BuildParams{ |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 710 | Rule: rule, |
Josh Gao | 75a50a2 | 2019-06-07 17:58:59 -0700 | [diff] [blame] | 711 | Description: "link " + outputFile.Base(), |
| 712 | Output: outputFile, |
| 713 | ImplicitOutputs: implicitOutputs, |
| 714 | Inputs: objFiles, |
| 715 | Implicits: deps, |
Kousik Kumar | 459c6b2 | 2020-04-28 09:13:50 +0000 | [diff] [blame] | 716 | Args: args, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 717 | }) |
| 718 | } |
| 719 | |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 720 | // Generate a rule to combine .dump sAbi dump files from multiple source files |
| 721 | // into a single .ldump sAbi dump file |
Jayant Chowdhary | 6ab3d84 | 2017-06-26 12:52:58 -0700 | [diff] [blame] | 722 | func TransformDumpToLinkedDump(ctx android.ModuleContext, sAbiDumps android.Paths, soFile android.Path, |
Logan Chien | e3d7a0d | 2019-01-17 00:18:02 +0800 | [diff] [blame] | 723 | baseName, exportedHeaderFlags string, symbolFile android.OptionalPath, |
| 724 | excludedSymbolVersions, excludedSymbolTags []string) android.OptionalPath { |
| 725 | |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 726 | outputFile := android.PathForModuleOut(ctx, baseName+".lsdump") |
Logan Chien | e3d7a0d | 2019-01-17 00:18:02 +0800 | [diff] [blame] | 727 | |
| 728 | implicits := android.Paths{soFile} |
Jayant Chowdhary | df344d5 | 2018-01-17 11:11:42 -0800 | [diff] [blame] | 729 | symbolFilterStr := "-so " + soFile.String() |
Logan Chien | e3d7a0d | 2019-01-17 00:18:02 +0800 | [diff] [blame] | 730 | |
| 731 | if symbolFile.Valid() { |
| 732 | implicits = append(implicits, symbolFile.Path()) |
| 733 | symbolFilterStr += " -v " + symbolFile.String() |
| 734 | } |
| 735 | for _, ver := range excludedSymbolVersions { |
| 736 | symbolFilterStr += " --exclude-symbol-version " + ver |
| 737 | } |
| 738 | for _, tag := range excludedSymbolTags { |
| 739 | symbolFilterStr += " --exclude-symbol-tag " + tag |
| 740 | } |
Ramy Medhat | c1be5ca | 2020-05-07 06:56:47 -0400 | [diff] [blame] | 741 | rule := sAbiLink |
| 742 | args := map[string]string{ |
| 743 | "symbolFilter": symbolFilterStr, |
| 744 | "arch": ctx.Arch().ArchType.Name, |
| 745 | "exportedHeaderFlags": exportedHeaderFlags, |
| 746 | } |
| 747 | if ctx.Config().IsEnvTrue("RBE_ABI_LINKER") { |
| 748 | rule = sAbiLinkRE |
| 749 | rbeImplicits := implicits.Strings() |
| 750 | for _, p := range strings.Split(exportedHeaderFlags, " ") { |
| 751 | if len(p) > 2 { |
| 752 | // Exclude the -I prefix. |
| 753 | rbeImplicits = append(rbeImplicits, p[2:]) |
| 754 | } |
| 755 | } |
Ramy Medhat | c60af15 | 2020-08-28 14:21:55 -0400 | [diff] [blame] | 756 | args["implicitInputs"] = strings.Join(rbeImplicits, ",") |
Ramy Medhat | c1be5ca | 2020-05-07 06:56:47 -0400 | [diff] [blame] | 757 | } |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 758 | ctx.Build(pctx, android.BuildParams{ |
Ramy Medhat | c1be5ca | 2020-05-07 06:56:47 -0400 | [diff] [blame] | 759 | Rule: rule, |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 760 | Description: "header-abi-linker " + outputFile.Base(), |
| 761 | Output: outputFile, |
| 762 | Inputs: sAbiDumps, |
Logan Chien | e3d7a0d | 2019-01-17 00:18:02 +0800 | [diff] [blame] | 763 | Implicits: implicits, |
Ramy Medhat | c1be5ca | 2020-05-07 06:56:47 -0400 | [diff] [blame] | 764 | Args: args, |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 765 | }) |
| 766 | return android.OptionalPathForPath(outputFile) |
| 767 | } |
| 768 | |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 769 | func UnzipRefDump(ctx android.ModuleContext, zippedRefDump android.Path, baseName string) android.Path { |
| 770 | outputFile := android.PathForModuleOut(ctx, baseName+"_ref.lsdump") |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 771 | ctx.Build(pctx, android.BuildParams{ |
Jayant Chowdhary | 715cac3 | 2017-04-20 06:53:59 -0700 | [diff] [blame] | 772 | Rule: unzipRefSAbiDump, |
| 773 | Description: "gunzip" + outputFile.Base(), |
| 774 | Output: outputFile, |
| 775 | Input: zippedRefDump, |
| 776 | }) |
| 777 | return outputFile |
| 778 | } |
| 779 | |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 780 | func SourceAbiDiff(ctx android.ModuleContext, inputDump android.Path, referenceDump android.Path, |
Logan Chien | 62f1f94 | 2019-02-18 15:40:42 +0800 | [diff] [blame] | 781 | baseName, exportedHeaderFlags string, isLlndk, isNdk, isVndkExt bool) android.OptionalPath { |
Logan Chien | f351174 | 2017-10-31 18:04:35 +0800 | [diff] [blame] | 782 | |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 783 | outputFile := android.PathForModuleOut(ctx, baseName+".abidiff") |
Jayant Chowdhary | c7434e2 | 2018-05-31 15:42:26 -0700 | [diff] [blame] | 784 | libName := strings.TrimSuffix(baseName, filepath.Ext(baseName)) |
Logan Chien | 6227fed | 2019-02-18 13:12:21 +0800 | [diff] [blame] | 785 | createReferenceDumpFlags := "" |
| 786 | |
Jayant Chowdhary | e449950 | 2018-01-17 13:13:33 -0800 | [diff] [blame] | 787 | localAbiCheckAllowFlags := append([]string(nil), abiCheckAllowFlags...) |
| 788 | if exportedHeaderFlags == "" { |
| 789 | localAbiCheckAllowFlags = append(localAbiCheckAllowFlags, "-advice-only") |
| 790 | } |
Logan Chien | 62f1f94 | 2019-02-18 15:40:42 +0800 | [diff] [blame] | 791 | if isLlndk || isNdk { |
Logan Chien | 6227fed | 2019-02-18 13:12:21 +0800 | [diff] [blame] | 792 | createReferenceDumpFlags = "--llndk" |
Logan Chien | 62f1f94 | 2019-02-18 15:40:42 +0800 | [diff] [blame] | 793 | if isLlndk { |
| 794 | // TODO(b/130324828): "-consider-opaque-types-different" should apply to |
| 795 | // both LLNDK and NDK shared libs. However, a known issue in header-abi-diff |
| 796 | // breaks libaaudio. Remove the if-guard after the issue is fixed. |
| 797 | localAbiCheckAllowFlags = append(localAbiCheckAllowFlags, "-consider-opaque-types-different") |
| 798 | } |
Jayant Chowdhary | c7434e2 | 2018-05-31 15:42:26 -0700 | [diff] [blame] | 799 | } |
Logan Chien | f351174 | 2017-10-31 18:04:35 +0800 | [diff] [blame] | 800 | if isVndkExt { |
| 801 | localAbiCheckAllowFlags = append(localAbiCheckAllowFlags, "-allow-extensions") |
| 802 | } |
| 803 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 804 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 805 | Rule: sAbiDiff, |
| 806 | Description: "header-abi-diff " + outputFile.Base(), |
| 807 | Output: outputFile, |
| 808 | Input: inputDump, |
| 809 | Implicit: referenceDump, |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 810 | Args: map[string]string{ |
Logan Chien | 6227fed | 2019-02-18 13:12:21 +0800 | [diff] [blame] | 811 | "referenceDump": referenceDump.String(), |
| 812 | "libName": libName, |
| 813 | "arch": ctx.Arch().ArchType.Name, |
| 814 | "allowFlags": strings.Join(localAbiCheckAllowFlags, " "), |
| 815 | "createReferenceDumpFlags": createReferenceDumpFlags, |
Jayant Chowdhary | 3e231fd | 2017-02-08 13:45:53 -0800 | [diff] [blame] | 816 | }, |
| 817 | }) |
| 818 | return android.OptionalPathForPath(outputFile) |
| 819 | } |
| 820 | |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 821 | // Generate a rule for extracting a table of contents from a shared library (.so) |
| 822 | func TransformSharedObjectToToc(ctx android.ModuleContext, inputFile android.Path, |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 823 | outputFile android.WritablePath, flags builderFlags) { |
| 824 | |
Colin Cross | b496cfd | 2018-09-10 16:50:05 -0700 | [diff] [blame] | 825 | var format string |
| 826 | var crossCompile string |
| 827 | if ctx.Darwin() { |
| 828 | format = "--macho" |
| 829 | crossCompile = "${config.MacToolPath}" |
| 830 | } else if ctx.Windows() { |
| 831 | format = "--pe" |
| 832 | crossCompile = gccCmd(flags.toolchain, "") |
| 833 | } else { |
| 834 | format = "--elf" |
| 835 | crossCompile = gccCmd(flags.toolchain, "") |
| 836 | } |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 837 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 838 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 839 | Rule: toc, |
| 840 | Description: "generate toc " + inputFile.Base(), |
| 841 | Output: outputFile, |
| 842 | Input: inputFile, |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 843 | Args: map[string]string{ |
| 844 | "crossCompile": crossCompile, |
Colin Cross | b496cfd | 2018-09-10 16:50:05 -0700 | [diff] [blame] | 845 | "format": format, |
Colin Cross | 26c34ed | 2016-09-30 17:10:16 -0700 | [diff] [blame] | 846 | }, |
| 847 | }) |
| 848 | } |
| 849 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 850 | // Generate a rule for compiling multiple .o files to a .o using ld partial linking |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 851 | func TransformObjsToObj(ctx android.ModuleContext, objFiles android.Paths, |
Dan Willemsen | 724ab5d | 2019-09-19 10:50:18 -0700 | [diff] [blame] | 852 | flags builderFlags, outputFile android.WritablePath, deps android.Paths) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 853 | |
Dan Willemsen | 8536d6b | 2018-10-07 20:54:34 -0700 | [diff] [blame] | 854 | ldCmd := "${config.ClangBin}/clang++" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 855 | |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 856 | rule := partialLd |
| 857 | args := map[string]string{ |
| 858 | "ldCmd": ldCmd, |
| 859 | "ldFlags": flags.globalLdFlags + " " + flags.localLdFlags, |
| 860 | } |
| 861 | if ctx.Config().IsEnvTrue("RBE_CXX_LINKS") { |
| 862 | rule = partialLdRE |
| 863 | args["inCommaList"] = strings.Join(objFiles.Strings(), ",") |
Ramy Medhat | c60af15 | 2020-08-28 14:21:55 -0400 | [diff] [blame] | 864 | args["implicitInputs"] = strings.Join(deps.Strings(), ",") |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 865 | } |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 866 | ctx.Build(pctx, android.BuildParams{ |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 867 | Rule: rule, |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 868 | Description: "link " + outputFile.Base(), |
| 869 | Output: outputFile, |
| 870 | Inputs: objFiles, |
Dan Willemsen | 724ab5d | 2019-09-19 10:50:18 -0700 | [diff] [blame] | 871 | Implicits: deps, |
Ramy Medhat | 1154b69 | 2020-04-13 13:21:23 -0400 | [diff] [blame] | 872 | Args: args, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 873 | }) |
| 874 | } |
| 875 | |
Colin Cross | bfae885 | 2015-03-26 14:44:11 -0700 | [diff] [blame] | 876 | // Generate a rule for runing objcopy --prefix-symbols on a binary |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 877 | func TransformBinaryPrefixSymbols(ctx android.ModuleContext, prefix string, inputFile android.Path, |
| 878 | flags builderFlags, outputFile android.WritablePath) { |
Colin Cross | bfae885 | 2015-03-26 14:44:11 -0700 | [diff] [blame] | 879 | |
| 880 | objcopyCmd := gccCmd(flags.toolchain, "objcopy") |
| 881 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 882 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 883 | Rule: prefixSymbols, |
| 884 | Description: "prefix symbols " + outputFile.Base(), |
| 885 | Output: outputFile, |
| 886 | Input: inputFile, |
Colin Cross | bfae885 | 2015-03-26 14:44:11 -0700 | [diff] [blame] | 887 | Args: map[string]string{ |
| 888 | "objcopyCmd": objcopyCmd, |
| 889 | "prefix": prefix, |
| 890 | }, |
| 891 | }) |
| 892 | } |
| 893 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 894 | func TransformStrip(ctx android.ModuleContext, inputFile android.Path, |
| 895 | outputFile android.WritablePath, flags builderFlags) { |
Colin Cross | 665dce9 | 2016-04-28 14:50:03 -0700 | [diff] [blame] | 896 | |
| 897 | crossCompile := gccCmd(flags.toolchain, "") |
| 898 | args := "" |
| 899 | if flags.stripAddGnuDebuglink { |
| 900 | args += " --add-gnu-debuglink" |
| 901 | } |
| 902 | if flags.stripKeepMiniDebugInfo { |
| 903 | args += " --keep-mini-debug-info" |
| 904 | } |
| 905 | if flags.stripKeepSymbols { |
| 906 | args += " --keep-symbols" |
| 907 | } |
Yi Kong | acee27c | 2019-03-29 20:05:14 -0700 | [diff] [blame] | 908 | if flags.stripKeepSymbolsList != "" { |
| 909 | args += " -k" + flags.stripKeepSymbolsList |
| 910 | } |
Christopher Ferris | b43fe7a | 2019-05-17 16:39:54 -0700 | [diff] [blame] | 911 | if flags.stripKeepSymbolsAndDebugFrame { |
| 912 | args += " --keep-symbols-and-debug-frame" |
| 913 | } |
Yi Kong | b5c34d7 | 2018-11-07 16:28:49 -0800 | [diff] [blame] | 914 | if flags.stripUseGnuStrip { |
| 915 | args += " --use-gnu-strip" |
Chih-Hung Hsieh | 30485c9 | 2018-06-04 10:37:43 -0700 | [diff] [blame] | 916 | } |
Colin Cross | 665dce9 | 2016-04-28 14:50:03 -0700 | [diff] [blame] | 917 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 918 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 919 | Rule: strip, |
| 920 | Description: "strip " + outputFile.Base(), |
| 921 | Output: outputFile, |
| 922 | Input: inputFile, |
Colin Cross | 665dce9 | 2016-04-28 14:50:03 -0700 | [diff] [blame] | 923 | Args: map[string]string{ |
| 924 | "crossCompile": crossCompile, |
| 925 | "args": args, |
| 926 | }, |
| 927 | }) |
| 928 | } |
| 929 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 930 | func TransformDarwinStrip(ctx android.ModuleContext, inputFile android.Path, |
| 931 | outputFile android.WritablePath) { |
Colin Cross | b8ecdfe | 2016-05-03 15:10:29 -0700 | [diff] [blame] | 932 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 933 | ctx.Build(pctx, android.BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 934 | Rule: darwinStrip, |
| 935 | Description: "strip " + outputFile.Base(), |
| 936 | Output: outputFile, |
| 937 | Input: inputFile, |
Colin Cross | b8ecdfe | 2016-05-03 15:10:29 -0700 | [diff] [blame] | 938 | }) |
| 939 | } |
| 940 | |
Oliver Nguyen | c743414 | 2019-04-24 14:22:25 -0700 | [diff] [blame] | 941 | func TransformCoverageFilesToZip(ctx android.ModuleContext, |
| 942 | inputs Objects, baseName string) android.OptionalPath { |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 943 | |
| 944 | if len(inputs.coverageFiles) > 0 { |
Oliver Nguyen | c743414 | 2019-04-24 14:22:25 -0700 | [diff] [blame] | 945 | outputFile := android.PathForModuleOut(ctx, baseName+".zip") |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 946 | |
Oliver Nguyen | c743414 | 2019-04-24 14:22:25 -0700 | [diff] [blame] | 947 | ctx.Build(pctx, android.BuildParams{ |
| 948 | Rule: zip, |
| 949 | Description: "zip " + outputFile.Base(), |
| 950 | Inputs: inputs.coverageFiles, |
| 951 | Output: outputFile, |
| 952 | }) |
Dan Willemsen | 581341d | 2017-02-09 16:16:31 -0800 | [diff] [blame] | 953 | |
| 954 | return android.OptionalPathForPath(outputFile) |
| 955 | } |
| 956 | |
| 957 | return android.OptionalPath{} |
| 958 | } |
| 959 | |
Yi Kong | c49c393 | 2019-10-15 02:01:19 -0700 | [diff] [blame] | 960 | func TransformArchiveRepack(ctx android.ModuleContext, inputFile android.Path, |
| 961 | outputFile android.WritablePath, objects []string) { |
| 962 | |
| 963 | ctx.Build(pctx, android.BuildParams{ |
| 964 | Rule: archiveRepack, |
| 965 | Description: "Repack archive " + outputFile.Base(), |
| 966 | Output: outputFile, |
| 967 | Input: inputFile, |
| 968 | Args: map[string]string{ |
| 969 | "objects": strings.Join(objects, " "), |
| 970 | }, |
| 971 | }) |
| 972 | } |
| 973 | |
Colin Cross | b98c8b0 | 2016-07-29 13:44:28 -0700 | [diff] [blame] | 974 | func gccCmd(toolchain config.Toolchain, cmd string) string { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 975 | return filepath.Join(toolchain.GccRoot(), "bin", toolchain.GccTriple()+"-"+cmd) |
| 976 | } |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 977 | |
Colin Cross | 5b52959 | 2017-05-09 13:34:34 -0700 | [diff] [blame] | 978 | func splitListForSize(list android.Paths, limit int) (lists []android.Paths, err error) { |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 979 | var i int |
| 980 | |
| 981 | start := 0 |
| 982 | bytes := 0 |
| 983 | for i = range list { |
Colin Cross | 5b52959 | 2017-05-09 13:34:34 -0700 | [diff] [blame] | 984 | l := len(list[i].String()) |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 985 | if l > limit { |
| 986 | return nil, fmt.Errorf("list element greater than size limit (%d)", limit) |
| 987 | } |
| 988 | if bytes+l > limit { |
| 989 | lists = append(lists, list[start:i]) |
| 990 | start = i |
| 991 | bytes = 0 |
| 992 | } |
| 993 | bytes += l + 1 // count a space between each list element |
| 994 | } |
| 995 | |
| 996 | lists = append(lists, list[start:]) |
| 997 | |
| 998 | totalLen := 0 |
| 999 | for _, l := range lists { |
| 1000 | totalLen += len(l) |
| 1001 | } |
| 1002 | if totalLen != len(list) { |
| 1003 | panic(fmt.Errorf("Failed breaking up list, %d != %d", len(list), totalLen)) |
| 1004 | } |
| 1005 | return lists, nil |
| 1006 | } |