blob: 396199c1a955961cab4085512a3ed54b3f1b08f2 [file] [log] [blame]
The Android Open Source Project88b60792009-03-03 19:28:42 -08001###########################################################
2## Standard rules for building any target-side binaries
3## with dynamic linkage (dynamic libraries or executables
4## that link with dynamic libraries)
5##
6## Files including this file must define a rule to build
7## the target $(linked_module).
8###########################################################
9
10# This constraint means that we can hard-code any $(TARGET_*) variables.
11ifdef LOCAL_IS_HOST_MODULE
12$(error This file should not be used to build host binaries. Included by (or near) $(lastword $(filter-out config/%,$(MAKEFILE_LIST))))
13endif
14
The Android Open Source Project88b60792009-03-03 19:28:42 -080015# The name of the target file, without any path prepended.
Colin Cross5a9db902014-03-21 12:27:37 -070016# This duplicates logic from base_rules.mk because we need to
17# know its results before base_rules.mk is included.
18include $(BUILD_SYSTEM)/configure_module_stem.mk
The Android Open Source Project88b60792009-03-03 19:28:42 -080019
20# base_rules.make defines $(intermediates), but we need its value
21# before we include base_rules. Make a guess, and verify that
22# it's correct once the real value is defined.
Ying Wang4d2cc662014-01-16 12:36:34 -080023guessed_intermediates := $(call local-intermediates-dir,,$(LOCAL_2ND_ARCH_VAR_PREFIX))
The Android Open Source Project88b60792009-03-03 19:28:42 -080024
25# Define the target that is the unmodified output of the linker.
26# The basename of this target must be the same as the final output
27# binary name, because it's used to set the "soname" in the binary.
28# The includer of this file will define a rule to build this target.
Ying Wang966c1e02014-05-20 14:43:51 -070029linked_module := $(guessed_intermediates)/LINKED/$(my_built_module_stem)
The Android Open Source Project88b60792009-03-03 19:28:42 -080030
31ALL_ORIGINAL_DYNAMIC_BINARIES += $(linked_module)
32
33# Because TARGET_SYMBOL_FILTER_FILE depends on ALL_ORIGINAL_DYNAMIC_BINARIES,
34# the linked_module rules won't necessarily inherit the PRIVATE_
35# variables from LOCAL_BUILT_MODULE. This tells binary.make to explicitly
36# define the PRIVATE_ variables for linked_module as well as for
37# LOCAL_BUILT_MODULE.
38LOCAL_INTERMEDIATE_TARGETS := $(linked_module)
39
40###################################
41include $(BUILD_SYSTEM)/binary.mk
42###################################
43
44# Make sure that our guess at the value of intermediates was correct.
45ifneq ($(intermediates),$(guessed_intermediates))
46$(error Internal error: guessed path '$(guessed_intermediates)' doesn't match '$(intermediates))
47endif
48
49###########################################################
50## Compress
51###########################################################
52compress_input := $(linked_module)
53
54ifeq ($(strip $(LOCAL_COMPRESS_MODULE_SYMBOLS)),)
55 LOCAL_COMPRESS_MODULE_SYMBOLS := $(strip $(TARGET_COMPRESS_MODULE_SYMBOLS))
56endif
57
58ifeq ($(LOCAL_COMPRESS_MODULE_SYMBOLS),true)
59$(error Symbol compression not yet supported.)
Ying Wang966c1e02014-05-20 14:43:51 -070060compress_output := $(intermediates)/COMPRESSED-$(my_built_module_stem)
The Android Open Source Project88b60792009-03-03 19:28:42 -080061
Bruce Beare45ac4342010-06-24 14:02:00 -070062#TODO: write the real $(STRIPPER) rule.
The Android Open Source Project88b60792009-03-03 19:28:42 -080063#TODO: define a rule to build TARGET_SYMBOL_FILTER_FILE, and
64# make it depend on ALL_ORIGINAL_DYNAMIC_BINARIES.
65$(compress_output): $(compress_input) $(TARGET_SYMBOL_FILTER_FILE) | $(ACP)
66 @echo "target Compress Symbols: $(PRIVATE_MODULE) ($@)"
67 $(copy-file-to-target)
68else
69# Skip this step.
70compress_output := $(compress_input)
71endif
72
Ying Wang374b3252011-03-14 11:44:57 -070073###########################################################
74## Store a copy with symbols for symbolic debugging
75###########################################################
Ying Wangf3584962013-11-13 17:56:20 -080076ifeq ($(LOCAL_UNSTRIPPED_PATH),)
Ying Wangb8e01852014-01-23 15:09:04 -080077my_unstripped_path := $(TARGET_OUT_UNSTRIPPED)/$(patsubst $(PRODUCT_OUT)/%,%,$(my_module_path))
78else
79my_unstripped_path := $(LOCAL_UNSTRIPPED_PATH)
Ying Wangf3584962013-11-13 17:56:20 -080080endif
Ying Wang374b3252011-03-14 11:44:57 -070081symbolic_input := $(compress_output)
Ying Wang966c1e02014-05-20 14:43:51 -070082symbolic_output := $(my_unstripped_path)/$(my_installed_module_stem)
Ying Wang374b3252011-03-14 11:44:57 -070083$(symbolic_output) : $(symbolic_input) | $(ACP)
84 @echo "target Symbolic: $(PRIVATE_MODULE) ($@)"
85 $(copy-file-to-target)
86
The Android Open Source Project88b60792009-03-03 19:28:42 -080087
88###########################################################
The Android Open Source Project88b60792009-03-03 19:28:42 -080089## Strip
90###########################################################
Ying Wang374b3252011-03-14 11:44:57 -070091strip_input := $(symbolic_output)
The Android Open Source Project88b60792009-03-03 19:28:42 -080092strip_output := $(LOCAL_BUILT_MODULE)
93
Ying Wange1889af2014-03-16 12:43:49 -070094my_strip_module := $(LOCAL_STRIP_MODULE)
95ifeq ($(my_strip_module),)
96 my_strip_module := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_STRIP_MODULE)
The Android Open Source Project88b60792009-03-03 19:28:42 -080097endif
98
Ying Wange1889af2014-03-16 12:43:49 -070099ifeq ($(my_strip_module),true)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800100# Strip the binary
Ying Wangb8e01852014-01-23 15:09:04 -0800101$(strip_output): PRIVATE_STRIP := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_STRIP)
102$(strip_output): PRIVATE_OBJCOPY := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_OBJCOPY)
103$(strip_output): $(strip_input) | $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_STRIP)
The Android Open Source Project88b60792009-03-03 19:28:42 -0800104 $(transform-to-stripped)
105else
Christopher Ferrisa6e2f932014-03-18 14:50:09 -0700106ifeq ($(my_strip_module),keep_symbols)
107# Strip only the debug frames, but leave the symbol table.
108$(strip_output): PRIVATE_STRIP := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_STRIP)
109$(strip_output): PRIVATE_OBJCOPY := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_OBJCOPY)
110$(strip_output): PRIVATE_READELF := $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_READELF)
111$(strip_output): $(strip_input) | $($(LOCAL_2ND_ARCH_VAR_PREFIX)TARGET_STRIP)
112 $(transform-to-stripped-keep-symbols)
113else
The Android Open Source Project88b60792009-03-03 19:28:42 -0800114# Don't strip the binary, just copy it. We can't skip this step
115# because a copy of the binary must appear at LOCAL_BUILT_MODULE.
116#
117# If the binary we're copying is acp or a prerequisite,
118# use cp(1) instead.
119ifneq ($(LOCAL_ACP_UNAVAILABLE),true)
120$(strip_output): $(strip_input) | $(ACP)
121 @echo "target Unstripped: $(PRIVATE_MODULE) ($@)"
122 $(copy-file-to-target)
123else
124$(strip_output): $(strip_input)
125 @echo "target Unstripped: $(PRIVATE_MODULE) ($@)"
126 $(copy-file-to-target-with-cp)
127endif
Christopher Ferrisa6e2f932014-03-18 14:50:09 -0700128endif
Ying Wange1889af2014-03-16 12:43:49 -0700129endif # my_strip_module
The Android Open Source Project88b60792009-03-03 19:28:42 -0800130
131
Ying Wangeda6ac22013-01-28 10:58:01 -0800132$(cleantarget): PRIVATE_CLEAN_FILES += \
133 $(linked_module) \
134 $(symbolic_output) \
135 $(compress_output)