2019-08-27 21:03:00 +02:00
|
|
|
// Copyright 2019 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// 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 rust
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/google/blueprint"
|
|
|
|
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
_ = pctx.SourcePathVariable("rustcCmd", "${config.RustBin}/rustc")
|
|
|
|
rustc = pctx.AndroidStaticRule("rustc",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: "$rustcCmd " +
|
|
|
|
"-C linker=${config.RustLinker} " +
|
2019-09-20 20:00:37 +02:00
|
|
|
"-C link-args=\"${crtBegin} ${config.RustLinkerArgs} ${linkFlags} ${crtEnd}\" " +
|
2019-09-30 07:38:31 +02:00
|
|
|
"--emit link -o $out --emit dep-info=$out.d $in ${libFlags} $rustcFlags",
|
2019-08-27 21:03:00 +02:00
|
|
|
CommandDeps: []string{"$rustcCmd"},
|
|
|
|
Depfile: "$out.d",
|
|
|
|
Deps: blueprint.DepsGCC, // Rustc deps-info writes out make compatible dep files: https://github.com/rust-lang/rust/issues/7633
|
|
|
|
},
|
2019-09-20 20:00:37 +02:00
|
|
|
"rustcFlags", "linkFlags", "libFlags", "crtBegin", "crtEnd")
|
2019-08-27 21:03:00 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TransformSrcToBinary(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, outputFile android.WritablePath, includeDirs []string) {
|
2019-09-20 20:00:37 +02:00
|
|
|
transformSrctoCrate(ctx, mainSrc, deps.RLibs, deps.DyLibs, deps.ProcMacros, deps.StaticLibs, deps.SharedLibs, deps.CrtBegin, deps.CrtEnd, flags, outputFile, "bin", includeDirs)
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TransformSrctoRlib(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, outputFile android.WritablePath, includeDirs []string) {
|
2019-09-20 20:00:37 +02:00
|
|
|
transformSrctoCrate(ctx, mainSrc, deps.RLibs, deps.DyLibs, deps.ProcMacros, deps.StaticLibs, deps.SharedLibs, deps.CrtBegin, deps.CrtEnd, flags, outputFile, "rlib", includeDirs)
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func TransformSrctoDylib(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, outputFile android.WritablePath, includeDirs []string) {
|
2019-09-20 20:00:37 +02:00
|
|
|
transformSrctoCrate(ctx, mainSrc, deps.RLibs, deps.DyLibs, deps.ProcMacros, deps.StaticLibs, deps.SharedLibs, deps.CrtBegin, deps.CrtEnd, flags, outputFile, "dylib", includeDirs)
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
2019-10-18 23:49:46 +02:00
|
|
|
func TransformSrctoStatic(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, outputFile android.WritablePath, includeDirs []string) {
|
|
|
|
transformSrctoCrate(ctx, mainSrc, deps.RLibs, deps.DyLibs, deps.ProcMacros, deps.StaticLibs, deps.SharedLibs, deps.CrtBegin, deps.CrtEnd, flags, outputFile, "staticlib", includeDirs)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TransformSrctoShared(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, outputFile android.WritablePath, includeDirs []string) {
|
|
|
|
transformSrctoCrate(ctx, mainSrc, deps.RLibs, deps.DyLibs, deps.ProcMacros, deps.StaticLibs, deps.SharedLibs, deps.CrtBegin, deps.CrtEnd, flags, outputFile, "cdylib", includeDirs)
|
|
|
|
}
|
|
|
|
|
2019-08-27 21:03:00 +02:00
|
|
|
func TransformSrctoProcMacro(ctx android.ModuleContext, mainSrc android.Path, deps PathDeps, flags Flags, outputFile android.WritablePath, includeDirs []string) {
|
2019-09-20 20:00:37 +02:00
|
|
|
transformSrctoCrate(ctx, mainSrc, deps.RLibs, deps.DyLibs, deps.ProcMacros, deps.StaticLibs, deps.SharedLibs, deps.CrtBegin, deps.CrtEnd, flags, outputFile, "proc-macro", includeDirs)
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func rustLibsToPaths(libs RustLibraries) android.Paths {
|
|
|
|
var paths android.Paths
|
|
|
|
for _, lib := range libs {
|
|
|
|
paths = append(paths, lib.Path)
|
|
|
|
}
|
|
|
|
return paths
|
|
|
|
}
|
|
|
|
|
|
|
|
func transformSrctoCrate(ctx android.ModuleContext, main android.Path,
|
2019-09-20 20:00:37 +02:00
|
|
|
rlibs, dylibs, proc_macros RustLibraries, static_libs, shared_libs android.Paths, crtBegin, crtEnd android.OptionalPath, flags Flags, outputFile android.WritablePath, crate_type string, includeDirs []string) {
|
2019-08-27 21:03:00 +02:00
|
|
|
|
|
|
|
var inputs android.Paths
|
|
|
|
var deps android.Paths
|
2019-09-20 20:00:37 +02:00
|
|
|
var libFlags, rustcFlags, linkFlags []string
|
2019-08-27 21:03:00 +02:00
|
|
|
crate_name := ctx.(ModuleContext).CrateName()
|
2019-09-23 19:10:40 +02:00
|
|
|
targetTriple := ctx.(ModuleContext).toolchain().RustTriple()
|
2019-08-27 21:03:00 +02:00
|
|
|
|
|
|
|
inputs = append(inputs, main)
|
|
|
|
|
|
|
|
// Collect rustc flags
|
2019-09-20 20:00:37 +02:00
|
|
|
rustcFlags = append(rustcFlags, flags.GlobalRustFlags...)
|
2019-08-27 21:03:00 +02:00
|
|
|
rustcFlags = append(rustcFlags, flags.RustFlags...)
|
|
|
|
rustcFlags = append(rustcFlags, "--crate-type="+crate_type)
|
2019-11-01 03:38:29 +01:00
|
|
|
if crate_name != "" {
|
|
|
|
rustcFlags = append(rustcFlags, "--crate-name="+crate_name)
|
|
|
|
}
|
2019-08-27 21:03:00 +02:00
|
|
|
if targetTriple != "" {
|
|
|
|
rustcFlags = append(rustcFlags, "--target="+targetTriple)
|
2019-09-20 20:00:37 +02:00
|
|
|
linkFlags = append(linkFlags, "-target "+targetTriple)
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
2019-09-20 20:00:37 +02:00
|
|
|
// Collect linker flags
|
|
|
|
linkFlags = append(linkFlags, flags.GlobalLinkFlags...)
|
|
|
|
linkFlags = append(linkFlags, flags.LinkFlags...)
|
2019-08-27 21:03:00 +02:00
|
|
|
|
|
|
|
// Collect library/crate flags
|
|
|
|
for _, lib := range rlibs {
|
|
|
|
libFlags = append(libFlags, "--extern "+lib.CrateName+"="+lib.Path.String())
|
|
|
|
}
|
|
|
|
for _, lib := range dylibs {
|
|
|
|
libFlags = append(libFlags, "--extern "+lib.CrateName+"="+lib.Path.String())
|
|
|
|
}
|
|
|
|
for _, proc_macro := range proc_macros {
|
|
|
|
libFlags = append(libFlags, "--extern "+proc_macro.CrateName+"="+proc_macro.Path.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, path := range includeDirs {
|
|
|
|
libFlags = append(libFlags, "-L "+path)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect dependencies
|
|
|
|
deps = append(deps, rustLibsToPaths(rlibs)...)
|
|
|
|
deps = append(deps, rustLibsToPaths(dylibs)...)
|
|
|
|
deps = append(deps, rustLibsToPaths(proc_macros)...)
|
|
|
|
deps = append(deps, static_libs...)
|
|
|
|
deps = append(deps, shared_libs...)
|
2019-09-20 20:00:37 +02:00
|
|
|
if crtBegin.Valid() {
|
|
|
|
deps = append(deps, crtBegin.Path(), crtEnd.Path())
|
|
|
|
}
|
2019-08-27 21:03:00 +02:00
|
|
|
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: rustc,
|
|
|
|
Description: "rustc " + main.Rel(),
|
|
|
|
Output: outputFile,
|
|
|
|
Inputs: inputs,
|
|
|
|
Implicits: deps,
|
|
|
|
Args: map[string]string{
|
|
|
|
"rustcFlags": strings.Join(rustcFlags, " "),
|
2019-09-20 20:00:37 +02:00
|
|
|
"linkFlags": strings.Join(linkFlags, " "),
|
2019-08-27 21:03:00 +02:00
|
|
|
"libFlags": strings.Join(libFlags, " "),
|
2019-09-20 20:00:37 +02:00
|
|
|
"crtBegin": crtBegin.String(),
|
|
|
|
"crtEnd": crtEnd.String(),
|
2019-08-27 21:03:00 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|