blob: f01cdd1c034c01fca47b7e75ebd27a361047da7f [file] [log] [blame]
Chris Dearman1efd9e42014-02-03 15:01:24 -08001#
2# Copyright (C) 2013 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 MIPS64.
18# Included by combo/select.mk
19
20# You can set TARGET_ARCH_VARIANT to use an arch version other
Duane Sand1a074872014-11-08 15:25:18 -080021# than mips64r6. Each value should correspond to a file named
Chris Dearman1efd9e42014-02-03 15:01:24 -080022# $(BUILD_COMBOS)/arch/<name>.mk which must contain
23# makefile variable definitions similar to the preprocessor
24# defines in build/core/combo/include/arch/<combo>/AndroidConfig.h. Their
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#
33ifeq ($(strip $(TARGET_ARCH_VARIANT)),)
Raghu Gandham10326b32014-09-02 16:30:00 -070034TARGET_ARCH_VARIANT := mips64r6
Chris Dearman1efd9e42014-02-03 15:01:24 -080035endif
36
Ben Cheng4de6fa42014-04-10 22:46:26 -070037# Decouple NDK library selection with platform compiler version
Duane Sand1a074872014-11-08 15:25:18 -080038TARGET_NDK_GCC_VERSION := 4.9
Ben Cheng4de6fa42014-04-10 22:46:26 -070039
Chris Dearman1efd9e42014-02-03 15:01:24 -080040ifeq ($(strip $(TARGET_GCC_VERSION_EXP)),)
Duane Sand6670e242014-07-22 14:34:00 -070041TARGET_GCC_VERSION := 4.9
Chris Dearman1efd9e42014-02-03 15:01:24 -080042else
43TARGET_GCC_VERSION := $(TARGET_GCC_VERSION_EXP)
44endif
45
Chris Dearman1efd9e42014-02-03 15:01:24 -080046TARGET_ARCH_SPECIFIC_MAKEFILE := $(BUILD_COMBOS)/arch/$(TARGET_ARCH)/$(TARGET_ARCH_VARIANT).mk
47ifeq ($(strip $(wildcard $(TARGET_ARCH_SPECIFIC_MAKEFILE))),)
48$(error Unknown MIPS architecture variant: $(TARGET_ARCH_VARIANT))
49endif
50
Chris Dearman1efd9e42014-02-03 15:01:24 -080051include $(TARGET_ARCH_SPECIFIC_MAKEFILE)
Dehao Chen7092c792014-07-23 14:28:58 -070052include $(BUILD_SYSTEM)/combo/fdo.mk
Chris Dearman1efd9e42014-02-03 15:01:24 -080053
54# You can set TARGET_TOOLS_PREFIX to get gcc from somewhere else
55ifeq ($(strip $(TARGET_TOOLS_PREFIX)),)
56TARGET_TOOLCHAIN_ROOT := prebuilts/gcc/$(HOST_PREBUILT_TAG)/mips/mips64el-linux-android-$(TARGET_GCC_VERSION)
57TARGET_TOOLS_PREFIX := $(TARGET_TOOLCHAIN_ROOT)/bin/mips64el-linux-android-
58endif
59
Dan Albert216ecac2015-05-04 12:44:44 -070060TARGET_CC := $(TARGET_TOOLS_PREFIX)gcc
61TARGET_CXX := $(TARGET_TOOLS_PREFIX)g++
62TARGET_AR := $(TARGET_TOOLS_PREFIX)ar
63TARGET_OBJCOPY := $(TARGET_TOOLS_PREFIX)objcopy
64TARGET_LD := $(TARGET_TOOLS_PREFIX)ld
65TARGET_READELF := $(TARGET_TOOLS_PREFIX)readelf
66TARGET_STRIP := $(TARGET_TOOLS_PREFIX)strip
Chris Dearman1efd9e42014-02-03 15:01:24 -080067
68TARGET_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined
69
70TARGET_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.
78ifeq ($(FORCE_MIPS_DEBUGGING),true)
79 TARGET_mips_CFLAGS += -fno-omit-frame-pointer
80endif
81
Nikola Veljkovic063ef332015-05-25 11:16:10 +020082# For mips r6 (both 32bit and 64bit), GDB cannot stop on a breakpoint
83# if it is set on a compact branch. Turn generation of compact
84# branches off, to allow GDB to work properly.
85# Note: JIC instruction is not affected by this flag.
86# TODO: Remove this after GDB is fixed.
87ifeq ($(TARGET_ARCH),mips64)
88TARGET_mips_CFLAGS += -mcompact-branches=never
89endif
90
Chris Dearman1efd9e42014-02-03 15:01:24 -080091android_config_h := $(call select-android-config-h,linux-mips64)
92
93TARGET_GLOBAL_CFLAGS += \
94 $(TARGET_mips_CFLAGS) \
Elliott Hughes1acd8b02014-04-23 23:24:36 -070095 -U__unix -U__unix__ -Umips \
Chris Dearman1efd9e42014-02-03 15:01:24 -080096 -ffunction-sections \
97 -fdata-sections \
98 -funwind-tables \
99 -Wa,--noexecstack \
100 -Werror=format-security \
101 -D_FORTIFY_SOURCE=2 \
Andrew Hsieh48f239c2014-05-09 14:13:13 +0800102 -no-canonical-prefixes \
103 -fno-canonical-system-headers \
Chris Dearman1efd9e42014-02-03 15:01:24 -0800104 $(arch_variant_cflags) \
105 -include $(android_config_h) \
106 -I $(dir $(android_config_h))
107
Elliott Hughesd1ea5fb2015-02-24 16:04:31 -0800108# Help catch common 32/64-bit errors.
109TARGET_GLOBAL_CFLAGS += \
110 -Werror=pointer-to-int-cast \
111 -Werror=int-to-pointer-cast \
112 -Werror=implicit-function-declaration \
113
Chris Dearman1efd9e42014-02-03 15:01:24 -0800114ifneq ($(ARCH_MIPS_PAGE_SHIFT),)
115TARGET_GLOBAL_CFLAGS += -DPAGE_SHIFT=$(ARCH_MIPS_PAGE_SHIFT)
116endif
117
118TARGET_GLOBAL_LDFLAGS += \
119 -Wl,-z,noexecstack \
120 -Wl,-z,relro \
121 -Wl,-z,now \
Dehao Chen734de7a2015-01-14 11:21:22 -0800122 -Wl,--build-id=md5 \
Chris Dearman1efd9e42014-02-03 15:01:24 -0800123 -Wl,--warn-shared-textrel \
124 -Wl,--fatal-warnings \
125 $(arch_variant_ldflags)
126
127TARGET_GLOBAL_CPPFLAGS += -fvisibility-inlines-hidden
128
129# More flags/options can be added here
130TARGET_RELEASE_CFLAGS := \
131 -DNDEBUG \
132 -g \
133 -Wstrict-aliasing=2 \
134 -fgcse-after-reload \
135 -frerun-cse-after-loop \
136 -frename-registers
137
138libc_root := bionic/libc
139libm_root := bionic/libm
Chris Dearman1efd9e42014-02-03 15:01:24 -0800140libthread_db_root := bionic/libthread_db
141
142
143## on some hosts, the target cross-compiler is not available so do not run this command
144ifneq ($(wildcard $(TARGET_CC)),)
145# We compile with the global cflags to ensure that
146# any flags which affect libgcc are correctly taken
147# into account.
148TARGET_LIBGCC := \
149 $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) -print-file-name=libgcc.a)
Andrew Hsieh4c952d72014-05-29 02:47:27 -0700150TARGET_LIBATOMIC := \
151 $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) -print-file-name=libatomic.a)
Chris Dearman1efd9e42014-02-03 15:01:24 -0800152LIBGCC_EH := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) -print-file-name=libgcc_eh.a)
153ifneq ($(LIBGCC_EH),libgcc_eh.a)
154 TARGET_LIBGCC += $(LIBGCC_EH)
155endif
Dan Albert4bbc6c72014-09-19 14:25:57 -0700156TARGET_LIBGCOV := $(shell $(TARGET_CC) $(TARGET_GLOBAL_CFLAGS) \
Chris Dearman1efd9e42014-02-03 15:01:24 -0800157 --print-file-name=libgcov.a)
158endif
159
Chris Dearman1efd9e42014-02-03 15:01:24 -0800160KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi
161KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-mips
162# TODO: perhaps use $(libc_root)/kernel/uapi/asm-$(TARGET_ARCH) instead of asm-mips ?
163KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH)
164
165TARGET_C_INCLUDES := \
166 $(libc_root)/arch-mips64/include \
167 $(libc_root)/include \
Chris Dearman1efd9e42014-02-03 15:01:24 -0800168 $(KERNEL_HEADERS) \
169 $(libm_root)/include \
170 $(libm_root)/include/mips \
171 $(libthread_db_root)/include
172# TODO: perhaps use $(libm_root)/include/mips64 instead of mips ?
173
174TARGET_CRTBEGIN_STATIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static.o
175TARGET_CRTBEGIN_DYNAMIC_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic.o
176TARGET_CRTEND_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_android.o
177
178TARGET_CRTBEGIN_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o
179TARGET_CRTEND_SO_O := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o
180
Dmitriy Ivanov8387d992015-04-29 15:34:21 -0700181TARGET_PACK_MODULE_RELOCATIONS := true
182
Chris Dearman1efd9e42014-02-03 15:01:24 -0800183TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES := libc libstdc++ libm
184
Dan Alberte088c0d2014-11-13 10:15:46 -0800185TARGET_LINKER := /system/bin/linker64