blob: 6db508d64105566dbc24582e05c3974172220de9 [file] [log] [blame]
Ivan Lozanoffee3342019-08-27 12:03:00 -07001// Copyright 2019 The Android Open Source Project
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
15package rust
16
17import (
Ivan Lozano1776a2a2020-11-11 10:59:52 -050018 "path/filepath"
Ivan Lozanoffee3342019-08-27 12:03:00 -070019 "strings"
20
21 "github.com/google/blueprint"
22
23 "android/soong/android"
Thiébaud Weksteen71512f32020-11-03 15:17:51 +010024 "android/soong/rust/config"
Ivan Lozanoffee3342019-08-27 12:03:00 -070025)
26
27var (
28 _ = pctx.SourcePathVariable("rustcCmd", "${config.RustBin}/rustc")
29 rustc = pctx.AndroidStaticRule("rustc",
30 blueprint.RuleParams{
Ivan Lozano43845682020-07-09 21:03:28 -040031 Command: "$envVars $rustcCmd " +
Ivan Lozanoffee3342019-08-27 12:03:00 -070032 "-C linker=${config.RustLinker} " +
Ivan Lozanof1c84332019-09-20 11:00:37 -070033 "-C link-args=\"${crtBegin} ${config.RustLinkerArgs} ${linkFlags} ${crtEnd}\" " +
Chih-Hung Hsieh29aa9fd2020-08-13 15:46:21 -070034 "--emit link -o $out --emit dep-info=$out.d.raw $in ${libFlags} $rustcFlags" +
35 " && grep \"^$out:\" $out.d.raw > $out.d",
Ivan Lozanoffee3342019-08-27 12:03:00 -070036 CommandDeps: []string{"$rustcCmd"},
Ivan Lozanob2df9f82019-11-05 12:16:46 -080037 // Rustc deps-info writes out make compatible dep files: https://github.com/rust-lang/rust/issues/7633
Chih-Hung Hsieh29aa9fd2020-08-13 15:46:21 -070038 // Rustc emits unneeded dependency lines for the .d and input .rs files.
39 // Those extra lines cause ninja warning:
40 // "warning: depfile has multiple output paths"
41 // For ninja, we keep/grep only the dependency rule for the rust $out file.
Ivan Lozanob2df9f82019-11-05 12:16:46 -080042 Deps: blueprint.DepsGCC,
43 Depfile: "$out.d",
Ivan Lozanoffee3342019-08-27 12:03:00 -070044 },
Ivan Lozano43845682020-07-09 21:03:28 -040045 "rustcFlags", "linkFlags", "libFlags", "crtBegin", "crtEnd", "envVars")
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040046
Dan Albert06feee92021-03-19 15:06:02 -070047 _ = pctx.SourcePathVariable("rustdocCmd", "${config.RustBin}/rustdoc")
48 rustdoc = pctx.AndroidStaticRule("rustdoc",
49 blueprint.RuleParams{
Dan Albertb433bf72021-04-27 17:12:02 -070050 Command: "$envVars $rustdocCmd $rustdocFlags $in -o $outDir && " +
Dan Albert06feee92021-03-19 15:06:02 -070051 "touch $out",
52 CommandDeps: []string{"$rustdocCmd"},
53 },
54 "rustdocFlags", "outDir", "envVars")
55
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020056 _ = pctx.SourcePathVariable("clippyCmd", "${config.RustBin}/clippy-driver")
57 clippyDriver = pctx.AndroidStaticRule("clippy",
58 blueprint.RuleParams{
Ivan Lozanobae62be2020-07-21 13:28:27 -040059 Command: "$envVars $clippyCmd " +
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020060 // Because clippy-driver uses rustc as backend, we need to have some output even during the linting.
61 // Use the metadata output as it has the smallest footprint.
Thiébaud Weksteen94c83252021-04-07 16:00:19 +020062 "--emit metadata -o $out --emit dep-info=$out.d.raw $in ${libFlags} " +
63 "$rustcFlags $clippyFlags" +
64 " && grep \"^$out:\" $out.d.raw > $out.d",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020065 CommandDeps: []string{"$clippyCmd"},
Thiébaud Weksteen94c83252021-04-07 16:00:19 +020066 Deps: blueprint.DepsGCC,
67 Depfile: "$out.d",
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020068 },
Ivan Lozanobae62be2020-07-21 13:28:27 -040069 "rustcFlags", "libFlags", "clippyFlags", "envVars")
Thiébaud Weksteen92f703b2020-06-22 13:28:02 +020070
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040071 zip = pctx.AndroidStaticRule("zip",
72 blueprint.RuleParams{
73 Command: "cat $out.rsp | tr ' ' '\\n' | tr -d \\' | sort -u > ${out}.tmp && ${SoongZipCmd} -o ${out} -C $$OUT_DIR -l ${out}.tmp",
74 CommandDeps: []string{"${SoongZipCmd}"},
75 Rspfile: "$out.rsp",
76 RspfileContent: "$in",
77 })
Ivan Lozano43845682020-07-09 21:03:28 -040078
79 cp = pctx.AndroidStaticRule("cp",
80 blueprint.RuleParams{
81 Command: "cp `cat $outDir.rsp` $outDir",
82 Rspfile: "${outDir}.rsp",
83 RspfileContent: "$in",
84 },
85 "outDir")
Ivan Lozanoffee3342019-08-27 12:03:00 -070086)
87
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040088type buildOutput struct {
Joel Galensonfa049382021-01-14 16:03:18 -080089 outputFile android.Path
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040090}
Ivan Lozanoffee3342019-08-27 12:03:00 -070091
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -040092func init() {
93 pctx.HostBinToolVariable("SoongZipCmd", "soong_zip")
Ivan Lozanoffee3342019-08-27 12:03:00 -070094}
95
Thiébaud Weksteen1f7f70f2020-06-24 11:32:48 +020096func TransformSrcToBinary(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
Dan Albert06feee92021-03-19 15:06:02 -070097 outputFile android.WritablePath) buildOutput {
Ivan Lozano6cd99e62020-02-11 08:24:25 -050098 flags.GlobalRustFlags = append(flags.GlobalRustFlags, "-C lto")
Ivan Lozano31b095d2019-11-20 10:14:33 -080099
Dan Albert06feee92021-03-19 15:06:02 -0700100 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "bin")
Ivan Lozanoffee3342019-08-27 12:03:00 -0700101}
102
Thiébaud Weksteen1f7f70f2020-06-24 11:32:48 +0200103func TransformSrctoRlib(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
Dan Albert06feee92021-03-19 15:06:02 -0700104 outputFile android.WritablePath) buildOutput {
105 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "rlib")
Ivan Lozanoffee3342019-08-27 12:03:00 -0700106}
107
Thiébaud Weksteen1f7f70f2020-06-24 11:32:48 +0200108func TransformSrctoDylib(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
Dan Albert06feee92021-03-19 15:06:02 -0700109 outputFile android.WritablePath) buildOutput {
110 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "dylib")
Ivan Lozanoffee3342019-08-27 12:03:00 -0700111}
112
Thiébaud Weksteen1f7f70f2020-06-24 11:32:48 +0200113func TransformSrctoStatic(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
Dan Albert06feee92021-03-19 15:06:02 -0700114 outputFile android.WritablePath) buildOutput {
Ivan Lozano6cd99e62020-02-11 08:24:25 -0500115 flags.GlobalRustFlags = append(flags.GlobalRustFlags, "-C lto")
Dan Albert06feee92021-03-19 15:06:02 -0700116 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "staticlib")
Ivan Lozano52767be2019-10-18 14:49:46 -0700117}
118
Thiébaud Weksteen1f7f70f2020-06-24 11:32:48 +0200119func TransformSrctoShared(ctx ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags,
Dan Albert06feee92021-03-19 15:06:02 -0700120 outputFile android.WritablePath) buildOutput {
Ivan Lozano6cd99e62020-02-11 08:24:25 -0500121 flags.GlobalRustFlags = append(flags.GlobalRustFlags, "-C lto")
Dan Albert06feee92021-03-19 15:06:02 -0700122 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "cdylib")
Ivan Lozano52767be2019-10-18 14:49:46 -0700123}
124
Thiébaud Weksteen1f7f70f2020-06-24 11:32:48 +0200125func TransformSrctoProcMacro(ctx ModuleContext, mainSrc android.Path, deps PathDeps,
Dan Albert06feee92021-03-19 15:06:02 -0700126 flags Flags, outputFile android.WritablePath) buildOutput {
127 return transformSrctoCrate(ctx, mainSrc, deps, flags, outputFile, "proc-macro")
Ivan Lozanoffee3342019-08-27 12:03:00 -0700128}
129
130func rustLibsToPaths(libs RustLibraries) android.Paths {
131 var paths android.Paths
132 for _, lib := range libs {
133 paths = append(paths, lib.Path)
134 }
135 return paths
136}
137
Dan Albert06feee92021-03-19 15:06:02 -0700138func makeLibFlags(deps PathDeps) []string {
139 var libFlags []string
140
141 // Collect library/crate flags
142 for _, lib := range deps.RLibs {
143 libFlags = append(libFlags, "--extern "+lib.CrateName+"="+lib.Path.String())
144 }
145 for _, lib := range deps.DyLibs {
146 libFlags = append(libFlags, "--extern "+lib.CrateName+"="+lib.Path.String())
147 }
148 for _, proc_macro := range deps.ProcMacros {
149 libFlags = append(libFlags, "--extern "+proc_macro.CrateName+"="+proc_macro.Path.String())
150 }
151
152 for _, path := range deps.linkDirs {
153 libFlags = append(libFlags, "-L "+path)
154 }
155
156 return libFlags
157}
158
159func rustEnvVars(ctx ModuleContext, deps PathDeps) []string {
160 var envVars []string
161
162 // libstd requires a specific environment variable to be set. This is
163 // not officially documented and may be removed in the future. See
164 // https://github.com/rust-lang/rust/blob/master/library/std/src/env.rs#L866.
165 if ctx.RustModule().CrateName() == "std" {
166 envVars = append(envVars, "STD_ENV_ARCH="+config.StdEnvArch[ctx.RustModule().Arch().ArchType])
167 }
168
169 if len(deps.SrcDeps) > 0 {
170 moduleGenDir := ctx.RustModule().compiler.CargoOutDir()
171 // We must calculate an absolute path for OUT_DIR since Rust's include! macro (which normally consumes this)
172 // assumes that paths are relative to the source file.
173 var outDirPrefix string
174 if !filepath.IsAbs(moduleGenDir.String()) {
175 // If OUT_DIR is not absolute, we use $$PWD to generate an absolute path (os.Getwd() returns '/')
176 outDirPrefix = "$$PWD/"
177 } else {
178 // If OUT_DIR is absolute, then moduleGenDir will be an absolute path, so we don't need to set this to anything.
179 outDirPrefix = ""
180 }
181 envVars = append(envVars, "OUT_DIR="+filepath.Join(outDirPrefix, moduleGenDir.String()))
182 }
183
184 return envVars
185}
186
Thiébaud Weksteen1f7f70f2020-06-24 11:32:48 +0200187func transformSrctoCrate(ctx ModuleContext, main android.Path, deps PathDeps, flags Flags,
Dan Albert06feee92021-03-19 15:06:02 -0700188 outputFile android.WritablePath, crate_type string) buildOutput {
Ivan Lozanoffee3342019-08-27 12:03:00 -0700189
190 var inputs android.Paths
Ivan Lozanob2df9f82019-11-05 12:16:46 -0800191 var implicits android.Paths
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400192 var output buildOutput
Dan Albert06feee92021-03-19 15:06:02 -0700193 var rustcFlags, linkFlags []string
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400194 var implicitOutputs android.WritablePaths
195
196 output.outputFile = outputFile
Jaewoong Jung18aefc12020-12-21 09:11:10 -0800197 crateName := ctx.RustModule().CrateName()
Thiébaud Weksteen1f7f70f2020-06-24 11:32:48 +0200198 targetTriple := ctx.toolchain().RustTriple()
Ivan Lozanoffee3342019-08-27 12:03:00 -0700199
Dan Albert06feee92021-03-19 15:06:02 -0700200 envVars := rustEnvVars(ctx, deps)
Thiébaud Weksteen71512f32020-11-03 15:17:51 +0100201
Ivan Lozanoffee3342019-08-27 12:03:00 -0700202 inputs = append(inputs, main)
203
204 // Collect rustc flags
Ivan Lozanof1c84332019-09-20 11:00:37 -0700205 rustcFlags = append(rustcFlags, flags.GlobalRustFlags...)
Ivan Lozanoffee3342019-08-27 12:03:00 -0700206 rustcFlags = append(rustcFlags, flags.RustFlags...)
207 rustcFlags = append(rustcFlags, "--crate-type="+crate_type)
Jaewoong Jung18aefc12020-12-21 09:11:10 -0800208 if crateName != "" {
209 rustcFlags = append(rustcFlags, "--crate-name="+crateName)
Ivan Lozanoad8b18b2019-10-31 19:38:29 -0700210 }
Ivan Lozanoffee3342019-08-27 12:03:00 -0700211 if targetTriple != "" {
212 rustcFlags = append(rustcFlags, "--target="+targetTriple)
Ivan Lozanof1c84332019-09-20 11:00:37 -0700213 linkFlags = append(linkFlags, "-target "+targetTriple)
Ivan Lozanoffee3342019-08-27 12:03:00 -0700214 }
Matthew Maurerbb3add12020-06-25 09:34:12 -0700215
216 // Suppress an implicit sysroot
217 rustcFlags = append(rustcFlags, "--sysroot=/dev/null")
218
Ivan Lozanof1c84332019-09-20 11:00:37 -0700219 // Collect linker flags
220 linkFlags = append(linkFlags, flags.GlobalLinkFlags...)
221 linkFlags = append(linkFlags, flags.LinkFlags...)
Ivan Lozanoffee3342019-08-27 12:03:00 -0700222
Dan Albert06feee92021-03-19 15:06:02 -0700223 libFlags := makeLibFlags(deps)
Ivan Lozanoffee3342019-08-27 12:03:00 -0700224
225 // Collect dependencies
Ivan Lozanob2df9f82019-11-05 12:16:46 -0800226 implicits = append(implicits, rustLibsToPaths(deps.RLibs)...)
227 implicits = append(implicits, rustLibsToPaths(deps.DyLibs)...)
228 implicits = append(implicits, rustLibsToPaths(deps.ProcMacros)...)
229 implicits = append(implicits, deps.StaticLibs...)
Ivan Lozanoec6e9912021-01-21 15:23:29 -0500230 implicits = append(implicits, deps.SharedLibDeps...)
Ivan Lozano9d74a522020-12-01 09:25:22 -0500231 implicits = append(implicits, deps.srcProviderFiles...)
Ivan Lozano43845682020-07-09 21:03:28 -0400232
Ivan Lozanob2df9f82019-11-05 12:16:46 -0800233 if deps.CrtBegin.Valid() {
234 implicits = append(implicits, deps.CrtBegin.Path(), deps.CrtEnd.Path())
Ivan Lozanof1c84332019-09-20 11:00:37 -0700235 }
Ivan Lozanoffee3342019-08-27 12:03:00 -0700236
Ivan Lozano43845682020-07-09 21:03:28 -0400237 if len(deps.SrcDeps) > 0 {
Thiébaud Weksteenee6a89b2021-02-25 16:30:57 +0100238 moduleGenDir := ctx.RustModule().compiler.CargoOutDir()
Ivan Lozano43845682020-07-09 21:03:28 -0400239 var outputs android.WritablePaths
240
241 for _, genSrc := range deps.SrcDeps {
Ivan Lozano10735d92020-07-22 09:14:47 -0400242 if android.SuffixInList(outputs.Strings(), genSubDir+genSrc.Base()) {
Ivan Lozano43845682020-07-09 21:03:28 -0400243 ctx.PropertyErrorf("srcs",
244 "multiple source providers generate the same filename output: "+genSrc.Base())
245 }
Ivan Lozano10735d92020-07-22 09:14:47 -0400246 outputs = append(outputs, android.PathForModuleOut(ctx, genSubDir+genSrc.Base()))
Ivan Lozano43845682020-07-09 21:03:28 -0400247 }
248
249 ctx.Build(pctx, android.BuildParams{
250 Rule: cp,
Thiébaud Weksteenee6a89b2021-02-25 16:30:57 +0100251 Description: "cp " + moduleGenDir.Path().Rel(),
Ivan Lozano43845682020-07-09 21:03:28 -0400252 Outputs: outputs,
253 Inputs: deps.SrcDeps,
254 Args: map[string]string{
255 "outDir": moduleGenDir.String(),
256 },
257 })
258 implicits = append(implicits, outputs.Paths()...)
Ivan Lozano43845682020-07-09 21:03:28 -0400259 }
260
Thiébaud Weksteen9997ea72021-02-22 10:52:22 +0100261 envVars = append(envVars, "ANDROID_RUST_VERSION="+config.RustDefaultVersion)
262
Ivan Lozanobae62be2020-07-21 13:28:27 -0400263 if flags.Clippy {
264 clippyFile := android.PathForModuleOut(ctx, outputFile.Base()+".clippy")
265 ctx.Build(pctx, android.BuildParams{
266 Rule: clippyDriver,
267 Description: "clippy " + main.Rel(),
268 Output: clippyFile,
269 ImplicitOutputs: nil,
270 Inputs: inputs,
271 Implicits: implicits,
272 Args: map[string]string{
273 "rustcFlags": strings.Join(rustcFlags, " "),
274 "libFlags": strings.Join(libFlags, " "),
275 "clippyFlags": strings.Join(flags.ClippyFlags, " "),
276 "envVars": strings.Join(envVars, " "),
277 },
278 })
279 // Declare the clippy build as an implicit dependency of the original crate.
280 implicits = append(implicits, clippyFile)
281 }
282
Ivan Lozanoffee3342019-08-27 12:03:00 -0700283 ctx.Build(pctx, android.BuildParams{
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400284 Rule: rustc,
285 Description: "rustc " + main.Rel(),
286 Output: outputFile,
287 ImplicitOutputs: implicitOutputs,
288 Inputs: inputs,
289 Implicits: implicits,
Ivan Lozanoffee3342019-08-27 12:03:00 -0700290 Args: map[string]string{
291 "rustcFlags": strings.Join(rustcFlags, " "),
Ivan Lozanof1c84332019-09-20 11:00:37 -0700292 "linkFlags": strings.Join(linkFlags, " "),
Ivan Lozanoffee3342019-08-27 12:03:00 -0700293 "libFlags": strings.Join(libFlags, " "),
Ivan Lozanob2df9f82019-11-05 12:16:46 -0800294 "crtBegin": deps.CrtBegin.String(),
295 "crtEnd": deps.CrtEnd.String(),
Ivan Lozano43845682020-07-09 21:03:28 -0400296 "envVars": strings.Join(envVars, " "),
Ivan Lozanoffee3342019-08-27 12:03:00 -0700297 },
298 })
299
Ivan Lozanoa0cd8f92020-04-09 09:56:02 -0400300 return output
301}
Dan Albert06feee92021-03-19 15:06:02 -0700302
303func Rustdoc(ctx ModuleContext, main android.Path, deps PathDeps,
304 flags Flags) android.ModuleOutPath {
305
306 rustdocFlags := append([]string{}, flags.RustdocFlags...)
307 rustdocFlags = append(rustdocFlags, "--sysroot=/dev/null")
308
Dan Albertb433bf72021-04-27 17:12:02 -0700309 // Build an index for all our crates. -Z unstable options is required to use
310 // this flag.
311 rustdocFlags = append(rustdocFlags, "-Z", "unstable-options", "--enable-index-page")
312
Dan Albert06feee92021-03-19 15:06:02 -0700313 targetTriple := ctx.toolchain().RustTriple()
314
315 // Collect rustc flags
316 if targetTriple != "" {
317 rustdocFlags = append(rustdocFlags, "--target="+targetTriple)
318 }
319
320 crateName := ctx.RustModule().CrateName()
Dan Albertb433bf72021-04-27 17:12:02 -0700321 rustdocFlags = append(rustdocFlags, "--crate-name "+crateName)
Dan Albert06feee92021-03-19 15:06:02 -0700322
323 rustdocFlags = append(rustdocFlags, makeLibFlags(deps)...)
324 docTimestampFile := android.PathForModuleOut(ctx, "rustdoc.timestamp")
Dan Albertb433bf72021-04-27 17:12:02 -0700325
326 // Yes, the same out directory is used simultaneously by all rustdoc builds.
327 // This is what cargo does. The docs for individual crates get generated to
328 // a subdirectory named for the crate, and rustdoc synchronizes writes to
329 // shared pieces like the index and search data itself.
330 // https://github.com/rust-lang/rust/blob/master/src/librustdoc/html/render/write_shared.rs#L144-L146
331 docDir := android.PathForOutput(ctx, "rustdoc")
Dan Albert06feee92021-03-19 15:06:02 -0700332
333 ctx.Build(pctx, android.BuildParams{
334 Rule: rustdoc,
335 Description: "rustdoc " + main.Rel(),
336 Output: docTimestampFile,
337 Input: main,
338 Implicit: ctx.RustModule().unstrippedOutputFile.Path(),
339 Args: map[string]string{
340 "rustdocFlags": strings.Join(rustdocFlags, " "),
341 "outDir": docDir.String(),
342 "envVars": strings.Join(rustEnvVars(ctx, deps), " "),
343 },
344 })
345
346 return docTimestampFile
347}