blob: 057e905d9eecdb32ca0d38f4a724c49bcdb7ff5a [file] [log] [blame]
Dan Willemsen01a405a2016-06-13 17:19:03 -07001// Copyright 2016 Google Inc. All rights reserved.
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 config
16
17import (
18 "strings"
19
20 "android/soong/android"
21)
22
23var (
24 linuxBionicCflags = ClangFilterUnknownCflags([]string{
Dan Willemsen01a405a2016-06-13 17:19:03 -070025 "-fdiagnostics-color",
26
27 "-Wa,--noexecstack",
28
29 "-fPIC",
Dan Willemsen01a405a2016-06-13 17:19:03 -070030
31 "-U_FORTIFY_SOURCE",
32 "-D_FORTIFY_SOURCE=2",
33 "-fstack-protector-strong",
34
35 // From x86_64_device
36 "-ffunction-sections",
37 "-finline-functions",
38 "-finline-limit=300",
39 "-fno-short-enums",
40 "-funswitch-loops",
41 "-funwind-tables",
Dan Willemsen01a405a2016-06-13 17:19:03 -070042 "-fno-canonical-system-headers",
43
Dan Willemsen01a405a2016-06-13 17:19:03 -070044 // Tell clang where the gcc toolchain is
45 "--gcc-toolchain=${LinuxBionicGccRoot}",
46
Dan Willemsen01a405a2016-06-13 17:19:03 -070047 // This is normally in ClangExtraTargetCflags, but this is considered host
48 "-nostdlibinc",
49 })
50
51 linuxBionicLdflags = ClangFilterUnknownCflags([]string{
52 "-Wl,-z,noexecstack",
53 "-Wl,-z,relro",
54 "-Wl,-z,now",
55 "-Wl,--build-id=md5",
56 "-Wl,--warn-shared-textrel",
57 "-Wl,--fatal-warnings",
Dan Willemsen01a405a2016-06-13 17:19:03 -070058 "-Wl,--hash-style=gnu",
59 "-Wl,--no-undefined-version",
60
61 // Use the device gcc toolchain
62 "--gcc-toolchain=${LinuxBionicGccRoot}",
63 })
64)
65
66func init() {
67 pctx.StaticVariable("LinuxBionicCflags", strings.Join(linuxBionicCflags, " "))
68 pctx.StaticVariable("LinuxBionicLdflags", strings.Join(linuxBionicLdflags, " "))
69
Elliott Hughesde28deb2017-10-12 09:07:53 -070070 pctx.StaticVariable("LinuxBionicIncludeFlags", bionicHeaders("x86"))
Dan Willemsen01a405a2016-06-13 17:19:03 -070071
72 // Use the device gcc toolchain for now
73 pctx.StaticVariable("LinuxBionicGccRoot", "${X86_64GccRoot}")
74}
75
76type toolchainLinuxBionic struct {
77 toolchain64Bit
78}
79
80func (t *toolchainLinuxBionic) Name() string {
81 return "x86_64"
82}
83
84func (t *toolchainLinuxBionic) GccRoot() string {
85 return "${config.LinuxBionicGccRoot}"
86}
87
88func (t *toolchainLinuxBionic) GccTriple() string {
89 return "x86_64-linux-android"
90}
91
92func (t *toolchainLinuxBionic) GccVersion() string {
93 return "4.9"
94}
95
96func (t *toolchainLinuxBionic) Cflags() string {
97 return ""
98}
99
100func (t *toolchainLinuxBionic) Cppflags() string {
101 return ""
102}
103
104func (t *toolchainLinuxBionic) Ldflags() string {
105 return ""
106}
107
108func (t *toolchainLinuxBionic) IncludeFlags() string {
109 return "${config.LinuxBionicIncludeFlags}"
110}
111
112func (t *toolchainLinuxBionic) ClangTriple() string {
113 // TODO: we don't have a triple yet b/31393676
114 return "x86_64-linux-android"
115}
116
117func (t *toolchainLinuxBionic) ClangCflags() string {
118 return "${config.LinuxBionicCflags}"
119}
120
121func (t *toolchainLinuxBionic) ClangCppflags() string {
122 return ""
123}
124
125func (t *toolchainLinuxBionic) ClangLdflags() string {
126 return "${config.LinuxBionicLdflags}"
127}
128
Chih-Hung Hsieh02b4da52018-04-03 11:33:34 -0700129func (t *toolchainLinuxBionic) ClangLldflags() string {
130 // TODO: define and use LinuxBionicLldflags
131 return "${config.LinuxBionicLdflags}"
132}
133
Dan Willemsen01a405a2016-06-13 17:19:03 -0700134func (t *toolchainLinuxBionic) ToolchainClangCflags() string {
Dan Willemsen38394b92017-09-18 22:50:22 -0700135 return "-m64 -march=x86-64" +
136 // TODO: We're not really android, but we don't have a triple yet b/31393676
137 " -U__ANDROID__ -fno-emulated-tls"
Dan Willemsen01a405a2016-06-13 17:19:03 -0700138}
139
140func (t *toolchainLinuxBionic) ToolchainClangLdflags() string {
141 return "-m64"
142}
143
144func (t *toolchainLinuxBionic) AvailableLibraries() []string {
145 return nil
146}
147
148func (t *toolchainLinuxBionic) Bionic() bool {
149 return true
150}
151
152var toolchainLinuxBionicSingleton Toolchain = &toolchainLinuxBionic{}
153
154func linuxBionicToolchainFactory(arch android.Arch) Toolchain {
155 return toolchainLinuxBionicSingleton
156}
157
158func init() {
159 registerToolchainFactory(android.LinuxBionic, android.X86_64, linuxBionicToolchainFactory)
160}