Jean-Baptiste Queru | 9b4a812 | 2010-02-23 12:36:56 -0800 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2006 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 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 17 | # Configuration for Linux on x86 as a target. |
Jean-Baptiste Queru | 9b4a812 | 2010-02-23 12:36:56 -0800 | [diff] [blame] | 18 | # Included by combo/select.mk |
| 19 | |
Jean-Baptiste Queru | 9b4a812 | 2010-02-23 12:36:56 -0800 | [diff] [blame] | 20 | # Provide a default variant. |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 21 | ifeq ($(strip $(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT)),) |
| 22 | TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT := x86 |
Jean-Baptiste Queru | 9b4a812 | 2010-02-23 12:36:56 -0800 | [diff] [blame] | 23 | endif |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 24 | |
Ben Cheng | 4de6fa4 | 2014-04-10 22:46:26 -0700 | [diff] [blame] | 25 | # Decouple NDK library selection with platform compiler version |
| 26 | $(combo_2nd_arch_prefix)TARGET_NDK_GCC_VERSION := 4.8 |
| 27 | |
Ben Cheng | 914f7fd | 2012-12-12 16:22:54 -0800 | [diff] [blame] | 28 | ifeq ($(strip $(TARGET_GCC_VERSION_EXP)),) |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 29 | $(combo_2nd_arch_prefix)TARGET_GCC_VERSION := 4.8 |
Ben Cheng | 914f7fd | 2012-12-12 16:22:54 -0800 | [diff] [blame] | 30 | else |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 31 | $(combo_2nd_arch_prefix)TARGET_GCC_VERSION := $(TARGET_GCC_VERSION_EXP) |
Ben Cheng | 054ffd2 | 2012-12-11 14:01:10 -0800 | [diff] [blame] | 32 | endif |
| 33 | |
David 'Digit' Turner | 6371da1 | 2011-12-13 17:21:56 +0100 | [diff] [blame] | 34 | # Include the arch-variant-specific configuration file. |
| 35 | # Its role is to define various ARCH_X86_HAVE_XXX feature macros, |
| 36 | # plus initial values for TARGET_GLOBAL_CFLAGS |
| 37 | # |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 38 | TARGET_ARCH_SPECIFIC_MAKEFILE := $(BUILD_COMBOS)/arch/$(TARGET_$(combo_2nd_arch_prefix)ARCH)/$(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT).mk |
David 'Digit' Turner | 6371da1 | 2011-12-13 17:21:56 +0100 | [diff] [blame] | 39 | ifeq ($(strip $(wildcard $(TARGET_ARCH_SPECIFIC_MAKEFILE))),) |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 40 | $(error Unknown $(TARGET_$(combo_2nd_arch_prefix)ARCH) architecture version: $(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT)) |
David 'Digit' Turner | 6371da1 | 2011-12-13 17:21:56 +0100 | [diff] [blame] | 41 | endif |
| 42 | |
| 43 | include $(TARGET_ARCH_SPECIFIC_MAKEFILE) |
Dehao Chen | 25671e1 | 2014-07-23 14:28:58 -0700 | [diff] [blame] | 44 | include $(BUILD_SYSTEM)/combo/fdo.mk |
David 'Digit' Turner | 6371da1 | 2011-12-13 17:21:56 +0100 | [diff] [blame] | 45 | |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 46 | # You can set TARGET_TOOLS_PREFIX to get gcc from somewhere else |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 47 | ifeq ($(strip $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)),) |
| 48 | $(combo_2nd_arch_prefix)TARGET_TOOLCHAIN_ROOT := prebuilts/gcc/$(HOST_PREBUILT_TAG)/x86/x86_64-linux-android-$($(combo_2nd_arch_prefix)TARGET_GCC_VERSION) |
| 49 | $(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX := $($(combo_2nd_arch_prefix)TARGET_TOOLCHAIN_ROOT)/bin/x86_64-linux-android- |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 50 | endif |
| 51 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 52 | $(combo_2nd_arch_prefix)TARGET_CC := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)gcc$(HOST_EXECUTABLE_SUFFIX) |
| 53 | $(combo_2nd_arch_prefix)TARGET_CXX := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)g++$(HOST_EXECUTABLE_SUFFIX) |
| 54 | $(combo_2nd_arch_prefix)TARGET_AR := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)ar$(HOST_EXECUTABLE_SUFFIX) |
| 55 | $(combo_2nd_arch_prefix)TARGET_OBJCOPY := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)objcopy$(HOST_EXECUTABLE_SUFFIX) |
| 56 | $(combo_2nd_arch_prefix)TARGET_LD := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)ld$(HOST_EXECUTABLE_SUFFIX) |
Christopher Ferris | a6e2f93 | 2014-03-18 14:50:09 -0700 | [diff] [blame] | 57 | $(combo_2nd_arch_prefix)TARGET_READELF := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)readelf$(HOST_EXECUTABLE_SUFFIX) |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 58 | $(combo_2nd_arch_prefix)TARGET_STRIP := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)strip$(HOST_EXECUTABLE_SUFFIX) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 59 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 60 | ifneq ($(wildcard $($(combo_2nd_arch_prefix)TARGET_CC)),) |
| 61 | $(combo_2nd_arch_prefix)TARGET_LIBGCC := \ |
| 62 | $(shell $($(combo_2nd_arch_prefix)TARGET_CC) -m32 -print-file-name=libgcc.a) |
Andrew Hsieh | 4c952d7 | 2014-05-29 02:47:27 -0700 | [diff] [blame] | 63 | $(combo_2nd_arch_prefix)TARGET_LIBATOMIC := \ |
| 64 | $(shell $($(combo_2nd_arch_prefix)TARGET_CC) -m32 -print-file-name=libatomic.a) |
Dan Albert | 4bbc6c7 | 2014-09-19 14:25:57 -0700 | [diff] [blame] | 65 | $(combo_2nd_arch_prefix)TARGET_LIBGCOV := \ |
| 66 | $(shell $($(combo_2nd_arch_prefix)TARGET_CC) -m32 -print-file-name=libgcov.a) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 67 | endif |
| 68 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 69 | $(combo_2nd_arch_prefix)TARGET_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 70 | |
| 71 | libc_root := bionic/libc |
| 72 | libm_root := bionic/libm |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 73 | |
Elliott Hughes | dddb566 | 2014-01-10 16:35:08 -0800 | [diff] [blame] | 74 | KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi |
Elliott Hughes | 171e940 | 2014-01-28 13:07:55 -0800 | [diff] [blame] | 75 | KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-x86 # x86 covers both x86 and x86_64. |
Elliott Hughes | e5df095 | 2013-11-25 16:38:47 -0800 | [diff] [blame] | 76 | KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 77 | |
Ying Wang | f4723fa | 2013-08-15 11:01:10 -0700 | [diff] [blame] | 78 | android_config_h := $(call select-android-config-h,target_linux-x86) |
| 79 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 80 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += \ |
Mark D Horn | 5812d7b | 2011-04-26 14:15:26 -0700 | [diff] [blame] | 81 | -O2 \ |
Mark D Horn | 5812d7b | 2011-04-26 14:15:26 -0700 | [diff] [blame] | 82 | -Wa,--noexecstack \ |
| 83 | -Werror=format-security \ |
Nick Kralevich | fb45baa | 2013-04-29 12:41:53 -0700 | [diff] [blame] | 84 | -D_FORTIFY_SOURCE=2 \ |
Mark D Horn | 5812d7b | 2011-04-26 14:15:26 -0700 | [diff] [blame] | 85 | -Wstrict-aliasing=2 \ |
Mark D Horn | 5812d7b | 2011-04-26 14:15:26 -0700 | [diff] [blame] | 86 | -ffunction-sections \ |
| 87 | -finline-functions \ |
| 88 | -finline-limit=300 \ |
Mark D Horn | 5812d7b | 2011-04-26 14:15:26 -0700 | [diff] [blame] | 89 | -fno-short-enums \ |
| 90 | -fstrict-aliasing \ |
| 91 | -funswitch-loops \ |
| 92 | -funwind-tables \ |
Negreanu Marius Adrian | ae5c0ab | 2011-09-28 17:47:50 +0300 | [diff] [blame] | 93 | -fstack-protector \ |
Ying Wang | 4a712bf | 2013-09-19 10:15:38 -0700 | [diff] [blame] | 94 | -m32 \ |
Andrew Hsieh | 48f239c | 2014-05-09 14:13:13 +0800 | [diff] [blame] | 95 | -no-canonical-prefixes \ |
| 96 | -fno-canonical-system-headers \ |
Ying Wang | f4723fa | 2013-08-15 11:01:10 -0700 | [diff] [blame] | 97 | -include $(android_config_h) \ |
| 98 | -I $(dir $(android_config_h)) |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 99 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 100 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += $(arch_variant_cflags) |
Bruce Beare | 3343b27 | 2011-12-09 13:27:08 -0800 | [diff] [blame] | 101 | |
David 'Digit' Turner | 6371da1 | 2011-12-13 17:21:56 +0100 | [diff] [blame] | 102 | ifeq ($(ARCH_X86_HAVE_SSSE3),true) # yes, really SSSE3, not SSE3! |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 103 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -DUSE_SSSE3 -mssse3 |
Negreanu Marius Adrian | ae5c0ab | 2011-09-28 17:47:50 +0300 | [diff] [blame] | 104 | endif |
| 105 | ifeq ($(ARCH_X86_HAVE_SSE4),true) |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 106 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -msse4 |
Negreanu Marius Adrian | ae5c0ab | 2011-09-28 17:47:50 +0300 | [diff] [blame] | 107 | endif |
| 108 | ifeq ($(ARCH_X86_HAVE_SSE4_1),true) |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 109 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -msse4.1 |
Negreanu Marius Adrian | ae5c0ab | 2011-09-28 17:47:50 +0300 | [diff] [blame] | 110 | endif |
| 111 | ifeq ($(ARCH_X86_HAVE_SSE4_2),true) |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 112 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -msse4.2 |
Negreanu Marius Adrian | ae5c0ab | 2011-09-28 17:47:50 +0300 | [diff] [blame] | 113 | endif |
| 114 | ifeq ($(ARCH_X86_HAVE_AVX),true) |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 115 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -mavx |
Negreanu Marius Adrian | ae5c0ab | 2011-09-28 17:47:50 +0300 | [diff] [blame] | 116 | endif |
| 117 | ifeq ($(ARCH_X86_HAVE_AES_NI),true) |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 118 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -maes |
David 'Digit' Turner | 6371da1 | 2011-12-13 17:21:56 +0100 | [diff] [blame] | 119 | endif |
| 120 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 121 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -m32 |
David 'Digit' Turner | 6371da1 | 2011-12-13 17:21:56 +0100 | [diff] [blame] | 122 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 123 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -Wl,-z,noexecstack |
| 124 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -Wl,-z,relro -Wl,-z,now |
Dehao Chen | 734de7a | 2015-01-14 11:21:22 -0800 | [diff] [blame^] | 125 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -Wl,--build-id=md5 |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 126 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -Wl,--warn-shared-textrel |
| 127 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -Wl,--fatal-warnings |
| 128 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -Wl,--gc-sections |
Dmitriy Ivanov | 179685c | 2014-11-13 14:51:10 -0800 | [diff] [blame] | 129 | $(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += -Wl,--hash-style=gnu |
Bruce Beare | ccec9c4 | 2010-10-14 14:12:46 -0700 | [diff] [blame] | 130 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 131 | $(combo_2nd_arch_prefix)TARGET_C_INCLUDES := \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 132 | $(libc_root)/arch-x86/include \ |
| 133 | $(libc_root)/include \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 134 | $(KERNEL_HEADERS) \ |
| 135 | $(libm_root)/include \ |
| 136 | $(libm_root)/include/i387 \ |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 137 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 138 | $(combo_2nd_arch_prefix)TARGET_CRTBEGIN_STATIC_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static.o |
| 139 | $(combo_2nd_arch_prefix)TARGET_CRTBEGIN_DYNAMIC_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic.o |
| 140 | $(combo_2nd_arch_prefix)TARGET_CRTEND_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_android.o |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 141 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 142 | $(combo_2nd_arch_prefix)TARGET_CRTBEGIN_SO_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o |
| 143 | $(combo_2nd_arch_prefix)TARGET_CRTEND_SO_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 144 | |
Qiming Shi | 310324d | 2014-02-17 15:13:48 +0800 | [diff] [blame] | 145 | $(combo_2nd_arch_prefix)TARGET_STRIP_MODULE:=true |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 146 | |
Dan Albert | b05f2ca | 2014-09-12 14:46:57 -0700 | [diff] [blame] | 147 | $(combo_2nd_arch_prefix)TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES := libc libm |
The Android Open Source Project | 88b6079 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 148 | |
Dan Albert | e088c0d | 2014-11-13 10:15:46 -0800 | [diff] [blame] | 149 | $(combo_2nd_arch_prefix)TARGET_LINKER := /system/bin/linker |