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.
|
|
|
|
#
|
|
|
|
|
|
|
|
# Configuration for Darwin (Mac OS X) on x86.
|
|
|
|
# Included by combo/select.mk
|
|
|
|
|
2012-02-28 06:03:30 +01:00
|
|
|
ifneq ($(strip $(BUILD_HOST_64bit)),)
|
|
|
|
# By default we build everything in 32-bit, because it gives us
|
2010-05-27 01:13:54 +02:00
|
|
|
# more consistency between the host tools and the target.
|
2012-02-28 06:03:30 +01:00
|
|
|
# BUILD_HOST_64bit=1 overrides it for tool like emulator
|
|
|
|
# which can benefit from 64-bit host arch.
|
|
|
|
HOST_GLOBAL_CFLAGS += -m64
|
|
|
|
HOST_GLOBAL_LDFLAGS += -m64
|
|
|
|
else
|
2010-05-27 01:13:54 +02:00
|
|
|
HOST_GLOBAL_CFLAGS += -m32
|
|
|
|
HOST_GLOBAL_LDFLAGS += -m32
|
2012-02-28 06:03:30 +01:00
|
|
|
endif # BUILD_HOST_64bit
|
2010-05-27 01:13:54 +02:00
|
|
|
|
2012-04-27 18:35:19 +02:00
|
|
|
ifneq ($(strip $(BUILD_HOST_static)),)
|
|
|
|
# Statically-linked binaries are desirable for sandboxed environment
|
|
|
|
HOST_GLOBAL_LDFLAGS += -static
|
|
|
|
endif # BUILD_HOST_static
|
|
|
|
|
2012-06-08 07:55:05 +02:00
|
|
|
build_mac_version := $(shell sw_vers -productVersion)
|
2012-07-30 19:09:38 +02:00
|
|
|
|
2012-11-10 06:12:02 +01:00
|
|
|
mac_sdk_versions_supported := 10.6 10.7 10.8
|
|
|
|
ifneq ($(strip $(MAC_SDK_VERSION)),)
|
|
|
|
mac_sdk_version := $(MAC_SDK_VERSION)
|
|
|
|
ifeq ($(filter $(mac_sdk_version),$(mac_sdk_versions_supported)),)
|
|
|
|
$(warning ****************************************************************)
|
|
|
|
$(warning * MAC_SDK_VERSION $(MAC_SDK_VERSION) isn't one of the supported $(mac_sdk_versions_supported))
|
|
|
|
$(warning ****************************************************************)
|
|
|
|
$(error Stop.)
|
|
|
|
endif
|
2012-07-30 19:09:38 +02:00
|
|
|
else
|
2012-11-10 06:12:02 +01:00
|
|
|
mac_sdk_versions_installed := $(shell xcodebuild -showsdks | grep macosx | sort | sed -e "s/.*macosx//g")
|
2012-07-30 19:09:38 +02:00
|
|
|
mac_sdk_version := $(firstword $(filter $(mac_sdk_versions_installed), $(mac_sdk_versions_supported)))
|
|
|
|
ifeq ($(mac_sdk_version),)
|
|
|
|
mac_sdk_version := $(firstword $(mac_sdk_versions_supported))
|
|
|
|
endif
|
2012-11-10 06:12:02 +01:00
|
|
|
endif
|
2012-07-30 19:09:38 +02:00
|
|
|
|
|
|
|
mac_sdk_path := $(shell xcode-select -print-path)
|
2012-11-10 06:12:02 +01:00
|
|
|
# try /Applications/Xcode*.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.?.sdk
|
|
|
|
# or /Volume/Xcode/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.?.sdk
|
2012-07-30 19:09:38 +02:00
|
|
|
mac_sdk_root := $(mac_sdk_path)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$(mac_sdk_version).sdk
|
2012-11-10 06:12:02 +01:00
|
|
|
ifeq ($(wildcard $(mac_sdk_root)),)
|
|
|
|
# try legacy /Developer/SDKs/MacOSX10.?.sdk
|
|
|
|
mac_sdk_root := /Developer/SDKs/MacOSX$(mac_sdk_version).sdk
|
2012-07-30 19:09:38 +02:00
|
|
|
endif
|
2012-05-26 00:14:12 +02:00
|
|
|
ifeq ($(wildcard $(mac_sdk_root)),)
|
2010-08-25 03:33:22 +02:00
|
|
|
$(warning *****************************************************)
|
2012-05-26 00:14:12 +02:00
|
|
|
$(warning * Can not find SDK $(mac_sdk_version) at $(mac_sdk_root))
|
2010-08-25 03:33:22 +02:00
|
|
|
$(warning *****************************************************)
|
|
|
|
$(error Stop.)
|
|
|
|
endif
|
|
|
|
|
2012-11-10 06:12:02 +01:00
|
|
|
ifeq ($(mac_sdk_version),10.6)
|
|
|
|
gcc_darwin_version := 10
|
|
|
|
else
|
|
|
|
gcc_darwin_version := 11
|
|
|
|
endif
|
2010-02-23 21:36:56 +01:00
|
|
|
|
2012-11-10 06:12:02 +01:00
|
|
|
HOST_TOOLCHAIN_ROOT := prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1
|
2012-11-12 23:31:20 +01:00
|
|
|
HOST_TOOLCHAIN_PREFIX := $(HOST_TOOLCHAIN_ROOT)/bin/i686-apple-darwin$(gcc_darwin_version)
|
2012-11-10 06:12:02 +01:00
|
|
|
# Don't do anything if the toolchain is not there
|
2012-11-12 23:31:20 +01:00
|
|
|
ifneq (,$(strip $(wildcard $(HOST_TOOLCHAIN_PREFIX)-gcc)))
|
|
|
|
HOST_CC := $(HOST_TOOLCHAIN_PREFIX)-gcc
|
|
|
|
HOST_CXX := $(HOST_TOOLCHAIN_PREFIX)-g++
|
2012-11-10 06:12:02 +01:00
|
|
|
ifeq ($(mac_sdk_version),10.8)
|
|
|
|
# Mac SDK 10.8 no longer has stdarg.h, etc
|
|
|
|
host_toolchain_header := $(HOST_TOOLCHAIN_ROOT)/lib/gcc/i686-apple-darwin$(gcc_darwin_version)/4.2.1/include
|
|
|
|
HOST_GLOBAL_CFLAGS += -isystem $(host_toolchain_header)
|
|
|
|
endif
|
|
|
|
else
|
2012-02-23 19:14:27 +01:00
|
|
|
HOST_CC := gcc
|
|
|
|
HOST_CXX := g++
|
2012-11-12 23:31:20 +01:00
|
|
|
endif # $(HOST_TOOLCHAIN_PREFIX)-gcc exists
|
2010-02-23 21:36:56 +01:00
|
|
|
HOST_AR := $(AR)
|
2010-06-24 23:02:00 +02:00
|
|
|
HOST_STRIP := $(STRIP)
|
|
|
|
HOST_STRIP_COMMAND = $(HOST_STRIP) --strip-debug $< -o $@
|
2010-02-23 21:36:56 +01:00
|
|
|
|
2012-11-12 21:50:03 +01:00
|
|
|
HOST_GLOBAL_CFLAGS += -isysroot $(mac_sdk_root) -mmacosx-version-min=$(mac_sdk_version) -DMACOSX_DEPLOYMENT_TARGET=$(mac_sdk_version)
|
|
|
|
HOST_GLOBAL_LDFLAGS += -isysroot $(mac_sdk_root) -Wl,-syslibroot,$(mac_sdk_root) -mmacosx-version-min=$(mac_sdk_version)
|
2012-11-10 06:12:02 +01:00
|
|
|
|
2012-11-12 21:50:03 +01:00
|
|
|
HOST_GLOBAL_CFLAGS += -fPIC -funwind-tables
|
2012-11-10 06:12:02 +01:00
|
|
|
HOST_NO_UNDEFINED_LDFLAGS := -Wl,-undefined,error
|
|
|
|
|
2010-02-23 21:36:56 +01:00
|
|
|
HOST_SHLIB_SUFFIX := .dylib
|
|
|
|
HOST_JNILIB_SUFFIX := .jnilib
|
|
|
|
|
|
|
|
HOST_GLOBAL_CFLAGS += \
|
2012-06-06 00:44:21 +02:00
|
|
|
-include $(call select-android-config-h,darwin-x86)
|
2012-09-20 19:06:33 +02:00
|
|
|
|
2012-05-07 10:33:34 +02:00
|
|
|
ifneq ($(filter 10.7 10.7.% 10.8 10.8.%, $(build_mac_version)),)
|
2011-12-21 22:12:05 +01:00
|
|
|
HOST_RUN_RANLIB_AFTER_COPYING := false
|
|
|
|
else
|
|
|
|
HOST_RUN_RANLIB_AFTER_COPYING := true
|
2012-01-05 00:16:50 +01:00
|
|
|
PRE_LION_DYNAMIC_LINKER_OPTIONS := -Wl,-dynamic
|
2011-12-21 22:12:05 +01:00
|
|
|
endif
|
2010-02-23 21:36:56 +01:00
|
|
|
HOST_GLOBAL_ARFLAGS := cqs
|
|
|
|
|
|
|
|
HOST_CUSTOM_LD_COMMAND := true
|
|
|
|
|
|
|
|
define transform-host-o-to-shared-lib-inner
|
2011-01-28 23:14:47 +01:00
|
|
|
$(hide) $(PRIVATE_CXX) \
|
2010-02-23 21:36:56 +01:00
|
|
|
-dynamiclib -single_module -read_only_relocs suppress \
|
|
|
|
$(HOST_GLOBAL_LD_DIRS) \
|
2010-05-27 01:13:54 +02:00
|
|
|
$(HOST_GLOBAL_LDFLAGS) \
|
2010-02-23 21:36:56 +01:00
|
|
|
$(PRIVATE_ALL_OBJECTS) \
|
2012-05-02 13:41:41 +02:00
|
|
|
$(addprefix -force_load , $(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
|
2011-01-25 08:25:36 +01:00
|
|
|
$(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
|
|
|
|
$(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
|
2010-02-23 21:36:56 +01:00
|
|
|
$(PRIVATE_LDLIBS) \
|
|
|
|
-o $@ \
|
2012-02-01 22:18:20 +01:00
|
|
|
-install_name @rpath/$(notdir $@) \
|
|
|
|
-Wl,-rpath,@loader_path/../lib \
|
2010-02-23 21:36:56 +01:00
|
|
|
$(PRIVATE_LDFLAGS) \
|
|
|
|
$(HOST_LIBGCC)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define transform-host-o-to-executable-inner
|
2011-01-28 23:14:47 +01:00
|
|
|
$(hide) $(PRIVATE_CXX) \
|
2012-02-01 22:18:20 +01:00
|
|
|
-Wl,-rpath,@loader_path/../lib \
|
2010-02-23 21:36:56 +01:00
|
|
|
-o $@ \
|
2012-01-05 00:16:50 +01:00
|
|
|
$(PRE_LION_DYNAMIC_LINKER_OPTIONS) -headerpad_max_install_names \
|
2010-02-23 21:36:56 +01:00
|
|
|
$(HOST_GLOBAL_LD_DIRS) \
|
2010-05-27 01:13:54 +02:00
|
|
|
$(HOST_GLOBAL_LDFLAGS) \
|
2011-01-25 08:25:36 +01:00
|
|
|
$(call normalize-host-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
|
2010-02-23 21:36:56 +01:00
|
|
|
$(PRIVATE_ALL_OBJECTS) \
|
2011-01-25 08:25:36 +01:00
|
|
|
$(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
|
|
|
|
$(call normalize-host-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
|
2010-02-23 21:36:56 +01:00
|
|
|
$(PRIVATE_LDFLAGS) \
|
|
|
|
$(PRIVATE_LDLIBS) \
|
|
|
|
$(HOST_LIBGCC)
|
|
|
|
endef
|
|
|
|
|
|
|
|
# $(1): The file to check
|
|
|
|
define get-file-size
|
|
|
|
stat -f "%z" $(1)
|
|
|
|
endef
|