2016-07-29 21:48:20 +02:00
|
|
|
// Copyright 2016 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package cc
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
2016-09-29 23:06:02 +02:00
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
"android/soong/android"
|
2016-07-29 22:44:28 +02:00
|
|
|
"android/soong/cc/config"
|
2016-07-29 21:48:20 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// This file contains the basic C/C++/assembly to .o compliation steps
|
|
|
|
|
|
|
|
type BaseCompilerProperties struct {
|
|
|
|
// list of source files used to compile the C/C++ module. May be .c, .cpp, or .S files.
|
2016-12-14 00:23:47 +01:00
|
|
|
// srcs may reference the outputs of other modules that produce source files like genrule
|
|
|
|
// or filegroup using the syntax ":module".
|
2019-03-05 07:35:41 +01:00
|
|
|
Srcs []string `android:"path,arch_variant"`
|
2016-07-29 21:48:20 +02:00
|
|
|
|
|
|
|
// list of source files that should not be used to build the C/C++ module.
|
|
|
|
// This is most useful in the arch/multilib variants to remove non-common files
|
2019-03-05 07:35:41 +01:00
|
|
|
Exclude_srcs []string `android:"path,arch_variant"`
|
2016-07-29 21:48:20 +02:00
|
|
|
|
|
|
|
// list of module-specific flags that will be used for C and C++ compiles.
|
|
|
|
Cflags []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of module-specific flags that will be used for C++ compiles
|
|
|
|
Cppflags []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of module-specific flags that will be used for C compiles
|
|
|
|
Conlyflags []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of module-specific flags that will be used for .S compiles
|
|
|
|
Asflags []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of module-specific flags that will be used for C and C++ compiles when
|
|
|
|
// compiling with clang
|
|
|
|
Clang_cflags []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of module-specific flags that will be used for .S compiles when
|
|
|
|
// compiling with clang
|
|
|
|
Clang_asflags []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of module-specific flags that will be used for .y and .yy compiles
|
|
|
|
Yaccflags []string
|
|
|
|
|
|
|
|
// the instruction set architecture to use to compile the C/C++
|
|
|
|
// module.
|
2017-10-26 00:20:50 +02:00
|
|
|
Instruction_set *string `android:"arch_variant"`
|
2016-07-29 21:48:20 +02:00
|
|
|
|
|
|
|
// list of directories relative to the root of the source tree that will
|
|
|
|
// be added to the include path using -I.
|
|
|
|
// If possible, don't use this. If adding paths from the current directory use
|
|
|
|
// local_include_dirs, if adding paths from other modules use export_include_dirs in
|
|
|
|
// that module.
|
2017-04-27 02:01:07 +02:00
|
|
|
Include_dirs []string `android:"arch_variant,variant_prepend"`
|
2016-07-29 21:48:20 +02:00
|
|
|
|
|
|
|
// list of directories relative to the Blueprints file that will
|
|
|
|
// be added to the include path using -I
|
2018-07-23 06:18:45 +02:00
|
|
|
Local_include_dirs []string `android:"arch_variant,variant_prepend"`
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-12-06 20:04:03 +01:00
|
|
|
// Add the directory containing the Android.bp file to the list of include
|
|
|
|
// directories. Defaults to true.
|
|
|
|
Include_build_directory *bool
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
// list of generated sources to compile. These are the names of gensrcs or
|
|
|
|
// genrule modules.
|
|
|
|
Generated_sources []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// list of generated headers to add to the include path. These are the names
|
|
|
|
// of genrule modules.
|
|
|
|
Generated_headers []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// pass -frtti instead of -fno-rtti
|
|
|
|
Rtti *bool
|
|
|
|
|
2017-02-04 01:13:38 +01:00
|
|
|
// C standard version to use. Can be a specific version (such as "gnu11"),
|
|
|
|
// "experimental" (which will use draft versions like C1x when available),
|
|
|
|
// or the empty string (which will use the default).
|
2017-11-07 19:57:05 +01:00
|
|
|
C_std *string
|
2017-02-04 01:13:38 +01:00
|
|
|
|
|
|
|
// C++ standard version to use. Can be a specific version (such as
|
|
|
|
// "gnu++11"), "experimental" (which will use draft versions like C++1z when
|
|
|
|
// available), or the empty string (which will use the default).
|
2017-11-07 19:57:05 +01:00
|
|
|
Cpp_std *string
|
2017-02-04 01:13:38 +01:00
|
|
|
|
2016-10-17 23:24:56 +02:00
|
|
|
// if set to false, use -std=c++* instead of -std=gnu++*
|
|
|
|
Gnu_extensions *bool
|
|
|
|
|
2016-11-03 22:28:51 +01:00
|
|
|
Aidl struct {
|
|
|
|
// list of directories that will be added to the aidl include paths.
|
|
|
|
Include_dirs []string
|
|
|
|
|
|
|
|
// list of directories relative to the Blueprints file that will
|
|
|
|
// be added to the aidl include paths.
|
|
|
|
Local_include_dirs []string
|
2018-03-09 09:29:59 +01:00
|
|
|
|
|
|
|
// whether to generate traces (for systrace) for this interface
|
|
|
|
Generate_traces *bool
|
2016-11-03 22:28:51 +01:00
|
|
|
}
|
|
|
|
|
2017-05-02 02:37:24 +02:00
|
|
|
Renderscript struct {
|
|
|
|
// list of directories that will be added to the llvm-rs-cc include paths
|
|
|
|
Include_dirs []string
|
|
|
|
|
|
|
|
// list of flags that will be passed to llvm-rs-cc
|
|
|
|
Flags []string
|
|
|
|
|
|
|
|
// Renderscript API level to target
|
|
|
|
Target_api *string
|
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
Debug, Release struct {
|
|
|
|
// list of module-specific flags that will be used for C and C++ compiles in debug or
|
|
|
|
// release builds
|
|
|
|
Cflags []string `android:"arch_variant"`
|
|
|
|
} `android:"arch_variant"`
|
Split /system and /vendor modules, allow multi-installation
Nothing changes if BOARD_VNDK_VERSION isn't set.
When the VNDK is enabled (BOARD_VNDK_VERSION in Make), this will split
/system and /vendor modules into two different variant spaces that can't
link to each other. There are a few interfaces between the two variant
spaces:
The `llndk_library` stubs will be available in the /vendor variant, but
won't be installed, so at runtime the /system variant will be used.
Setting `vendor_available: true` will split a module into both variants.
The /system (or "core") variant will compile just like today. The
/vendor ("vendor") variant will compile against everything else in the
vendor space (so LL-NDK instead of libc/liblog/etc). There will be two
copies of these libraries installed onto the final device.
Since the available runtime interfaces for vendor modules may be
reduced, and your dependencies may not expose their private interfaces,
we allow the vendor variants to reduce their compilation set, and export
a different set of headers:
cc_library {
name: "libfoo",
srcs: ["common.cpp", "private_impl.cpp"],
export_include_dirs: ["include"],
target: {
vendor: {
export_include_dirs: ["include_vndk"],
exclude_srcs: ["private_impl.cpp"],
srcs: ["vendor_only.cpp"],
},
},
}
So the "core" variant would compile with both "common.cpp" and
"private_impl.cpp", and export "include".
The "vendor" variant would compile "common.cpp" and "vendor_only.cpp",
and export "include_vndk".
Bug: 36426473
Bug: 36079834
Test: out/soong/build.ninja, out/soong/Android- only changes due to _core addition and
.llndk -> .vendor
Test: attempt to compile with BOARD_VNDK_VERSION:=current
Change-Id: Idef28764043bf6c33dc0d2e7e2026c38867ff769
2017-04-06 21:43:22 +02:00
|
|
|
|
|
|
|
Target struct {
|
|
|
|
Vendor struct {
|
|
|
|
// list of source files that should only be used in the
|
|
|
|
// vendor variant of the C/C++ module.
|
2019-03-05 07:35:41 +01:00
|
|
|
Srcs []string `android:"path"`
|
Split /system and /vendor modules, allow multi-installation
Nothing changes if BOARD_VNDK_VERSION isn't set.
When the VNDK is enabled (BOARD_VNDK_VERSION in Make), this will split
/system and /vendor modules into two different variant spaces that can't
link to each other. There are a few interfaces between the two variant
spaces:
The `llndk_library` stubs will be available in the /vendor variant, but
won't be installed, so at runtime the /system variant will be used.
Setting `vendor_available: true` will split a module into both variants.
The /system (or "core") variant will compile just like today. The
/vendor ("vendor") variant will compile against everything else in the
vendor space (so LL-NDK instead of libc/liblog/etc). There will be two
copies of these libraries installed onto the final device.
Since the available runtime interfaces for vendor modules may be
reduced, and your dependencies may not expose their private interfaces,
we allow the vendor variants to reduce their compilation set, and export
a different set of headers:
cc_library {
name: "libfoo",
srcs: ["common.cpp", "private_impl.cpp"],
export_include_dirs: ["include"],
target: {
vendor: {
export_include_dirs: ["include_vndk"],
exclude_srcs: ["private_impl.cpp"],
srcs: ["vendor_only.cpp"],
},
},
}
So the "core" variant would compile with both "common.cpp" and
"private_impl.cpp", and export "include".
The "vendor" variant would compile "common.cpp" and "vendor_only.cpp",
and export "include_vndk".
Bug: 36426473
Bug: 36079834
Test: out/soong/build.ninja, out/soong/Android- only changes due to _core addition and
.llndk -> .vendor
Test: attempt to compile with BOARD_VNDK_VERSION:=current
Change-Id: Idef28764043bf6c33dc0d2e7e2026c38867ff769
2017-04-06 21:43:22 +02:00
|
|
|
|
|
|
|
// list of source files that should not be used to
|
|
|
|
// build the vendor variant of the C/C++ module.
|
2019-03-05 07:35:41 +01:00
|
|
|
Exclude_srcs []string `android:"path"`
|
2017-08-10 06:33:27 +02:00
|
|
|
|
|
|
|
// List of additional cflags that should be used to build the vendor
|
|
|
|
// variant of the C/C++ module.
|
|
|
|
Cflags []string
|
Split /system and /vendor modules, allow multi-installation
Nothing changes if BOARD_VNDK_VERSION isn't set.
When the VNDK is enabled (BOARD_VNDK_VERSION in Make), this will split
/system and /vendor modules into two different variant spaces that can't
link to each other. There are a few interfaces between the two variant
spaces:
The `llndk_library` stubs will be available in the /vendor variant, but
won't be installed, so at runtime the /system variant will be used.
Setting `vendor_available: true` will split a module into both variants.
The /system (or "core") variant will compile just like today. The
/vendor ("vendor") variant will compile against everything else in the
vendor space (so LL-NDK instead of libc/liblog/etc). There will be two
copies of these libraries installed onto the final device.
Since the available runtime interfaces for vendor modules may be
reduced, and your dependencies may not expose their private interfaces,
we allow the vendor variants to reduce their compilation set, and export
a different set of headers:
cc_library {
name: "libfoo",
srcs: ["common.cpp", "private_impl.cpp"],
export_include_dirs: ["include"],
target: {
vendor: {
export_include_dirs: ["include_vndk"],
exclude_srcs: ["private_impl.cpp"],
srcs: ["vendor_only.cpp"],
},
},
}
So the "core" variant would compile with both "common.cpp" and
"private_impl.cpp", and export "include".
The "vendor" variant would compile "common.cpp" and "vendor_only.cpp",
and export "include_vndk".
Bug: 36426473
Bug: 36079834
Test: out/soong/build.ninja, out/soong/Android- only changes due to _core addition and
.llndk -> .vendor
Test: attempt to compile with BOARD_VNDK_VERSION:=current
Change-Id: Idef28764043bf6c33dc0d2e7e2026c38867ff769
2017-04-06 21:43:22 +02:00
|
|
|
}
|
2018-01-31 16:54:12 +01:00
|
|
|
Recovery struct {
|
|
|
|
// list of source files that should only be used in the
|
|
|
|
// recovery variant of the C/C++ module.
|
2019-03-05 07:35:41 +01:00
|
|
|
Srcs []string `android:"path"`
|
2018-01-31 16:54:12 +01:00
|
|
|
|
|
|
|
// list of source files that should not be used to
|
|
|
|
// build the recovery variant of the C/C++ module.
|
2019-03-05 07:35:41 +01:00
|
|
|
Exclude_srcs []string `android:"path"`
|
2018-01-31 16:54:12 +01:00
|
|
|
|
|
|
|
// List of additional cflags that should be used to build the recovery
|
|
|
|
// variant of the C/C++ module.
|
|
|
|
Cflags []string
|
|
|
|
}
|
Split /system and /vendor modules, allow multi-installation
Nothing changes if BOARD_VNDK_VERSION isn't set.
When the VNDK is enabled (BOARD_VNDK_VERSION in Make), this will split
/system and /vendor modules into two different variant spaces that can't
link to each other. There are a few interfaces between the two variant
spaces:
The `llndk_library` stubs will be available in the /vendor variant, but
won't be installed, so at runtime the /system variant will be used.
Setting `vendor_available: true` will split a module into both variants.
The /system (or "core") variant will compile just like today. The
/vendor ("vendor") variant will compile against everything else in the
vendor space (so LL-NDK instead of libc/liblog/etc). There will be two
copies of these libraries installed onto the final device.
Since the available runtime interfaces for vendor modules may be
reduced, and your dependencies may not expose their private interfaces,
we allow the vendor variants to reduce their compilation set, and export
a different set of headers:
cc_library {
name: "libfoo",
srcs: ["common.cpp", "private_impl.cpp"],
export_include_dirs: ["include"],
target: {
vendor: {
export_include_dirs: ["include_vndk"],
exclude_srcs: ["private_impl.cpp"],
srcs: ["vendor_only.cpp"],
},
},
}
So the "core" variant would compile with both "common.cpp" and
"private_impl.cpp", and export "include".
The "vendor" variant would compile "common.cpp" and "vendor_only.cpp",
and export "include_vndk".
Bug: 36426473
Bug: 36079834
Test: out/soong/build.ninja, out/soong/Android- only changes due to _core addition and
.llndk -> .vendor
Test: attempt to compile with BOARD_VNDK_VERSION:=current
Change-Id: Idef28764043bf6c33dc0d2e7e2026c38867ff769
2017-04-06 21:43:22 +02:00
|
|
|
}
|
2017-05-03 20:01:58 +02:00
|
|
|
|
2017-09-07 19:53:07 +02:00
|
|
|
Proto struct {
|
|
|
|
// Link statically against the protobuf runtime
|
2017-11-07 19:57:05 +01:00
|
|
|
Static *bool `android:"arch_variant"`
|
2017-09-07 19:53:07 +02:00
|
|
|
} `android:"arch_variant"`
|
|
|
|
|
2017-05-03 20:01:58 +02:00
|
|
|
// Stores the original list of source files before being cleared by library reuse
|
|
|
|
OriginalSrcs []string `blueprint:"mutated"`
|
2017-12-20 08:08:09 +01:00
|
|
|
|
|
|
|
// Build and link with OpenMP
|
|
|
|
Openmp *bool `android:"arch_variant"`
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2016-07-30 02:28:03 +02:00
|
|
|
func NewBaseCompiler() *baseCompiler {
|
|
|
|
return &baseCompiler{}
|
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
type baseCompiler struct {
|
|
|
|
Properties BaseCompilerProperties
|
2017-09-07 19:53:07 +02:00
|
|
|
Proto android.ProtoProperties
|
2018-01-23 19:49:04 +01:00
|
|
|
cFlagsDeps android.Paths
|
2017-12-20 00:11:01 +01:00
|
|
|
pathDeps android.Paths
|
2017-01-11 01:21:22 +01:00
|
|
|
flags builderFlags
|
2017-11-16 23:33:08 +01:00
|
|
|
|
|
|
|
// Sources that were passed to the C/C++ compiler
|
|
|
|
srcs android.Paths
|
|
|
|
|
|
|
|
// Sources that were passed in the Android.bp file, including generated sources generated by
|
|
|
|
// other modules and filegroups. May include source files that have not yet been translated to
|
|
|
|
// C/C++ (.aidl, .proto, etc.)
|
|
|
|
srcsBeforeGen android.Paths
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ compiler = (*baseCompiler)(nil)
|
|
|
|
|
2017-01-11 01:21:22 +01:00
|
|
|
type CompiledInterface interface {
|
|
|
|
Srcs() android.Paths
|
|
|
|
}
|
|
|
|
|
|
|
|
func (compiler *baseCompiler) Srcs() android.Paths {
|
2018-03-28 01:19:42 +02:00
|
|
|
return append(android.Paths{}, compiler.srcs...)
|
2017-01-11 01:21:22 +01:00
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
func (compiler *baseCompiler) appendCflags(flags []string) {
|
|
|
|
compiler.Properties.Cflags = append(compiler.Properties.Cflags, flags...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (compiler *baseCompiler) appendAsflags(flags []string) {
|
|
|
|
compiler.Properties.Asflags = append(compiler.Properties.Asflags, flags...)
|
|
|
|
}
|
|
|
|
|
2016-08-01 22:20:05 +02:00
|
|
|
func (compiler *baseCompiler) compilerProps() []interface{} {
|
2016-11-03 22:38:52 +01:00
|
|
|
return []interface{}{&compiler.Properties, &compiler.Proto}
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2016-08-01 22:20:05 +02:00
|
|
|
func (compiler *baseCompiler) compilerInit(ctx BaseModuleContext) {}
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2016-12-14 02:06:13 +01:00
|
|
|
func (compiler *baseCompiler) compilerDeps(ctx DepsContext, deps Deps) Deps {
|
2016-07-29 21:48:20 +02:00
|
|
|
deps.GeneratedSources = append(deps.GeneratedSources, compiler.Properties.Generated_sources...)
|
|
|
|
deps.GeneratedHeaders = append(deps.GeneratedHeaders, compiler.Properties.Generated_headers...)
|
|
|
|
|
2019-03-29 03:30:56 +01:00
|
|
|
android.ProtoDeps(ctx, &compiler.Proto)
|
2016-11-03 04:44:08 +01:00
|
|
|
if compiler.hasSrcExt(".proto") {
|
2017-11-07 19:57:05 +01:00
|
|
|
deps = protoDeps(ctx, deps, &compiler.Proto, Bool(compiler.Properties.Proto.Static))
|
2016-10-21 01:11:43 +02:00
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:20 +02:00
|
|
|
if compiler.hasSrcExt(".sysprop") {
|
2019-03-27 09:20:37 +01:00
|
|
|
deps.HeaderLibs = append(deps.HeaderLibs, "libbase_headers")
|
|
|
|
deps.SharedLibs = append(deps.SharedLibs, "liblog")
|
2018-09-05 17:55:20 +02:00
|
|
|
}
|
|
|
|
|
2017-12-20 08:08:09 +01:00
|
|
|
if Bool(compiler.Properties.Openmp) {
|
|
|
|
deps.StaticLibs = append(deps.StaticLibs, "libomp")
|
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
return deps
|
|
|
|
}
|
|
|
|
|
2017-11-14 23:09:14 +01:00
|
|
|
// Return true if the module is in the WarningAllowedProjects.
|
|
|
|
func warningsAreAllowed(subdir string) bool {
|
|
|
|
subdir += "/"
|
|
|
|
for _, prefix := range config.WarningAllowedProjects {
|
|
|
|
if strings.HasPrefix(subdir, prefix) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-02-04 20:22:08 +01:00
|
|
|
func addToModuleList(ctx ModuleContext, key android.OnceKey, module string) {
|
|
|
|
getNamedMapForConfig(ctx.Config(), key).Store(module, true)
|
2017-11-14 23:09:14 +01:00
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
// Create a Flags struct that collects the compile flags from global values,
|
|
|
|
// per-target values, module type values, and per-module Blueprints properties
|
2017-11-16 23:33:08 +01:00
|
|
|
func (compiler *baseCompiler) compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags {
|
2016-07-29 22:44:28 +02:00
|
|
|
tc := ctx.toolchain()
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2019-03-06 07:25:09 +01:00
|
|
|
compiler.srcsBeforeGen = android.PathsForModuleSrcExcludes(ctx, compiler.Properties.Srcs, compiler.Properties.Exclude_srcs)
|
2017-11-16 23:33:08 +01:00
|
|
|
compiler.srcsBeforeGen = append(compiler.srcsBeforeGen, deps.GeneratedSources...)
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
CheckBadCompilerFlags(ctx, "cflags", compiler.Properties.Cflags)
|
|
|
|
CheckBadCompilerFlags(ctx, "cppflags", compiler.Properties.Cppflags)
|
|
|
|
CheckBadCompilerFlags(ctx, "conlyflags", compiler.Properties.Conlyflags)
|
|
|
|
CheckBadCompilerFlags(ctx, "asflags", compiler.Properties.Asflags)
|
2018-05-24 09:44:14 +02:00
|
|
|
CheckBadCompilerFlags(ctx, "vendor.cflags", compiler.Properties.Target.Vendor.Cflags)
|
|
|
|
CheckBadCompilerFlags(ctx, "recovery.cflags", compiler.Properties.Target.Recovery.Cflags)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2019-02-28 20:00:01 +01:00
|
|
|
esc := proptools.NinjaAndShellEscapeList
|
2016-09-29 23:06:02 +02:00
|
|
|
|
|
|
|
flags.CFlags = append(flags.CFlags, esc(compiler.Properties.Cflags)...)
|
|
|
|
flags.CppFlags = append(flags.CppFlags, esc(compiler.Properties.Cppflags)...)
|
|
|
|
flags.ConlyFlags = append(flags.ConlyFlags, esc(compiler.Properties.Conlyflags)...)
|
|
|
|
flags.AsFlags = append(flags.AsFlags, esc(compiler.Properties.Asflags)...)
|
2016-12-03 02:13:24 +01:00
|
|
|
flags.YasmFlags = append(flags.YasmFlags, esc(compiler.Properties.Asflags)...)
|
2016-09-29 23:06:02 +02:00
|
|
|
flags.YaccFlags = append(flags.YaccFlags, esc(compiler.Properties.Yaccflags)...)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
|
|
|
// Include dir cflags
|
|
|
|
localIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Local_include_dirs)
|
2016-11-03 23:53:42 +01:00
|
|
|
if len(localIncludeDirs) > 0 {
|
2017-04-26 23:55:27 +02:00
|
|
|
f := includeDirsToFlags(localIncludeDirs)
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags, f)
|
|
|
|
flags.YasmFlags = append(flags.YasmFlags, f)
|
2016-11-03 23:53:42 +01:00
|
|
|
}
|
|
|
|
rootIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Include_dirs)
|
|
|
|
if len(rootIncludeDirs) > 0 {
|
2017-04-26 23:55:27 +02:00
|
|
|
f := includeDirsToFlags(rootIncludeDirs)
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags, f)
|
|
|
|
flags.YasmFlags = append(flags.YasmFlags, f)
|
2016-11-03 23:53:42 +01:00
|
|
|
}
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-12-06 20:04:03 +01:00
|
|
|
if compiler.Properties.Include_build_directory == nil ||
|
|
|
|
*compiler.Properties.Include_build_directory {
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags, "-I"+android.PathForModuleSrc(ctx).String())
|
|
|
|
flags.YasmFlags = append(flags.YasmFlags, "-I"+android.PathForModuleSrc(ctx).String())
|
|
|
|
}
|
2017-11-03 21:31:05 +01:00
|
|
|
|
|
|
|
if !(ctx.useSdk() || ctx.useVndk()) || ctx.Host() {
|
|
|
|
flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
|
|
|
|
"${config.CommonGlobalIncludes}",
|
|
|
|
tc.IncludeFlags(),
|
|
|
|
"${config.CommonNativehelperInclude}")
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2017-09-28 02:01:44 +02:00
|
|
|
if ctx.useSdk() {
|
2018-11-15 06:22:00 +01:00
|
|
|
// TODO: Switch to --sysroot.
|
2016-07-29 21:48:20 +02:00
|
|
|
// The NDK headers are installed to a common sysroot. While a more
|
|
|
|
// typical Soong approach would be to only make the headers for the
|
|
|
|
// library you're using available, we're trying to emulate the NDK
|
|
|
|
// behavior here, and the NDK always has all the NDK headers available.
|
2017-03-31 00:03:04 +02:00
|
|
|
flags.SystemIncludeFlags = append(flags.SystemIncludeFlags,
|
2016-07-29 21:48:20 +02:00
|
|
|
"-isystem "+getCurrentIncludePath(ctx).String(),
|
2018-03-16 02:44:57 +01:00
|
|
|
"-isystem "+getCurrentIncludePath(ctx).Join(ctx, config.NDKTriple(tc)).String())
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-11-15 06:22:00 +01:00
|
|
|
// TODO: Migrate to API suffixed triple?
|
2016-07-29 21:48:20 +02:00
|
|
|
// Traditionally this has come from android/api-level.h, but with the
|
|
|
|
// libc headers unified it must be set by the build system since we
|
|
|
|
// don't have per-API level copies of that header now.
|
2016-11-09 00:06:22 +01:00
|
|
|
version := ctx.sdkVersion()
|
|
|
|
if version == "current" {
|
|
|
|
version = "__ANDROID_API_FUTURE__"
|
|
|
|
}
|
2016-07-29 21:48:20 +02:00
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags,
|
2016-11-09 00:06:22 +01:00
|
|
|
"-D__ANDROID_API__="+version)
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2017-09-28 02:01:44 +02:00
|
|
|
if ctx.useVndk() {
|
2018-03-23 09:43:47 +01:00
|
|
|
// sdkVersion() returns VNDK version for vendor modules.
|
|
|
|
version := ctx.sdkVersion()
|
|
|
|
if version == "current" {
|
|
|
|
version = "__ANDROID_API_FUTURE__"
|
|
|
|
}
|
2017-03-19 21:44:32 +01:00
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags,
|
2018-03-23 09:43:47 +01:00
|
|
|
"-D__ANDROID_API__="+version, "-D__ANDROID_VNDK__")
|
2017-03-19 21:44:32 +01:00
|
|
|
}
|
|
|
|
|
2018-06-08 18:32:54 +02:00
|
|
|
if ctx.inRecovery() {
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags, "-D__ANDROID_RECOVERY__")
|
|
|
|
}
|
|
|
|
|
2019-01-19 11:24:06 +01:00
|
|
|
if ctx.apexName() != "" {
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags, "-D__ANDROID_APEX__="+ctx.apexName())
|
|
|
|
}
|
|
|
|
|
2017-11-07 19:57:05 +01:00
|
|
|
instructionSet := String(compiler.Properties.Instruction_set)
|
2016-07-29 21:48:20 +02:00
|
|
|
if flags.RequiredInstructionSet != "" {
|
|
|
|
instructionSet = flags.RequiredInstructionSet
|
|
|
|
}
|
2018-10-08 05:54:34 +02:00
|
|
|
instructionSetFlags, err := tc.ClangInstructionSetFlags(instructionSet)
|
2016-07-29 21:48:20 +02:00
|
|
|
if err != nil {
|
|
|
|
ctx.ModuleErrorf("%s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckBadCompilerFlags(ctx, "release.cflags", compiler.Properties.Release.Cflags)
|
|
|
|
|
|
|
|
// TODO: debug
|
2016-09-29 23:06:02 +02:00
|
|
|
flags.CFlags = append(flags.CFlags, esc(compiler.Properties.Release.Cflags)...)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
CheckBadCompilerFlags(ctx, "clang_cflags", compiler.Properties.Clang_cflags)
|
|
|
|
CheckBadCompilerFlags(ctx, "clang_asflags", compiler.Properties.Clang_asflags)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
flags.CFlags = config.ClangFilterUnknownCflags(flags.CFlags)
|
|
|
|
flags.CFlags = append(flags.CFlags, esc(compiler.Properties.Clang_cflags)...)
|
|
|
|
flags.AsFlags = append(flags.AsFlags, esc(compiler.Properties.Clang_asflags)...)
|
|
|
|
flags.CppFlags = config.ClangFilterUnknownCflags(flags.CppFlags)
|
|
|
|
flags.ConlyFlags = config.ClangFilterUnknownCflags(flags.ConlyFlags)
|
|
|
|
flags.LdFlags = config.ClangFilterUnknownCflags(flags.LdFlags)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
target := "-target " + tc.ClangTriple()
|
|
|
|
gccPrefix := "-B" + config.ToolPath(tc)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
flags.CFlags = append(flags.CFlags, target, gccPrefix)
|
|
|
|
flags.AsFlags = append(flags.AsFlags, target, gccPrefix)
|
|
|
|
flags.LdFlags = append(flags.LdFlags, target, gccPrefix)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2016-07-29 22:44:28 +02:00
|
|
|
hod := "Host"
|
2016-07-29 21:48:20 +02:00
|
|
|
if ctx.Os().Class == android.Device {
|
2016-07-29 22:44:28 +02:00
|
|
|
hod = "Device"
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2017-11-03 21:31:05 +01:00
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags, instructionSetFlags)
|
|
|
|
flags.ConlyFlags = append([]string{"${config.CommonGlobalConlyflags}"}, flags.ConlyFlags...)
|
2017-11-06 22:59:48 +01:00
|
|
|
flags.CppFlags = append([]string{fmt.Sprintf("${config.%sGlobalCppflags}", hod)}, flags.CppFlags...)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
flags.AsFlags = append(flags.AsFlags, tc.ClangAsflags())
|
|
|
|
flags.CppFlags = append([]string{"${config.CommonClangGlobalCppflags}"}, flags.CppFlags...)
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags,
|
|
|
|
tc.ClangCflags(),
|
|
|
|
"${config.CommonClangGlobalCflags}",
|
|
|
|
fmt.Sprintf("${config.%sClangGlobalCflags}", hod))
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
if strings.HasPrefix(android.PathForModuleSrc(ctx).String(), "external/") {
|
|
|
|
flags.GlobalFlags = append([]string{"${config.ClangExternalCflags}"}, flags.GlobalFlags...)
|
2018-06-06 23:42:44 +02:00
|
|
|
}
|
|
|
|
|
2018-10-22 03:42:46 +02:00
|
|
|
if tc.Bionic() {
|
2017-11-03 21:31:05 +01:00
|
|
|
if Bool(compiler.Properties.Rtti) {
|
|
|
|
flags.CppFlags = append(flags.CppFlags, "-frtti")
|
2016-07-29 21:48:20 +02:00
|
|
|
} else {
|
2017-11-03 21:31:05 +01:00
|
|
|
flags.CppFlags = append(flags.CppFlags, "-fno-rtti")
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
2017-11-03 21:31:05 +01:00
|
|
|
}
|
2016-12-03 02:13:24 +01:00
|
|
|
|
2017-11-03 21:31:05 +01:00
|
|
|
flags.AsFlags = append(flags.AsFlags, "-D__ASSEMBLY__")
|
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
flags.CppFlags = append(flags.CppFlags, tc.ClangCppflags())
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2017-11-03 21:31:05 +01:00
|
|
|
flags.YasmFlags = append(flags.YasmFlags, tc.YasmFlags())
|
|
|
|
|
2018-10-08 05:54:34 +02:00
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags, tc.ToolchainClangCflags())
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-02-17 02:15:19 +01:00
|
|
|
cStd := config.CStdVersion
|
|
|
|
if String(compiler.Properties.C_std) == "experimental" {
|
|
|
|
cStd = config.ExperimentalCStdVersion
|
|
|
|
} else if String(compiler.Properties.C_std) != "" {
|
|
|
|
cStd = String(compiler.Properties.C_std)
|
|
|
|
}
|
2016-10-17 23:19:06 +02:00
|
|
|
|
2018-02-17 02:15:19 +01:00
|
|
|
cppStd := String(compiler.Properties.Cpp_std)
|
|
|
|
switch String(compiler.Properties.Cpp_std) {
|
|
|
|
case "":
|
|
|
|
cppStd = config.CppStdVersion
|
|
|
|
case "experimental":
|
|
|
|
cppStd = config.ExperimentalCppStdVersion
|
|
|
|
}
|
2016-10-17 23:19:06 +02:00
|
|
|
|
2018-02-17 02:15:19 +01:00
|
|
|
if compiler.Properties.Gnu_extensions != nil && *compiler.Properties.Gnu_extensions == false {
|
|
|
|
cStd = gnuToCReplacer.Replace(cStd)
|
|
|
|
cppStd = gnuToCReplacer.Replace(cppStd)
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2018-02-17 02:15:19 +01:00
|
|
|
flags.ConlyFlags = append([]string{"-std=" + cStd}, flags.ConlyFlags...)
|
|
|
|
flags.CppFlags = append([]string{"-std=" + cppStd}, flags.CppFlags...)
|
|
|
|
|
2017-09-28 02:01:44 +02:00
|
|
|
if ctx.useVndk() {
|
2017-08-10 06:33:27 +02:00
|
|
|
flags.CFlags = append(flags.CFlags, esc(compiler.Properties.Target.Vendor.Cflags)...)
|
|
|
|
}
|
|
|
|
|
2018-05-24 09:44:14 +02:00
|
|
|
if ctx.inRecovery() {
|
|
|
|
flags.CFlags = append(flags.CFlags, esc(compiler.Properties.Target.Recovery.Cflags)...)
|
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
// We can enforce some rules more strictly in the code we own. strict
|
|
|
|
// indicates if this is code that we can be stricter with. If we have
|
|
|
|
// rules that we want to apply to *our* code (but maybe can't for
|
|
|
|
// vendor/device specific things), we could extend this to be a ternary
|
|
|
|
// value.
|
|
|
|
strict := true
|
|
|
|
if strings.HasPrefix(android.PathForModuleSrc(ctx).String(), "external/") {
|
|
|
|
strict = false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can be used to make some annotations stricter for code we can fix
|
|
|
|
// (such as when we mark functions as deprecated).
|
|
|
|
if strict {
|
|
|
|
flags.CFlags = append(flags.CFlags, "-DANDROID_STRICT")
|
|
|
|
}
|
|
|
|
|
2016-11-03 04:44:08 +01:00
|
|
|
if compiler.hasSrcExt(".proto") {
|
2016-10-21 01:11:43 +02:00
|
|
|
flags = protoFlags(ctx, flags, &compiler.Proto)
|
|
|
|
}
|
|
|
|
|
2016-11-03 04:44:08 +01:00
|
|
|
if compiler.hasSrcExt(".y") || compiler.hasSrcExt(".yy") {
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags,
|
|
|
|
"-I"+android.PathForModuleGen(ctx, "yacc", ctx.ModuleDir()).String())
|
|
|
|
}
|
|
|
|
|
2017-09-09 10:15:26 +02:00
|
|
|
if compiler.hasSrcExt(".mc") {
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags,
|
|
|
|
"-I"+android.PathForModuleGen(ctx, "windmc", ctx.ModuleDir()).String())
|
|
|
|
}
|
|
|
|
|
2016-11-03 22:28:51 +01:00
|
|
|
if compiler.hasSrcExt(".aidl") {
|
|
|
|
if len(compiler.Properties.Aidl.Local_include_dirs) > 0 {
|
|
|
|
localAidlIncludeDirs := android.PathsForModuleSrc(ctx, compiler.Properties.Aidl.Local_include_dirs)
|
|
|
|
flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(localAidlIncludeDirs))
|
|
|
|
}
|
|
|
|
if len(compiler.Properties.Aidl.Include_dirs) > 0 {
|
|
|
|
rootAidlIncludeDirs := android.PathsForSource(ctx, compiler.Properties.Aidl.Include_dirs)
|
|
|
|
flags.aidlFlags = append(flags.aidlFlags, includeDirsToFlags(rootAidlIncludeDirs))
|
|
|
|
}
|
|
|
|
|
2018-03-09 09:29:59 +01:00
|
|
|
if Bool(compiler.Properties.Aidl.Generate_traces) {
|
|
|
|
flags.aidlFlags = append(flags.aidlFlags, "-t")
|
|
|
|
}
|
|
|
|
|
2016-11-03 22:28:51 +01:00
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags,
|
|
|
|
"-I"+android.PathForModuleGen(ctx, "aidl").String())
|
|
|
|
}
|
|
|
|
|
2017-05-02 02:37:24 +02:00
|
|
|
if compiler.hasSrcExt(".rs") || compiler.hasSrcExt(".fs") {
|
|
|
|
flags = rsFlags(ctx, flags, &compiler.Properties)
|
|
|
|
}
|
|
|
|
|
2018-09-05 17:55:20 +02:00
|
|
|
if compiler.hasSrcExt(".sysprop") {
|
|
|
|
flags.GlobalFlags = append(flags.GlobalFlags,
|
|
|
|
"-I"+android.PathForModuleGen(ctx, "sysprop", "include").String())
|
|
|
|
}
|
|
|
|
|
2017-11-14 23:09:14 +01:00
|
|
|
if len(compiler.Properties.Srcs) > 0 {
|
|
|
|
module := ctx.ModuleDir() + "/Android.bp:" + ctx.ModuleName()
|
|
|
|
if inList("-Wno-error", flags.CFlags) || inList("-Wno-error", flags.CppFlags) {
|
2019-02-04 20:22:08 +01:00
|
|
|
addToModuleList(ctx, modulesUsingWnoErrorKey, module)
|
2017-11-14 23:09:14 +01:00
|
|
|
} else if !inList("-Werror", flags.CFlags) && !inList("-Werror", flags.CppFlags) {
|
|
|
|
if warningsAreAllowed(ctx.ModuleDir()) {
|
2019-02-04 20:22:08 +01:00
|
|
|
addToModuleList(ctx, modulesAddedWallKey, module)
|
2017-11-14 23:09:14 +01:00
|
|
|
flags.CFlags = append([]string{"-Wall"}, flags.CFlags...)
|
|
|
|
} else {
|
|
|
|
flags.CFlags = append([]string{"-Wall", "-Werror"}, flags.CFlags...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-20 08:08:09 +01:00
|
|
|
if Bool(compiler.Properties.Openmp) {
|
|
|
|
flags.CFlags = append(flags.CFlags, "-fopenmp")
|
|
|
|
}
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
return flags
|
|
|
|
}
|
|
|
|
|
2016-11-03 04:44:08 +01:00
|
|
|
func (compiler *baseCompiler) hasSrcExt(ext string) bool {
|
2017-11-16 23:33:08 +01:00
|
|
|
for _, src := range compiler.srcsBeforeGen {
|
|
|
|
if src.Ext() == ext {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2016-10-21 01:11:43 +02:00
|
|
|
for _, src := range compiler.Properties.Srcs {
|
2016-11-03 04:44:08 +01:00
|
|
|
if filepath.Ext(src) == ext {
|
2016-10-21 01:11:43 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2017-05-03 20:01:58 +02:00
|
|
|
for _, src := range compiler.Properties.OriginalSrcs {
|
|
|
|
if filepath.Ext(src) == ext {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
2016-10-21 01:11:43 +02:00
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2016-10-17 23:24:56 +02:00
|
|
|
var gnuToCReplacer = strings.NewReplacer("gnu", "c")
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
func ndkPathDeps(ctx ModuleContext) android.Paths {
|
2017-09-28 02:01:44 +02:00
|
|
|
if ctx.useSdk() {
|
2016-07-29 21:48:20 +02:00
|
|
|
// The NDK sysroot timestamp file depends on all the NDK sysroot files
|
|
|
|
// (headers and libraries).
|
2017-12-14 00:05:04 +01:00
|
|
|
return android.Paths{getNdkBaseTimestampFile(ctx)}
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-09-27 02:33:01 +02:00
|
|
|
func (compiler *baseCompiler) compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects {
|
2016-07-29 21:48:20 +02:00
|
|
|
pathDeps := deps.GeneratedHeaders
|
|
|
|
pathDeps = append(pathDeps, ndkPathDeps(ctx)...)
|
2016-10-26 19:03:47 +02:00
|
|
|
|
|
|
|
buildFlags := flagsToBuilderFlags(flags)
|
|
|
|
|
2017-11-16 23:33:08 +01:00
|
|
|
srcs := append(android.Paths(nil), compiler.srcsBeforeGen...)
|
|
|
|
|
2016-10-26 19:03:47 +02:00
|
|
|
srcs, genDeps := genSources(ctx, srcs, buildFlags)
|
2018-01-23 19:49:04 +01:00
|
|
|
pathDeps = append(pathDeps, genDeps...)
|
2016-10-26 19:03:47 +02:00
|
|
|
|
2017-12-20 00:11:01 +01:00
|
|
|
compiler.pathDeps = pathDeps
|
2018-01-23 19:49:04 +01:00
|
|
|
compiler.cFlagsDeps = flags.CFlagsDeps
|
2016-10-26 19:03:47 +02:00
|
|
|
|
2017-01-11 01:21:22 +01:00
|
|
|
// Save src, buildFlags and context
|
|
|
|
compiler.srcs = srcs
|
|
|
|
|
2016-07-29 21:48:20 +02:00
|
|
|
// Compile files listed in c.Properties.Srcs into objects
|
2018-01-23 19:49:04 +01:00
|
|
|
objs := compileObjs(ctx, buildFlags, "", srcs, pathDeps, compiler.cFlagsDeps)
|
2016-07-29 21:48:20 +02:00
|
|
|
|
|
|
|
if ctx.Failed() {
|
2016-09-27 02:33:01 +02:00
|
|
|
return Objects{}
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
2016-09-27 02:33:01 +02:00
|
|
|
return objs
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Compile a list of source files into objects a specified subdirectory
|
2016-10-26 19:03:47 +02:00
|
|
|
func compileObjs(ctx android.ModuleContext, flags builderFlags,
|
2018-01-23 19:49:04 +01:00
|
|
|
subdir string, srcFiles, pathDeps android.Paths, cFlagsDeps android.Paths) Objects {
|
2016-07-29 21:48:20 +02:00
|
|
|
|
2018-01-23 19:49:04 +01:00
|
|
|
return TransformSourceToObj(ctx, subdir, srcFiles, flags, pathDeps, cFlagsDeps)
|
2016-07-29 21:48:20 +02:00
|
|
|
}
|