Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 1 | // 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 | |
| 15 | package config |
| 16 | |
| 17 | import ( |
| 18 | "strings" |
| 19 | |
| 20 | "android/soong/android" |
| 21 | ) |
| 22 | |
| 23 | var ( |
| 24 | linuxBionicCflags = ClangFilterUnknownCflags([]string{ |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 25 | "-fdiagnostics-color", |
| 26 | |
| 27 | "-Wa,--noexecstack", |
| 28 | |
| 29 | "-fPIC", |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 30 | |
| 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 Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 42 | "-fno-canonical-system-headers", |
| 43 | |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 44 | // Tell clang where the gcc toolchain is |
| 45 | "--gcc-toolchain=${LinuxBionicGccRoot}", |
| 46 | |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 47 | // 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 Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 58 | "-Wl,--hash-style=gnu", |
| 59 | "-Wl,--no-undefined-version", |
| 60 | |
| 61 | // Use the device gcc toolchain |
| 62 | "--gcc-toolchain=${LinuxBionicGccRoot}", |
| 63 | }) |
Chih-Hung Hsieh | 3101a96 | 2018-04-17 14:16:05 -0700 | [diff] [blame] | 64 | |
| 65 | linuxBionicLldflags = ClangFilterUnknownLldflags(linuxBionicLdflags) |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 66 | ) |
| 67 | |
| 68 | func init() { |
| 69 | pctx.StaticVariable("LinuxBionicCflags", strings.Join(linuxBionicCflags, " ")) |
| 70 | pctx.StaticVariable("LinuxBionicLdflags", strings.Join(linuxBionicLdflags, " ")) |
Chih-Hung Hsieh | 3101a96 | 2018-04-17 14:16:05 -0700 | [diff] [blame] | 71 | pctx.StaticVariable("LinuxBionicLldflags", strings.Join(linuxBionicLldflags, " ")) |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 72 | |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 73 | // Use the device gcc toolchain for now |
| 74 | pctx.StaticVariable("LinuxBionicGccRoot", "${X86_64GccRoot}") |
| 75 | } |
| 76 | |
| 77 | type toolchainLinuxBionic struct { |
| 78 | toolchain64Bit |
| 79 | } |
| 80 | |
| 81 | func (t *toolchainLinuxBionic) Name() string { |
| 82 | return "x86_64" |
| 83 | } |
| 84 | |
| 85 | func (t *toolchainLinuxBionic) GccRoot() string { |
| 86 | return "${config.LinuxBionicGccRoot}" |
| 87 | } |
| 88 | |
| 89 | func (t *toolchainLinuxBionic) GccTriple() string { |
| 90 | return "x86_64-linux-android" |
| 91 | } |
| 92 | |
| 93 | func (t *toolchainLinuxBionic) GccVersion() string { |
| 94 | return "4.9" |
| 95 | } |
| 96 | |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 97 | func (t *toolchainLinuxBionic) IncludeFlags() string { |
Martin Stjernholm | 41ab251 | 2020-04-08 01:06:07 +0100 | [diff] [blame] | 98 | return "" |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | func (t *toolchainLinuxBionic) ClangTriple() string { |
| 102 | // TODO: we don't have a triple yet b/31393676 |
| 103 | return "x86_64-linux-android" |
| 104 | } |
| 105 | |
| 106 | func (t *toolchainLinuxBionic) ClangCflags() string { |
| 107 | return "${config.LinuxBionicCflags}" |
| 108 | } |
| 109 | |
| 110 | func (t *toolchainLinuxBionic) ClangCppflags() string { |
| 111 | return "" |
| 112 | } |
| 113 | |
| 114 | func (t *toolchainLinuxBionic) ClangLdflags() string { |
| 115 | return "${config.LinuxBionicLdflags}" |
| 116 | } |
| 117 | |
Chih-Hung Hsieh | 02b4da5 | 2018-04-03 11:33:34 -0700 | [diff] [blame] | 118 | func (t *toolchainLinuxBionic) ClangLldflags() string { |
Chih-Hung Hsieh | 3101a96 | 2018-04-17 14:16:05 -0700 | [diff] [blame] | 119 | return "${config.LinuxBionicLldflags}" |
Chih-Hung Hsieh | 02b4da5 | 2018-04-03 11:33:34 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 122 | func (t *toolchainLinuxBionic) ToolchainClangCflags() string { |
Dan Willemsen | 38394b9 | 2017-09-18 22:50:22 -0700 | [diff] [blame] | 123 | return "-m64 -march=x86-64" + |
| 124 | // TODO: We're not really android, but we don't have a triple yet b/31393676 |
Alex Light | a08ae84 | 2018-10-31 11:18:22 -0700 | [diff] [blame] | 125 | " -U__ANDROID__" |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | func (t *toolchainLinuxBionic) ToolchainClangLdflags() string { |
| 129 | return "-m64" |
| 130 | } |
| 131 | |
| 132 | func (t *toolchainLinuxBionic) AvailableLibraries() []string { |
| 133 | return nil |
| 134 | } |
| 135 | |
| 136 | func (t *toolchainLinuxBionic) Bionic() bool { |
| 137 | return true |
| 138 | } |
| 139 | |
Dan Willemsen | 9ff34c0 | 2018-10-10 17:58:19 -0700 | [diff] [blame] | 140 | func (toolchainLinuxBionic) LibclangRuntimeLibraryArch() string { |
| 141 | return "x86_64" |
| 142 | } |
| 143 | |
Dan Willemsen | 01a405a | 2016-06-13 17:19:03 -0700 | [diff] [blame] | 144 | var toolchainLinuxBionicSingleton Toolchain = &toolchainLinuxBionic{} |
| 145 | |
| 146 | func linuxBionicToolchainFactory(arch android.Arch) Toolchain { |
| 147 | return toolchainLinuxBionicSingleton |
| 148 | } |
| 149 | |
| 150 | func init() { |
| 151 | registerToolchainFactory(android.LinuxBionic, android.X86_64, linuxBionicToolchainFactory) |
| 152 | } |