2016-07-29 22:44:28 +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 config
|
2015-05-01 01:36:18 +02:00
|
|
|
|
|
|
|
import (
|
2020-04-01 23:32:52 +02:00
|
|
|
"fmt"
|
2015-12-15 05:02:44 +01:00
|
|
|
"os/exec"
|
2017-03-13 20:40:30 +01:00
|
|
|
"path/filepath"
|
2015-05-01 01:36:18 +02:00
|
|
|
"strings"
|
2020-04-01 23:32:52 +02:00
|
|
|
"sync"
|
2015-05-01 01:36:18 +02:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
"android/soong/android"
|
2015-05-01 01:36:18 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
darwinCflags = []string{
|
|
|
|
"-fPIC",
|
|
|
|
"-funwind-tables",
|
|
|
|
|
|
|
|
// Workaround differences in inttypes.h between host and target.
|
|
|
|
//See bug 12708004.
|
|
|
|
"-D__STDC_FORMAT_MACROS",
|
|
|
|
"-D__STDC_CONSTANT_MACROS",
|
|
|
|
|
|
|
|
"-isysroot ${macSdkRoot}",
|
2016-10-27 04:20:58 +02:00
|
|
|
"-mmacosx-version-min=${macMinVersion}",
|
|
|
|
"-DMACOSX_DEPLOYMENT_TARGET=${macMinVersion}",
|
2018-08-29 02:12:56 +02:00
|
|
|
|
|
|
|
"-m64",
|
2021-07-15 02:03:16 +02:00
|
|
|
|
|
|
|
"-integrated-as",
|
|
|
|
"-fstack-protector-strong",
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
darwinLdflags = []string{
|
|
|
|
"-isysroot ${macSdkRoot}",
|
|
|
|
"-Wl,-syslibroot,${macSdkRoot}",
|
2016-10-27 04:20:58 +02:00
|
|
|
"-mmacosx-version-min=${macMinVersion}",
|
2015-05-01 01:36:18 +02:00
|
|
|
"-m64",
|
2021-07-23 09:34:34 +02:00
|
|
|
"-mlinker-version=305",
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
2015-12-15 05:02:44 +01:00
|
|
|
darwinSupportedSdkVersions = []string{
|
2017-09-24 10:51:02 +02:00
|
|
|
"10.13",
|
2018-08-29 01:48:45 +02:00
|
|
|
"10.14",
|
2019-10-04 01:44:47 +02:00
|
|
|
"10.15",
|
2020-07-15 01:53:43 +02:00
|
|
|
"11.0",
|
2021-01-21 23:56:39 +01:00
|
|
|
"11.1",
|
2021-07-29 21:16:14 +02:00
|
|
|
"11.3",
|
2015-12-15 05:02:44 +01:00
|
|
|
}
|
2016-05-25 23:47:21 +02:00
|
|
|
|
2016-09-29 23:22:54 +02:00
|
|
|
darwinAvailableLibraries = append(
|
|
|
|
addPrefix([]string{
|
|
|
|
"c",
|
|
|
|
"dl",
|
|
|
|
"m",
|
|
|
|
"ncurses",
|
|
|
|
"objc",
|
|
|
|
"pthread",
|
|
|
|
}, "-l"),
|
2016-11-22 02:31:08 +01:00
|
|
|
"-framework AppKit",
|
2016-09-29 23:22:54 +02:00
|
|
|
"-framework CoreFoundation",
|
2016-11-22 02:31:08 +01:00
|
|
|
"-framework Foundation",
|
2016-09-29 23:22:54 +02:00
|
|
|
"-framework IOKit",
|
2016-11-22 02:31:08 +01:00
|
|
|
"-framework Security",
|
2019-02-20 19:28:56 +01:00
|
|
|
"-framework SystemConfiguration",
|
2016-09-29 23:22:54 +02:00
|
|
|
)
|
2015-05-01 01:36:18 +02:00
|
|
|
)
|
|
|
|
|
2015-12-07 21:30:44 +01:00
|
|
|
const (
|
|
|
|
darwinGccVersion = "4.2.1"
|
|
|
|
)
|
|
|
|
|
2015-05-01 01:36:18 +02:00
|
|
|
func init() {
|
2018-03-12 21:24:09 +01:00
|
|
|
pctx.VariableFunc("macSdkRoot", func(ctx android.PackageVarContext) string {
|
2020-04-01 23:32:52 +02:00
|
|
|
return getMacTools(ctx).sdkRoot
|
2015-12-15 05:02:44 +01:00
|
|
|
})
|
2021-07-29 21:16:14 +02:00
|
|
|
pctx.StaticVariable("macMinVersion", "10.13")
|
2018-03-12 21:24:09 +01:00
|
|
|
pctx.VariableFunc("MacArPath", func(ctx android.PackageVarContext) string {
|
2020-04-01 23:32:52 +02:00
|
|
|
return getMacTools(ctx).arPath
|
2015-12-15 05:02:44 +01:00
|
|
|
})
|
2015-05-01 01:36:18 +02:00
|
|
|
|
2018-03-12 21:24:09 +01:00
|
|
|
pctx.VariableFunc("MacStripPath", func(ctx android.PackageVarContext) string {
|
2020-04-01 23:32:52 +02:00
|
|
|
return getMacTools(ctx).stripPath
|
2016-05-04 00:10:29 +02:00
|
|
|
})
|
|
|
|
|
2018-03-12 21:24:09 +01:00
|
|
|
pctx.VariableFunc("MacToolPath", func(ctx android.PackageVarContext) string {
|
2020-04-01 23:32:52 +02:00
|
|
|
return getMacTools(ctx).toolPath
|
2017-03-13 20:40:30 +01:00
|
|
|
})
|
|
|
|
|
2016-07-29 22:44:28 +02:00
|
|
|
pctx.StaticVariable("DarwinGccVersion", darwinGccVersion)
|
|
|
|
pctx.SourcePathVariable("DarwinGccRoot",
|
|
|
|
"prebuilts/gcc/${HostPrebuiltTag}/host/i686-apple-darwin-${DarwinGccVersion}")
|
2015-05-01 01:36:18 +02:00
|
|
|
|
2016-07-29 22:44:28 +02:00
|
|
|
pctx.StaticVariable("DarwinGccTriple", "i686-apple-darwin11")
|
2015-05-01 01:36:18 +02:00
|
|
|
|
2021-07-15 03:45:05 +02:00
|
|
|
pctx.StaticVariable("DarwinCflags", strings.Join(darwinCflags, " "))
|
|
|
|
pctx.StaticVariable("DarwinLdflags", strings.Join(darwinLdflags, " "))
|
|
|
|
pctx.StaticVariable("DarwinLldflags", strings.Join(darwinLdflags, " "))
|
2016-03-09 19:30:22 +01:00
|
|
|
|
2018-08-29 02:12:56 +02:00
|
|
|
pctx.StaticVariable("DarwinYasmFlags", "-f macho -m amd64")
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
2020-04-01 23:32:52 +02:00
|
|
|
type macPlatformTools struct {
|
|
|
|
once sync.Once
|
|
|
|
err error
|
|
|
|
|
|
|
|
sdkRoot string
|
|
|
|
arPath string
|
|
|
|
stripPath string
|
|
|
|
toolPath string
|
2017-05-08 23:15:59 +02:00
|
|
|
}
|
|
|
|
|
2020-04-01 23:32:52 +02:00
|
|
|
var macTools = &macPlatformTools{}
|
2015-12-15 05:02:44 +01:00
|
|
|
|
2020-04-01 23:32:52 +02:00
|
|
|
func getMacTools(ctx android.PackageVarContext) *macPlatformTools {
|
|
|
|
macTools.once.Do(func() {
|
2021-03-11 08:52:39 +01:00
|
|
|
xcrunTool := "/usr/bin/xcrun"
|
2020-04-01 23:32:52 +02:00
|
|
|
|
|
|
|
xcrun := func(args ...string) string {
|
|
|
|
if macTools.err != nil {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
bytes, err := exec.Command(xcrunTool, args...).Output()
|
|
|
|
if err != nil {
|
|
|
|
macTools.err = fmt.Errorf("xcrun %q failed with: %q", args, err)
|
|
|
|
return ""
|
|
|
|
}
|
2015-12-15 05:02:44 +01:00
|
|
|
|
2018-03-12 21:24:09 +01:00
|
|
|
return strings.TrimSpace(string(bytes))
|
2015-12-15 05:02:44 +01:00
|
|
|
}
|
2020-04-01 23:32:52 +02:00
|
|
|
|
|
|
|
xcrunSdk := func(arg string) string {
|
|
|
|
if selected := ctx.Config().Getenv("MAC_SDK_VERSION"); selected != "" {
|
|
|
|
if !inList(selected, darwinSupportedSdkVersions) {
|
|
|
|
macTools.err = fmt.Errorf("MAC_SDK_VERSION %s isn't supported: %q", selected, darwinSupportedSdkVersions)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
return xcrun("--sdk", "macosx"+selected, arg)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, sdk := range darwinSupportedSdkVersions {
|
|
|
|
bytes, err := exec.Command(xcrunTool, "--sdk", "macosx"+sdk, arg).Output()
|
|
|
|
if err == nil {
|
|
|
|
return strings.TrimSpace(string(bytes))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
macTools.err = fmt.Errorf("Could not find a supported mac sdk: %q", darwinSupportedSdkVersions)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
macTools.sdkRoot = xcrunSdk("--show-sdk-path")
|
|
|
|
|
|
|
|
macTools.arPath = xcrun("--find", "ar")
|
|
|
|
macTools.stripPath = xcrun("--find", "strip")
|
|
|
|
macTools.toolPath = filepath.Dir(xcrun("--find", "ld"))
|
|
|
|
})
|
|
|
|
if macTools.err != nil {
|
|
|
|
ctx.Errorf("%q", macTools.err)
|
2015-12-15 05:02:44 +01:00
|
|
|
}
|
2020-04-01 23:32:52 +02:00
|
|
|
return macTools
|
2015-12-15 05:02:44 +01:00
|
|
|
}
|
|
|
|
|
2015-05-01 01:36:18 +02:00
|
|
|
type toolchainDarwin struct {
|
|
|
|
cFlags, ldFlags string
|
|
|
|
toolchain64Bit
|
|
|
|
}
|
|
|
|
|
2018-08-29 02:12:56 +02:00
|
|
|
func (t *toolchainDarwin) Name() string {
|
2015-05-01 01:36:18 +02:00
|
|
|
return "x86_64"
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *toolchainDarwin) GccRoot() string {
|
2016-07-29 22:44:28 +02:00
|
|
|
return "${config.DarwinGccRoot}"
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *toolchainDarwin) GccTriple() string {
|
2016-07-29 22:44:28 +02:00
|
|
|
return "${config.DarwinGccTriple}"
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *toolchainDarwin) GccVersion() string {
|
2015-12-07 21:30:44 +01:00
|
|
|
return darwinGccVersion
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *toolchainDarwin) IncludeFlags() string {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2018-08-29 02:12:56 +02:00
|
|
|
func (t *toolchainDarwin) ClangTriple() string {
|
2016-03-30 09:01:12 +02:00
|
|
|
return "x86_64-apple-darwin"
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
2021-07-15 02:03:16 +02:00
|
|
|
func (t *toolchainDarwin) Cflags() string {
|
2021-07-15 03:45:05 +02:00
|
|
|
return "${config.DarwinCflags}"
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
2021-07-15 02:03:16 +02:00
|
|
|
func (t *toolchainDarwin) Cppflags() string {
|
2016-03-09 19:30:22 +01:00
|
|
|
return ""
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
2021-07-15 02:03:16 +02:00
|
|
|
func (t *toolchainDarwin) Ldflags() string {
|
2021-07-15 03:45:05 +02:00
|
|
|
return "${config.DarwinLdflags}"
|
2018-04-03 20:33:34 +02:00
|
|
|
}
|
|
|
|
|
2021-07-15 02:03:16 +02:00
|
|
|
func (t *toolchainDarwin) Lldflags() string {
|
2021-07-15 03:45:05 +02:00
|
|
|
return "${config.DarwinLldflags}"
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
2018-08-29 02:12:56 +02:00
|
|
|
func (t *toolchainDarwin) YasmFlags() string {
|
|
|
|
return "${config.DarwinYasmFlags}"
|
2017-10-05 02:31:43 +02:00
|
|
|
}
|
|
|
|
|
2015-11-25 02:53:15 +01:00
|
|
|
func (t *toolchainDarwin) ShlibSuffix() string {
|
|
|
|
return ".dylib"
|
|
|
|
}
|
|
|
|
|
2016-05-25 23:47:21 +02:00
|
|
|
func (t *toolchainDarwin) AvailableLibraries() []string {
|
|
|
|
return darwinAvailableLibraries
|
|
|
|
}
|
|
|
|
|
2017-03-13 20:40:30 +01:00
|
|
|
func (t *toolchainDarwin) ToolPath() string {
|
|
|
|
return "${config.MacToolPath}"
|
|
|
|
}
|
|
|
|
|
2018-08-29 02:12:56 +02:00
|
|
|
var toolchainDarwinSingleton Toolchain = &toolchainDarwin{}
|
2015-05-01 01:36:18 +02:00
|
|
|
|
2018-08-29 02:12:56 +02:00
|
|
|
func darwinToolchainFactory(arch android.Arch) Toolchain {
|
|
|
|
return toolchainDarwinSingleton
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2018-08-29 02:12:56 +02:00
|
|
|
registerToolchainFactory(android.Darwin, android.X86_64, darwinToolchainFactory)
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|