Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2010 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | |
| 17 | # Configuration for Linux on MIPS. |
| 18 | # Included by combo/select.mk |
| 19 | |
| 20 | # You can set TARGET_ARCH_VARIANT to use an arch version other |
| 21 | # than mips32r2-fp. Each value should correspond to a file named |
| 22 | # $(BUILD_COMBOS)/arch/<name>.mk which must contain |
| 23 | # makefile variable definitions similar to the preprocessor |
Ying Wang | 5bdf305 | 2012-09-20 10:06:33 -0700 | [diff] [blame] | 24 | # defines in build/core/combo/include/arch/<combo>/AndroidConfig.h. Their |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 25 | # purpose is to allow module Android.mk files to selectively compile |
| 26 | # different versions of code based upon the funtionality and |
| 27 | # instructions available in a given architecture version. |
| 28 | # |
| 29 | # The blocks also define specific arch_variant_cflags, which |
| 30 | # include defines, and compiler settings for the given architecture |
| 31 | # version. |
| 32 | # |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 33 | ifeq ($(strip $(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT)),) |
| 34 | TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT := mips32r2-fp |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 35 | endif |
| 36 | |
Ben Cheng | 4de6fa4 | 2014-04-10 22:46:26 -0700 | [diff] [blame] | 37 | # Decouple NDK library selection with platform compiler version |
Duane Sand | 1a07487 | 2014-11-08 15:25:18 -0800 | [diff] [blame] | 38 | $(combo_2nd_arch_prefix)TARGET_NDK_GCC_VERSION := 4.9 |
Ben Cheng | 4de6fa4 | 2014-04-10 22:46:26 -0700 | [diff] [blame] | 39 | |
Ben Cheng | 914f7fd | 2012-12-12 16:22:54 -0800 | [diff] [blame] | 40 | ifeq ($(strip $(TARGET_GCC_VERSION_EXP)),) |
Duane Sand | 6670e24 | 2014-07-22 14:34:00 -0700 | [diff] [blame] | 41 | $(combo_2nd_arch_prefix)TARGET_GCC_VERSION := 4.9 |
Ben Cheng | 914f7fd | 2012-12-12 16:22:54 -0800 | [diff] [blame] | 42 | else |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 43 | $(combo_2nd_arch_prefix)TARGET_GCC_VERSION := $(TARGET_GCC_VERSION_EXP) |
Ben Cheng | 054ffd2 | 2012-12-11 14:01:10 -0800 | [diff] [blame] | 44 | endif |
| 45 | |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 46 | TARGET_ARCH_SPECIFIC_MAKEFILE := $(BUILD_COMBOS)/arch/$(TARGET_$(combo_2nd_arch_prefix)ARCH)/$(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT).mk |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 47 | ifeq ($(strip $(wildcard $(TARGET_ARCH_SPECIFIC_MAKEFILE))),) |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 48 | $(error Unknown MIPS architecture variant: $(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT)) |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 49 | endif |
| 50 | |
| 51 | include $(TARGET_ARCH_SPECIFIC_MAKEFILE) |
Dehao Chen | 7092c79 | 2014-07-23 14:28:58 -0700 | [diff] [blame] | 52 | include $(BUILD_SYSTEM)/combo/fdo.mk |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 53 | |
| 54 | # You can set TARGET_TOOLS_PREFIX to get gcc from somewhere else |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 55 | ifeq ($(strip $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)),) |
Duane Sand | 6670e24 | 2014-07-22 14:34:00 -0700 | [diff] [blame] | 56 | $(combo_2nd_arch_prefix)TARGET_TOOLCHAIN_ROOT := prebuilts/gcc/$(HOST_PREBUILT_TAG)/mips/mips64el-linux-android-$($(combo_2nd_arch_prefix)TARGET_GCC_VERSION) |
| 57 | $(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX := $($(combo_2nd_arch_prefix)TARGET_TOOLCHAIN_ROOT)/bin/mips64el-linux-android- |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 58 | endif |
| 59 | |
Dan Albert | 216ecac | 2015-05-04 12:44:44 -0700 | [diff] [blame] | 60 | $(combo_2nd_arch_prefix)TARGET_CC := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)gcc |
Dmitriy Ivanov | 392569c | 2015-05-04 18:10:47 -0700 | [diff] [blame^] | 61 | $(combo_2nd_arch_prefix)TARGET_CXX := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)g++ |
Dan Albert | 216ecac | 2015-05-04 12:44:44 -0700 | [diff] [blame] | 62 | $(combo_2nd_arch_prefix)TARGET_AR := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)ar |
| 63 | $(combo_2nd_arch_prefix)TARGET_OBJCOPY := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)objcopy |
| 64 | $(combo_2nd_arch_prefix)TARGET_LD := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)ld |
| 65 | $(combo_2nd_arch_prefix)TARGET_READELF := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)readelf |
| 66 | $(combo_2nd_arch_prefix)TARGET_STRIP := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)strip |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 67 | |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 68 | $(combo_2nd_arch_prefix)TARGET_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 69 | |
| 70 | TARGET_mips_CFLAGS := -O2 \ |
| 71 | -fomit-frame-pointer \ |
| 72 | -fno-strict-aliasing \ |
| 73 | -funswitch-loops |
| 74 | |
| 75 | # Set FORCE_MIPS_DEBUGGING to "true" in your buildspec.mk |
| 76 | # or in your environment to gdb debugging easier. |
| 77 | # Don't forget to do a clean build. |
| 78 | ifeq ($(FORCE_MIPS_DEBUGGING),true) |
| 79 | TARGET_mips_CFLAGS += -fno-omit-frame-pointer |
| 80 | endif |
| 81 | |
Ying Wang | f4723fa | 2013-08-15 11:01:10 -0700 | [diff] [blame] | 82 | android_config_h := $(call select-android-config-h,linux-mips) |
| 83 | |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 84 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += \ |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 85 | $(TARGET_mips_CFLAGS) \ |
Elliott Hughes | 1acd8b0 | 2014-04-23 23:24:36 -0700 | [diff] [blame] | 86 | -U__unix -U__unix__ -Umips \ |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 87 | -ffunction-sections \ |
| 88 | -fdata-sections \ |
| 89 | -funwind-tables \ |
Chris Dearman | 6cc0c33 | 2012-11-14 18:45:47 -0800 | [diff] [blame] | 90 | -Wa,--noexecstack \ |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 91 | -Werror=format-security \ |
Nick Kralevich | fb45baa | 2013-04-29 12:41:53 -0700 | [diff] [blame] | 92 | -D_FORTIFY_SOURCE=2 \ |
Andrew Hsieh | 48f239c | 2014-05-09 14:13:13 +0800 | [diff] [blame] | 93 | -no-canonical-prefixes \ |
| 94 | -fno-canonical-system-headers \ |
Ying Wang | f4723fa | 2013-08-15 11:01:10 -0700 | [diff] [blame] | 95 | $(arch_variant_cflags) \ |
| 96 | -include $(android_config_h) \ |
| 97 | -I $(dir $(android_config_h)) |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 98 | |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 99 | ifneq ($(ARCH_MIPS_PAGE_SHIFT),) |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 100 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -DPAGE_SHIFT=$(ARCH_MIPS_PAGE_SHIFT) |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 101 | endif |
| 102 | |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 103 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += \ |
Chris Dearman | 6cc0c33 | 2012-11-14 18:45:47 -0800 | [diff] [blame] | 104 | -Wl,-z,noexecstack \ |
| 105 | -Wl,-z,relro \ |
| 106 | -Wl,-z,now \ |
Dehao Chen | 734de7a | 2015-01-14 11:21:22 -0800 | [diff] [blame] | 107 | -Wl,--build-id=md5 \ |
Chris Dearman | 6cc0c33 | 2012-11-14 18:45:47 -0800 | [diff] [blame] | 108 | -Wl,--warn-shared-textrel \ |
Chris Dearman | 13eb1eb | 2014-01-14 22:35:13 -0800 | [diff] [blame] | 109 | -Wl,--fatal-warnings \ |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 110 | $(arch_variant_ldflags) |
| 111 | |
Ying Wang | 624ef02 | 2015-02-03 10:58:50 -0800 | [diff] [blame] | 112 | # Disable transitive dependency library symbol resolving. |
| 113 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -Wl,--allow-shlib-undefined |
| 114 | |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 115 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CPPFLAGS += -fvisibility-inlines-hidden |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 116 | |
| 117 | # More flags/options can be added here |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 118 | $(combo_2nd_arch_prefix)TARGET_RELEASE_CFLAGS := \ |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 119 | -DNDEBUG \ |
| 120 | -g \ |
| 121 | -Wstrict-aliasing=2 \ |
| 122 | -fgcse-after-reload \ |
| 123 | -frerun-cse-after-loop \ |
| 124 | -frename-registers |
| 125 | |
| 126 | libc_root := bionic/libc |
| 127 | libm_root := bionic/libm |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 128 | |
| 129 | |
| 130 | ## on some hosts, the target cross-compiler is not available so do not run this command |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 131 | ifneq ($(wildcard $($(combo_2nd_arch_prefix)TARGET_CC)),) |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 132 | # We compile with the global cflags to ensure that |
| 133 | # any flags which affect libgcc are correctly taken |
| 134 | # into account. |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 135 | $(combo_2nd_arch_prefix)TARGET_LIBGCC := \ |
| 136 | $(shell $($(combo_2nd_arch_prefix)TARGET_CC) $($(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS) -print-file-name=libgcc.a) |
Andrew Hsieh | 4c952d7 | 2014-05-29 02:47:27 -0700 | [diff] [blame] | 137 | $(combo_2nd_arch_prefix)TARGET_LIBATOMIC := \ |
| 138 | $(shell $($(combo_2nd_arch_prefix)TARGET_CC) $($(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS) -print-file-name=libatomic.a) |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 139 | LIBGCC_EH := $(shell $($(combo_2nd_arch_prefix)TARGET_CC) $($(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS) -print-file-name=libgcc_eh.a) |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 140 | ifneq ($(LIBGCC_EH),libgcc_eh.a) |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 141 | $(combo_2nd_arch_prefix)TARGET_LIBGCC += $(LIBGCC_EH) |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 142 | endif |
Dan Albert | 4bbc6c7 | 2014-09-19 14:25:57 -0700 | [diff] [blame] | 143 | $(combo_2nd_arch_prefix)TARGET_LIBGCOV := $(shell $($(combo_2nd_arch_prefix)TARGET_CC) $($(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS) \ |
Ying Wang | b6457c2 | 2013-01-30 10:25:38 -0800 | [diff] [blame] | 144 | --print-file-name=libgcov.a) |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 145 | endif |
| 146 | |
Elliott Hughes | dddb566 | 2014-01-10 16:35:08 -0800 | [diff] [blame] | 147 | KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi |
Elliott Hughes | 171e940 | 2014-01-28 13:07:55 -0800 | [diff] [blame] | 148 | KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-mips # mips covers both mips and mips64. |
Elliott Hughes | b88bdeb | 2013-11-25 14:01:10 -0800 | [diff] [blame] | 149 | KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH) |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 150 | |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 151 | $(combo_2nd_arch_prefix)TARGET_C_INCLUDES := \ |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 152 | $(libc_root)/arch-mips/include \ |
| 153 | $(libc_root)/include \ |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 154 | $(KERNEL_HEADERS) \ |
| 155 | $(libm_root)/include \ |
| 156 | $(libm_root)/include/mips \ |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 157 | |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 158 | $(combo_2nd_arch_prefix)TARGET_CRTBEGIN_STATIC_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static.o |
| 159 | $(combo_2nd_arch_prefix)TARGET_CRTBEGIN_DYNAMIC_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic.o |
| 160 | $(combo_2nd_arch_prefix)TARGET_CRTEND_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_android.o |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 161 | |
Elliott Hughes | 369b332 | 2014-02-19 18:47:50 -0800 | [diff] [blame] | 162 | $(combo_2nd_arch_prefix)TARGET_CRTBEGIN_SO_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o |
| 163 | $(combo_2nd_arch_prefix)TARGET_CRTEND_SO_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 164 | |
Dmitriy Ivanov | cb2b3d4 | 2015-04-29 14:50:05 -0700 | [diff] [blame] | 165 | $(combo_2nd_arch_prefix)TARGET_PACK_MODULE_RELOCATIONS := true |
| 166 | |
Dan Albert | b05f2ca | 2014-09-12 14:46:57 -0700 | [diff] [blame] | 167 | $(combo_2nd_arch_prefix)TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES := libc libm |
Raghu Gandham | 06afc1c | 2012-07-25 19:57:22 -0700 | [diff] [blame] | 168 | |
Dan Albert | e088c0d | 2014-11-13 10:15:46 -0800 | [diff] [blame] | 169 | $(combo_2nd_arch_prefix)TARGET_LINKER := /system/bin/linker |