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 (
|
|
|
|
"android/soong/android"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
android.RegisterModuleType("rust_binary", RustBinaryFactory)
|
|
|
|
android.RegisterModuleType("rust_binary_host", RustBinaryHostFactory)
|
|
|
|
}
|
|
|
|
|
|
|
|
type BinaryCompilerProperties struct {
|
2020-10-02 16:03:23 +02:00
|
|
|
// Builds this binary as a static binary. Implies prefer_rlib true.
|
|
|
|
//
|
|
|
|
// Static executables currently only support for bionic targets. Non-bionic targets will not produce a fully static
|
|
|
|
// binary, but will still implicitly imply prefer_rlib true.
|
|
|
|
Static_executable *bool `android:"arch_variant"`
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
2021-11-01 14:19:45 +01:00
|
|
|
type binaryInterface interface {
|
|
|
|
binary() bool
|
|
|
|
staticallyLinked() bool
|
2021-11-01 15:27:54 +01:00
|
|
|
testBinary() bool
|
2021-11-01 14:19:45 +01:00
|
|
|
}
|
|
|
|
|
2019-08-27 21:03:00 +02:00
|
|
|
type binaryDecorator struct {
|
|
|
|
*baseCompiler
|
2020-08-27 13:48:36 +02:00
|
|
|
stripper Stripper
|
2019-08-27 21:03:00 +02:00
|
|
|
|
2020-06-16 16:26:57 +02:00
|
|
|
Properties BinaryCompilerProperties
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ compiler = (*binaryDecorator)(nil)
|
|
|
|
|
|
|
|
// rust_binary produces a binary that is runnable on a device.
|
|
|
|
func RustBinaryFactory() android.Module {
|
|
|
|
module, _ := NewRustBinary(android.HostAndDeviceSupported)
|
|
|
|
return module.Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
func RustBinaryHostFactory() android.Module {
|
|
|
|
module, _ := NewRustBinary(android.HostSupported)
|
|
|
|
return module.Init()
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRustBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) {
|
|
|
|
module := newModule(hod, android.MultilibFirst)
|
|
|
|
|
|
|
|
binary := &binaryDecorator{
|
2019-12-13 04:36:05 +01:00
|
|
|
baseCompiler: NewBaseCompiler("bin", "", InstallInSystem),
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module.compiler = binary
|
|
|
|
|
|
|
|
return module, binary
|
|
|
|
}
|
|
|
|
|
|
|
|
func (binary *binaryDecorator) compilerFlags(ctx ModuleContext, flags Flags) Flags {
|
|
|
|
flags = binary.baseCompiler.compilerFlags(ctx, flags)
|
2019-09-20 20:00:37 +02:00
|
|
|
|
|
|
|
if ctx.toolchain().Bionic() {
|
2019-11-05 21:16:46 +01:00
|
|
|
// no-undefined-version breaks dylib compilation since __rust_*alloc* functions aren't defined,
|
|
|
|
// but we can apply this to binaries.
|
2019-09-20 20:00:37 +02:00
|
|
|
flags.LinkFlags = append(flags.LinkFlags,
|
2023-10-02 20:39:17 +02:00
|
|
|
"-Wl,--gc-sections",
|
2019-09-20 20:00:37 +02:00
|
|
|
"-Wl,-z,nocopyreloc",
|
|
|
|
"-Wl,--no-undefined-version")
|
2020-10-02 16:03:23 +02:00
|
|
|
|
|
|
|
if Bool(binary.Properties.Static_executable) {
|
|
|
|
flags.LinkFlags = append(flags.LinkFlags, "-static")
|
|
|
|
flags.RustFlags = append(flags.RustFlags, "-C relocation-model=static")
|
|
|
|
}
|
2019-09-20 20:00:37 +02:00
|
|
|
}
|
|
|
|
|
2019-08-27 21:03:00 +02:00
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
|
|
|
func (binary *binaryDecorator) compilerDeps(ctx DepsContext, deps Deps) Deps {
|
|
|
|
deps = binary.baseCompiler.compilerDeps(ctx, deps)
|
|
|
|
|
2022-01-24 05:48:36 +01:00
|
|
|
static := Bool(binary.Properties.Static_executable)
|
2019-09-20 20:00:37 +02:00
|
|
|
if ctx.toolchain().Bionic() {
|
2022-01-24 05:48:36 +01:00
|
|
|
deps = bionicDeps(ctx, deps, static)
|
|
|
|
if static {
|
2022-01-24 05:46:16 +01:00
|
|
|
deps.CrtBegin = []string{"crtbegin_static"}
|
2020-10-02 16:03:23 +02:00
|
|
|
} else {
|
2022-01-24 05:48:36 +01:00
|
|
|
deps.CrtBegin = []string{"crtbegin_dynamic"}
|
|
|
|
}
|
|
|
|
deps.CrtEnd = []string{"crtend_android"}
|
|
|
|
} else if ctx.Os() == android.LinuxMusl {
|
|
|
|
deps = muslDeps(ctx, deps, static)
|
|
|
|
if static {
|
|
|
|
deps.CrtBegin = []string{"libc_musl_crtbegin_static"}
|
|
|
|
} else {
|
2022-10-01 00:11:47 +02:00
|
|
|
deps.CrtBegin = []string{"libc_musl_crtbegin_dynamic"}
|
2020-10-02 16:03:23 +02:00
|
|
|
}
|
2022-01-24 05:46:16 +01:00
|
|
|
deps.CrtEnd = []string{"libc_musl_crtend"}
|
2019-09-20 20:00:37 +02:00
|
|
|
}
|
|
|
|
|
2019-08-27 21:03:00 +02:00
|
|
|
return deps
|
|
|
|
}
|
|
|
|
|
|
|
|
func (binary *binaryDecorator) compilerProps() []interface{} {
|
|
|
|
return append(binary.baseCompiler.compilerProps(),
|
2020-08-27 13:48:36 +02:00
|
|
|
&binary.Properties,
|
|
|
|
&binary.stripper.StripProperties)
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
|
|
|
|
2020-04-09 15:56:02 +02:00
|
|
|
func (binary *binaryDecorator) nativeCoverage() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-10-02 16:03:23 +02:00
|
|
|
func (binary *binaryDecorator) preferRlib() bool {
|
2020-12-08 20:43:00 +01:00
|
|
|
return Bool(binary.baseCompiler.Properties.Prefer_rlib) || Bool(binary.Properties.Static_executable)
|
2020-10-02 16:03:23 +02:00
|
|
|
}
|
|
|
|
|
2022-04-19 05:12:56 +02:00
|
|
|
func (binary *binaryDecorator) compile(ctx ModuleContext, flags Flags, deps PathDeps) buildOutput {
|
2019-08-27 21:03:00 +02:00
|
|
|
fileName := binary.getStem(ctx) + ctx.toolchain().ExecutableSuffix()
|
|
|
|
outputFile := android.PathForModuleOut(ctx, fileName)
|
2022-04-19 05:12:56 +02:00
|
|
|
ret := buildOutput{outputFile: outputFile}
|
2023-11-21 00:33:28 +01:00
|
|
|
crateRootPath := crateRootPath(ctx, binary)
|
2019-08-27 21:03:00 +02:00
|
|
|
|
|
|
|
flags.RustFlags = append(flags.RustFlags, deps.depFlags...)
|
2021-02-04 17:29:41 +01:00
|
|
|
flags.LinkFlags = append(flags.LinkFlags, deps.depLinkFlags...)
|
2023-10-02 20:39:17 +02:00
|
|
|
flags.LinkFlags = append(flags.LinkFlags, deps.linkObjects...)
|
2019-08-27 21:03:00 +02:00
|
|
|
|
2020-08-27 13:48:36 +02:00
|
|
|
if binary.stripper.NeedsStrip(ctx) {
|
2021-11-05 21:36:47 +01:00
|
|
|
strippedOutputFile := outputFile
|
|
|
|
outputFile = android.PathForModuleOut(ctx, "unstripped", fileName)
|
2020-08-27 13:48:36 +02:00
|
|
|
binary.stripper.StripExecutableOrSharedLib(ctx, outputFile, strippedOutputFile)
|
2021-11-05 21:36:47 +01:00
|
|
|
|
|
|
|
binary.baseCompiler.strippedOutputFile = android.OptionalPathForPath(strippedOutputFile)
|
2020-08-27 13:48:36 +02:00
|
|
|
}
|
2021-11-05 21:36:47 +01:00
|
|
|
binary.baseCompiler.unstrippedOutputFile = outputFile
|
|
|
|
|
2023-09-25 14:13:17 +02:00
|
|
|
ret.kytheFile = TransformSrcToBinary(ctx, crateRootPath, deps, flags, outputFile).kytheFile
|
2021-11-05 21:36:47 +01:00
|
|
|
return ret
|
2019-08-27 21:03:00 +02:00
|
|
|
}
|
2020-04-09 15:56:02 +02:00
|
|
|
|
2021-01-26 15:18:53 +01:00
|
|
|
func (binary *binaryDecorator) autoDep(ctx android.BottomUpMutatorContext) autoDep {
|
2020-08-18 20:31:23 +02:00
|
|
|
// Binaries default to dylib dependencies for device, rlib for host.
|
2020-10-02 16:03:23 +02:00
|
|
|
if binary.preferRlib() {
|
2020-09-28 17:56:30 +02:00
|
|
|
return rlibAutoDep
|
2020-12-08 20:43:00 +01:00
|
|
|
} else if ctx.Device() {
|
2020-06-29 23:34:06 +02:00
|
|
|
return dylibAutoDep
|
|
|
|
} else {
|
|
|
|
return rlibAutoDep
|
|
|
|
}
|
|
|
|
}
|
2020-09-28 17:56:30 +02:00
|
|
|
|
2020-09-28 19:22:45 +02:00
|
|
|
func (binary *binaryDecorator) stdLinkage(ctx *depsContext) RustLinkage {
|
2020-10-02 16:03:23 +02:00
|
|
|
if binary.preferRlib() {
|
2020-09-28 19:22:45 +02:00
|
|
|
return RlibLinkage
|
|
|
|
}
|
|
|
|
return binary.baseCompiler.stdLinkage(ctx)
|
2020-09-28 17:56:30 +02:00
|
|
|
}
|
2021-11-01 14:19:45 +01:00
|
|
|
|
|
|
|
func (binary *binaryDecorator) binary() bool {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (binary *binaryDecorator) staticallyLinked() bool {
|
|
|
|
return Bool(binary.Properties.Static_executable)
|
|
|
|
}
|
2021-11-01 15:27:54 +01:00
|
|
|
|
|
|
|
func (binary *binaryDecorator) testBinary() bool {
|
|
|
|
return false
|
|
|
|
}
|