blob: 1a28af941906debe95e40717eb3d0f2abffcfb92 [file] [log] [blame]
Jean-Baptiste Queru9b4a8122010-02-23 12:36:56 -08001#
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
17# Configuration for Darwin (Mac OS X) on x86.
18# Included by combo/select.mk
19
The Android Open Source Project4873d8f2010-06-04 07:56:24 -070020# We build everything in 32-bit, because some host tools are
21# 32-bit-only anyway (emulator, acc), and because it gives us
22# more consistency between the host tools and the target.
23HOST_GLOBAL_CFLAGS += -m32
24HOST_GLOBAL_LDFLAGS += -m32
25
Jean-Baptiste Queru9b4a8122010-02-23 12:36:56 -080026HOST_GLOBAL_CFLAGS += -fPIC
27HOST_NO_UNDEFINED_LDFLAGS := -Wl,-undefined,error
28
29HOST_CC := $(CC)
30HOST_CXX := $(CXX)
31HOST_AR := $(AR)
Bruce Beare45ac4342010-06-24 14:02:00 -070032HOST_STRIP := $(STRIP)
33HOST_STRIP_COMMAND = $(HOST_STRIP) --strip-debug $< -o $@
Jean-Baptiste Queru9b4a8122010-02-23 12:36:56 -080034
35HOST_SHLIB_SUFFIX := .dylib
36HOST_JNILIB_SUFFIX := .jnilib
37
38HOST_GLOBAL_CFLAGS += \
39 -include $(call select-android-config-h,darwin-x86)
40HOST_RUN_RANLIB_AFTER_COPYING := true
41HOST_GLOBAL_ARFLAGS := cqs
42
43HOST_CUSTOM_LD_COMMAND := true
44
45define transform-host-o-to-shared-lib-inner
46 $(HOST_CXX) \
47 -dynamiclib -single_module -read_only_relocs suppress \
48 $(HOST_GLOBAL_LD_DIRS) \
The Android Open Source Project4873d8f2010-06-04 07:56:24 -070049 $(HOST_GLOBAL_LDFLAGS) \
Jean-Baptiste Queru9b4a8122010-02-23 12:36:56 -080050 $(PRIVATE_ALL_OBJECTS) \
51 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
52 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
53 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
54 $(PRIVATE_LDLIBS) \
55 -o $@ \
56 $(PRIVATE_LDFLAGS) \
57 $(HOST_LIBGCC)
58endef
59
60define transform-host-o-to-executable-inner
61$(HOST_CXX) \
62 -o $@ \
63 -Wl,-dynamic -headerpad_max_install_names \
64 $(HOST_GLOBAL_LD_DIRS) \
The Android Open Source Project4873d8f2010-06-04 07:56:24 -070065 $(HOST_GLOBAL_LDFLAGS) \
Jean-Baptiste Queru9b4a8122010-02-23 12:36:56 -080066 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
67 $(PRIVATE_ALL_OBJECTS) \
68 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
69 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
70 $(PRIVATE_LDFLAGS) \
71 $(PRIVATE_LDLIBS) \
72 $(HOST_LIBGCC)
73endef
74
75# $(1): The file to check
76define get-file-size
77stat -f "%z" $(1)
78endef