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 | |
| 17 | # Configuration for Darwin (Mac OS X) on x86. |
| 18 | # Included by combo/select.mk |
| 19 | |
The Android Open Source Project | 4873d8f | 2010-06-04 07:56:24 -0700 | [diff] [blame] | 20 | # 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. |
| 23 | HOST_GLOBAL_CFLAGS += -m32 |
| 24 | HOST_GLOBAL_LDFLAGS += -m32 |
| 25 | |
Jean-Baptiste Queru | 9b4a812 | 2010-02-23 12:36:56 -0800 | [diff] [blame] | 26 | HOST_GLOBAL_CFLAGS += -fPIC |
| 27 | HOST_NO_UNDEFINED_LDFLAGS := -Wl,-undefined,error |
| 28 | |
| 29 | HOST_CC := $(CC) |
| 30 | HOST_CXX := $(CXX) |
| 31 | HOST_AR := $(AR) |
Bruce Beare | 45ac434 | 2010-06-24 14:02:00 -0700 | [diff] [blame] | 32 | HOST_STRIP := $(STRIP) |
| 33 | HOST_STRIP_COMMAND = $(HOST_STRIP) --strip-debug $< -o $@ |
Jean-Baptiste Queru | 9b4a812 | 2010-02-23 12:36:56 -0800 | [diff] [blame] | 34 | |
| 35 | HOST_SHLIB_SUFFIX := .dylib |
| 36 | HOST_JNILIB_SUFFIX := .jnilib |
| 37 | |
| 38 | HOST_GLOBAL_CFLAGS += \ |
| 39 | -include $(call select-android-config-h,darwin-x86) |
| 40 | HOST_RUN_RANLIB_AFTER_COPYING := true |
| 41 | HOST_GLOBAL_ARFLAGS := cqs |
| 42 | |
| 43 | HOST_CUSTOM_LD_COMMAND := true |
| 44 | |
| 45 | define 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 Project | 4873d8f | 2010-06-04 07:56:24 -0700 | [diff] [blame] | 49 | $(HOST_GLOBAL_LDFLAGS) \ |
Jean-Baptiste Queru | 9b4a812 | 2010-02-23 12:36:56 -0800 | [diff] [blame] | 50 | $(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) |
| 58 | endef |
| 59 | |
| 60 | define 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 Project | 4873d8f | 2010-06-04 07:56:24 -0700 | [diff] [blame] | 65 | $(HOST_GLOBAL_LDFLAGS) \ |
Jean-Baptiste Queru | 9b4a812 | 2010-02-23 12:36:56 -0800 | [diff] [blame] | 66 | $(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) |
| 73 | endef |
| 74 | |
| 75 | # $(1): The file to check |
| 76 | define get-file-size |
| 77 | stat -f "%z" $(1) |
| 78 | endef |