2010-02-23 21:36:56 +01:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
2008-10-21 16:00:00 +02:00
|
|
|
# Configuration for Linux on ARM.
|
2010-02-23 21:36:56 +01:00
|
|
|
# Included by combo/select.mk
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2009-05-29 15:34:02 +02:00
|
|
|
# You can set TARGET_ARCH_VARIANT to use an arch version other
|
|
|
|
# than ARMv5TE. Each value should correspond to a file named
|
|
|
|
# $(BUILD_COMBOS)/arch/<name>.mk which must contain
|
|
|
|
# makefile variable definitions similar to the preprocessor
|
2012-09-20 19:06:33 +02:00
|
|
|
# defines in build/core/combo/include/arch/<combo>/AndroidConfig.h. Their
|
2009-05-29 15:34:02 +02:00
|
|
|
# purpose is to allow module Android.mk files to selectively compile
|
|
|
|
# different versions of code based upon the funtionality and
|
2008-10-30 16:41:09 +01:00
|
|
|
# instructions available in a given architecture version.
|
|
|
|
#
|
2009-05-29 15:34:02 +02:00
|
|
|
# The blocks also define specific arch_variant_cflags, which
|
2008-10-30 16:41:09 +01:00
|
|
|
# include defines, and compiler settings for the given architecture
|
|
|
|
# version.
|
|
|
|
#
|
2013-12-27 20:09:36 +01:00
|
|
|
ifeq ($(strip $(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT)),)
|
|
|
|
TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT := armv5te
|
2008-10-30 16:41:09 +01:00
|
|
|
endif
|
2009-05-29 15:34:02 +02:00
|
|
|
|
2012-12-13 01:22:54 +01:00
|
|
|
ifeq ($(strip $(TARGET_GCC_VERSION_EXP)),)
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_GCC_VERSION := 4.8
|
2012-12-13 01:22:54 +01:00
|
|
|
else
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_GCC_VERSION := $(TARGET_GCC_VERSION_EXP)
|
2012-12-11 23:01:10 +01:00
|
|
|
endif
|
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
TARGET_ARCH_SPECIFIC_MAKEFILE := $(BUILD_COMBOS)/arch/$(TARGET_$(combo_2nd_arch_prefix)ARCH)/$(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT).mk
|
2009-05-29 15:34:02 +02:00
|
|
|
ifeq ($(strip $(wildcard $(TARGET_ARCH_SPECIFIC_MAKEFILE))),)
|
2013-12-27 20:09:36 +01:00
|
|
|
$(error Unknown ARM architecture version: $(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT))
|
2009-05-28 21:47:23 +02:00
|
|
|
endif
|
2008-10-30 16:41:09 +01:00
|
|
|
|
2009-05-29 15:34:02 +02:00
|
|
|
include $(TARGET_ARCH_SPECIFIC_MAKEFILE)
|
|
|
|
|
2008-10-21 16:00:00 +02:00
|
|
|
# You can set TARGET_TOOLS_PREFIX to get gcc from somewhere else
|
2013-12-27 20:09:36 +01:00
|
|
|
ifeq ($(strip $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)),)
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_TOOLCHAIN_ROOT := prebuilts/gcc/$(HOST_PREBUILT_TAG)/arm/arm-linux-androideabi-$($(combo_2nd_arch_prefix)TARGET_GCC_VERSION)
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX := $($(combo_2nd_arch_prefix)TARGET_TOOLCHAIN_ROOT)/bin/arm-linux-androideabi-
|
2008-10-21 16:00:00 +02:00
|
|
|
endif
|
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_CC := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)gcc$(HOST_EXECUTABLE_SUFFIX)
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_CXX := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)g++$(HOST_EXECUTABLE_SUFFIX)
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_AR := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)ar$(HOST_EXECUTABLE_SUFFIX)
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_OBJCOPY := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)objcopy$(HOST_EXECUTABLE_SUFFIX)
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_LD := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)ld$(HOST_EXECUTABLE_SUFFIX)
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_STRIP := $($(combo_2nd_arch_prefix)TARGET_TOOLS_PREFIX)strip$(HOST_EXECUTABLE_SUFFIX)
|
2013-01-30 19:25:38 +01:00
|
|
|
ifeq ($(TARGET_BUILD_VARIANT),user)
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_STRIP_COMMAND = $(PRIVATE_STRIP) --strip-all $< -o $@
|
2013-01-30 19:25:38 +01:00
|
|
|
else
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_STRIP_COMMAND = $(PRIVATE_STRIP) --strip-all $< -o $@ && \
|
|
|
|
$(PRIVATE_OBJCOPY) --add-gnu-debuglink=$< $@
|
2011-06-21 02:25:01 +02:00
|
|
|
endif
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_NO_UNDEFINED_LDFLAGS := -Wl,--no-undefined
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_arm_CFLAGS := -O2 \
|
2009-04-24 03:44:55 +02:00
|
|
|
-fomit-frame-pointer \
|
|
|
|
-fstrict-aliasing \
|
2010-12-22 01:33:48 +01:00
|
|
|
-funswitch-loops
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-02-14 21:04:48 +01:00
|
|
|
# Modules can choose to compile some source as thumb.
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_thumb_CFLAGS := -mthumb \
|
2009-04-24 03:44:55 +02:00
|
|
|
-Os \
|
|
|
|
-fomit-frame-pointer \
|
2010-12-22 01:33:48 +01:00
|
|
|
-fno-strict-aliasing
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2009-04-24 03:44:55 +02:00
|
|
|
# Set FORCE_ARM_DEBUGGING to "true" in your buildspec.mk
|
|
|
|
# or in your environment to force a full arm build, even for
|
|
|
|
# files that are normally built as thumb; this can make
|
|
|
|
# gdb debugging easier. Don't forget to do a clean build.
|
|
|
|
#
|
|
|
|
# NOTE: if you try to build a -O0 build with thumb, several
|
2008-10-21 16:00:00 +02:00
|
|
|
# of the libraries (libpv, libwebcore, libkjs) need to be built
|
|
|
|
# with -mlong-calls. When built at -O0, those libraries are
|
|
|
|
# too big for a thumb "BL <label>" to go from one end to the other.
|
2009-04-24 03:44:55 +02:00
|
|
|
ifeq ($(FORCE_ARM_DEBUGGING),true)
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_arm_CFLAGS += -fno-omit-frame-pointer -fno-strict-aliasing
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_thumb_CFLAGS += -marm -fno-omit-frame-pointer
|
2009-04-24 03:44:55 +02:00
|
|
|
endif
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-08-15 20:01:10 +02:00
|
|
|
android_config_h := $(call select-android-config-h,linux-arm)
|
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += \
|
2011-10-24 19:53:36 +02:00
|
|
|
-msoft-float -fpic -fPIE \
|
2008-10-21 16:00:00 +02:00
|
|
|
-ffunction-sections \
|
2010-06-29 20:14:42 +02:00
|
|
|
-fdata-sections \
|
2008-10-21 16:00:00 +02:00
|
|
|
-funwind-tables \
|
|
|
|
-fstack-protector \
|
2010-05-05 20:09:52 +02:00
|
|
|
-Wa,--noexecstack \
|
2010-05-14 18:34:59 +02:00
|
|
|
-Werror=format-security \
|
2013-04-26 01:49:10 +02:00
|
|
|
-D_FORTIFY_SOURCE=2 \
|
2009-01-10 02:50:54 +01:00
|
|
|
-fno-short-enums \
|
2013-08-15 20:01:10 +02:00
|
|
|
$(arch_variant_cflags) \
|
|
|
|
-include $(android_config_h) \
|
|
|
|
-I $(dir $(android_config_h))
|
2008-10-30 16:41:09 +01:00
|
|
|
|
2013-08-28 20:00:54 +02:00
|
|
|
# The "-Wunused-but-set-variable" option often breaks projects that enable
|
|
|
|
# "-Wall -Werror" due to a commom idiom "ALOGV(mesg)" where ALOGV is turned
|
|
|
|
# into no-op in some builds while mesg is defined earlier. So we explicitly
|
|
|
|
# disable "-Wunused-but-set-variable" here.
|
2013-12-27 20:09:36 +01:00
|
|
|
ifneq ($(filter 4.6 4.6.% 4.7 4.7.% 4.8, $($(combo_2nd_arch_prefix)TARGET_GCC_VERSION)),)
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -Wno-unused-but-set-variable -fno-builtin-sin \
|
2013-08-28 20:00:54 +02:00
|
|
|
-fno-strict-volatile-bitfields
|
2011-07-15 01:34:26 +02:00
|
|
|
endif
|
|
|
|
|
2010-06-17 01:04:55 +02:00
|
|
|
# This is to avoid the dreaded warning compiler message:
|
|
|
|
# note: the mangling of 'va_list' has changed in GCC 4.4
|
|
|
|
#
|
|
|
|
# The fact that the mangling changed does not affect the NDK ABI
|
|
|
|
# very fortunately (since none of the exposed APIs used va_list
|
|
|
|
# in their exported C++ functions). Also, GCC 4.5 has already
|
|
|
|
# removed the warning from the compiler.
|
|
|
|
#
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -Wno-psabi
|
2010-06-17 01:04:55 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_GLOBAL_LDFLAGS += \
|
2010-05-05 20:09:52 +02:00
|
|
|
-Wl,-z,noexecstack \
|
2012-04-26 18:09:24 +02:00
|
|
|
-Wl,-z,relro \
|
|
|
|
-Wl,-z,now \
|
2012-08-10 21:51:26 +02:00
|
|
|
-Wl,--warn-shared-textrel \
|
2012-10-18 23:21:26 +02:00
|
|
|
-Wl,--fatal-warnings \
|
2010-06-29 20:14:42 +02:00
|
|
|
-Wl,--icf=safe \
|
2009-07-18 00:57:10 +02:00
|
|
|
$(arch_variant_ldflags)
|
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS += -mthumb-interwork
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_GLOBAL_CPPFLAGS += -fvisibility-inlines-hidden
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2010-10-22 00:15:09 +02:00
|
|
|
# More flags/options can be added here
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_RELEASE_CFLAGS := \
|
2009-10-30 13:32:28 +01:00
|
|
|
-DNDEBUG \
|
2009-03-05 23:34:30 +01:00
|
|
|
-g \
|
2008-10-21 16:00:00 +02:00
|
|
|
-Wstrict-aliasing=2 \
|
|
|
|
-fgcse-after-reload \
|
|
|
|
-frerun-cse-after-loop \
|
|
|
|
-frename-registers
|
|
|
|
|
|
|
|
libc_root := bionic/libc
|
|
|
|
libm_root := bionic/libm
|
|
|
|
libstdc++_root := bionic/libstdc++
|
|
|
|
|
2008-10-30 16:41:09 +01:00
|
|
|
|
|
|
|
## on some hosts, the target cross-compiler is not available so do not run this command
|
2013-12-27 20:09:36 +01:00
|
|
|
ifneq ($(wildcard $($(combo_2nd_arch_prefix)TARGET_CC)),)
|
2009-05-29 15:34:02 +02:00
|
|
|
# We compile with the global cflags to ensure that
|
2008-10-30 16:41:09 +01:00
|
|
|
# any flags which affect libgcc are correctly taken
|
|
|
|
# into account.
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_LIBGCC := $(shell $($(combo_2nd_arch_prefix)TARGET_CC) \
|
|
|
|
$($(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS) -print-libgcc-file-name)
|
|
|
|
target_libgcov := $(shell $($(combo_2nd_arch_prefix)TARGET_CC) $($(combo_2nd_arch_prefix)TARGET_GLOBAL_CFLAGS) \
|
2013-01-30 19:25:38 +01:00
|
|
|
-print-file-name=libgcov.a)
|
2008-10-30 16:41:09 +01:00
|
|
|
endif
|
|
|
|
|
2009-09-22 01:31:50 +02:00
|
|
|
# Define FDO (Feedback Directed Optimization) options.
|
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_FDO_CFLAGS:=
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_FDO_LIB:=
|
2009-09-22 01:31:50 +02:00
|
|
|
|
|
|
|
ifneq ($(strip $(BUILD_FDO_INSTRUMENT)),)
|
|
|
|
# Set BUILD_FDO_INSTRUMENT=true to turn on FDO instrumentation.
|
|
|
|
# The profile will be generated on /data/local/tmp/profile on the device.
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_FDO_CFLAGS := -fprofile-generate=/data/local/tmp/profile -DANDROID_FDO
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_FDO_LIB := $(target_libgcov)
|
2009-09-22 01:31:50 +02:00
|
|
|
else
|
|
|
|
# If BUILD_FDO_INSTRUMENT is turned off, then consider doing the FDO optimizations.
|
|
|
|
# Set TARGET_FDO_PROFILE_PATH to set a custom profile directory for your build.
|
2014-01-16 01:02:16 +01:00
|
|
|
ifeq ($(strip $($(combo_2nd_arch_prefix)TARGET_FDO_PROFILE_PATH)),)
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_FDO_PROFILE_PATH := fdo/profiles/$(TARGET_$(combo_2nd_arch_prefix)ARCH)/$(TARGET_$(combo_2nd_arch_prefix)ARCH_VARIANT)
|
2009-09-22 01:31:50 +02:00
|
|
|
else
|
2013-12-27 20:09:36 +01:00
|
|
|
ifeq ($(strip $(wildcard $($(combo_2nd_arch_prefix)TARGET_FDO_PROFILE_PATH))),)
|
|
|
|
$(warning Custom $(combo_2nd_arch_prefix)TARGET_FDO_PROFILE_PATH supplied, but directory does not exist. Turn off FDO.)
|
2009-09-22 01:31:50 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
# If the FDO profile directory can't be found, then FDO is off.
|
2013-12-27 20:09:36 +01:00
|
|
|
ifneq ($(strip $(wildcard $($(combo_2nd_arch_prefix)TARGET_FDO_PROFILE_PATH))),)
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_FDO_CFLAGS := -fprofile-use=$($(combo_2nd_arch_prefix)TARGET_FDO_PROFILE_PATH) -DANDROID_FDO
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_FDO_LIB := $(target_libgcov)
|
2009-09-22 01:31:50 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2014-01-11 01:35:08 +01:00
|
|
|
KERNEL_HEADERS_COMMON := $(libc_root)/kernel/uapi
|
2014-01-22 01:54:00 +01:00
|
|
|
KERNEL_HEADERS_ARCH := $(libc_root)/kernel/uapi/asm-$(TARGET_$(combo_2nd_arch_prefix)ARCH)
|
2013-12-16 22:58:39 +01:00
|
|
|
KERNEL_HEADERS := $(KERNEL_HEADERS_COMMON) $(KERNEL_HEADERS_ARCH)
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_C_INCLUDES := \
|
2008-10-21 16:00:00 +02:00
|
|
|
$(libc_root)/arch-arm/include \
|
|
|
|
$(libc_root)/include \
|
|
|
|
$(libstdc++_root)/include \
|
|
|
|
$(KERNEL_HEADERS) \
|
|
|
|
$(libm_root)/include \
|
2010-08-06 02:46:47 +02:00
|
|
|
$(libm_root)/include/arm \
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_CRTBEGIN_STATIC_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_static.o
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_CRTBEGIN_DYNAMIC_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_dynamic.o
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_CRTEND_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_android.o
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_CRTBEGIN_SO_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtbegin_so.o
|
|
|
|
$(combo_2nd_arch_prefix)TARGET_CRTEND_SO_O := $($(combo_2nd_arch_prefix)TARGET_OUT_INTERMEDIATE_LIBRARIES)/crtend_so.o
|
2010-06-19 00:05:01 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_STRIP_MODULE:=true
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_DEFAULT_SYSTEM_SHARED_LIBRARIES := libc libstdc++ libm
|
2008-10-21 16:00:00 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
$(combo_2nd_arch_prefix)TARGET_CUSTOM_LD_COMMAND := true
|
2009-09-09 01:31:55 +02:00
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
define $(combo_2nd_arch_prefix)transform-o-to-shared-lib-inner
|
2011-01-28 23:14:47 +01:00
|
|
|
$(hide) $(PRIVATE_CXX) \
|
2012-04-26 18:09:24 +02:00
|
|
|
-nostdlib -Wl,-soname,$(notdir $@) \
|
2008-10-21 16:00:00 +02:00
|
|
|
-Wl,--gc-sections \
|
|
|
|
-Wl,-shared,-Bsymbolic \
|
2010-07-13 23:55:47 +02:00
|
|
|
$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
|
2011-02-05 05:15:00 +01:00
|
|
|
$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_SO_O)) \
|
2012-08-21 10:42:32 +02:00
|
|
|
$(PRIVATE_ALL_OBJECTS) \
|
2008-10-21 16:00:00 +02:00
|
|
|
-Wl,--whole-archive \
|
2011-01-25 08:25:36 +01:00
|
|
|
$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
|
2008-10-21 16:00:00 +02:00
|
|
|
-Wl,--no-whole-archive \
|
2011-04-25 23:22:41 +02:00
|
|
|
$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
|
2008-10-21 16:00:00 +02:00
|
|
|
$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
|
2011-04-25 23:22:41 +02:00
|
|
|
$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
|
2013-05-03 23:12:31 +02:00
|
|
|
$(if $(TARGET_BUILD_APPS),$(PRIVATE_TARGET_LIBGCC)) \
|
2013-08-07 09:00:39 +02:00
|
|
|
$(PRIVATE_TARGET_FDO_LIB) \
|
2008-10-21 16:00:00 +02:00
|
|
|
$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
|
|
|
|
-o $@ \
|
2010-07-13 23:55:47 +02:00
|
|
|
$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
|
2010-04-26 23:12:19 +02:00
|
|
|
$(PRIVATE_LDFLAGS) \
|
2010-07-14 02:21:33 +02:00
|
|
|
$(PRIVATE_TARGET_LIBGCC) \
|
2011-02-05 05:15:00 +01:00
|
|
|
$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_SO_O))
|
2008-10-21 16:00:00 +02:00
|
|
|
endef
|
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
define $(combo_2nd_arch_prefix)transform-o-to-executable-inner
|
2011-10-24 19:53:36 +02:00
|
|
|
$(hide) $(PRIVATE_CXX) -nostdlib -Bdynamic -fPIE -pie \
|
2008-10-21 16:00:00 +02:00
|
|
|
-Wl,-dynamic-linker,/system/bin/linker \
|
2012-08-17 01:45:01 +02:00
|
|
|
-Wl,--gc-sections \
|
2008-10-21 16:00:00 +02:00
|
|
|
-Wl,-z,nocopyreloc \
|
2012-09-26 02:52:10 +02:00
|
|
|
$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
|
2014-02-22 01:17:05 +01:00
|
|
|
-Wl,-rpath-link=$(PRIVATE_TARGET_OUT_INTERMEDIATE_LIBRARIES) \
|
2012-09-26 02:52:10 +02:00
|
|
|
$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_DYNAMIC_O)) \
|
2008-10-21 16:00:00 +02:00
|
|
|
$(PRIVATE_ALL_OBJECTS) \
|
2012-01-20 12:21:46 +01:00
|
|
|
-Wl,--whole-archive \
|
|
|
|
$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
|
|
|
|
-Wl,--no-whole-archive \
|
2011-04-25 23:22:41 +02:00
|
|
|
$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \
|
2008-10-21 16:00:00 +02:00
|
|
|
$(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
|
2011-04-25 23:22:41 +02:00
|
|
|
$(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \
|
2013-05-03 23:12:31 +02:00
|
|
|
$(if $(TARGET_BUILD_APPS),$(PRIVATE_TARGET_LIBGCC)) \
|
2013-08-07 09:00:39 +02:00
|
|
|
$(PRIVATE_TARGET_FDO_LIB) \
|
2013-03-13 02:15:18 +01:00
|
|
|
$(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
|
|
|
|
-o $@ \
|
2012-09-26 02:52:10 +02:00
|
|
|
$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
|
2010-04-26 23:12:19 +02:00
|
|
|
$(PRIVATE_LDFLAGS) \
|
2012-09-26 02:52:10 +02:00
|
|
|
$(PRIVATE_TARGET_LIBGCC) \
|
|
|
|
$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_O))
|
2008-10-21 16:00:00 +02:00
|
|
|
endef
|
|
|
|
|
2013-12-27 20:09:36 +01:00
|
|
|
define $(combo_2nd_arch_prefix)transform-o-to-static-executable-inner
|
2011-11-01 18:59:35 +01:00
|
|
|
$(hide) $(PRIVATE_CXX) -nostdlib -Bstatic \
|
2012-08-17 01:45:01 +02:00
|
|
|
-Wl,--gc-sections \
|
2008-10-21 16:00:00 +02:00
|
|
|
-o $@ \
|
2012-09-26 02:52:10 +02:00
|
|
|
$(PRIVATE_TARGET_GLOBAL_LD_DIRS) \
|
|
|
|
$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTBEGIN_STATIC_O)) \
|
|
|
|
$(PRIVATE_TARGET_GLOBAL_LDFLAGS) \
|
2010-04-26 23:12:19 +02:00
|
|
|
$(PRIVATE_LDFLAGS) \
|
2008-10-21 16:00:00 +02:00
|
|
|
$(PRIVATE_ALL_OBJECTS) \
|
2012-01-20 12:21:46 +01:00
|
|
|
-Wl,--whole-archive \
|
|
|
|
$(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
|
|
|
|
-Wl,--no-whole-archive \
|
2010-05-20 21:00:54 +02:00
|
|
|
$(call normalize-target-libraries,$(filter-out %libc_nomalloc.a,$(filter-out %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES)))) \
|
|
|
|
-Wl,--start-group \
|
|
|
|
$(call normalize-target-libraries,$(filter %libc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
|
|
|
|
$(call normalize-target-libraries,$(filter %libc_nomalloc.a,$(PRIVATE_ALL_STATIC_LIBRARIES))) \
|
2012-09-26 02:52:10 +02:00
|
|
|
$(PRIVATE_TARGET_FDO_LIB) \
|
|
|
|
$(PRIVATE_TARGET_LIBGCC) \
|
2010-05-20 21:00:54 +02:00
|
|
|
-Wl,--end-group \
|
2012-09-26 02:52:10 +02:00
|
|
|
$(if $(filter true,$(PRIVATE_NO_CRT)),,$(PRIVATE_TARGET_CRTEND_O))
|
2008-10-21 16:00:00 +02:00
|
|
|
endef
|