blob: 25b23a2ee9b6bf19a7d13ef4a74b0d9d2471992e [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001#
2# Copyright (C) 2012 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
17LOCAL_PATH := $(call my-dir)
18
Ian Rogersafd9acc2014-06-17 08:21:54 -070019include art/build/Android.common_build.mk
Brian Carlstrom7940e442013-07-12 13:46:57 -070020
21LIBART_COMPILER_SRC_FILES := \
Mathieu Chartier193bad92013-08-29 18:46:00 -070022 compiled_method.cc \
Vladimir Marko95a05972014-05-30 10:01:32 +010023 dex/global_value_numbering.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070024 dex/local_value_numbering.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070025 dex/quick/arm/assemble_arm.cc \
26 dex/quick/arm/call_arm.cc \
27 dex/quick/arm/fp_arm.cc \
28 dex/quick/arm/int_arm.cc \
29 dex/quick/arm/target_arm.cc \
30 dex/quick/arm/utility_arm.cc \
Matteo Franchine45fb9e2014-05-06 10:10:30 +010031 dex/quick/arm64/assemble_arm64.cc \
32 dex/quick/arm64/call_arm64.cc \
33 dex/quick/arm64/fp_arm64.cc \
34 dex/quick/arm64/int_arm64.cc \
35 dex/quick/arm64/target_arm64.cc \
36 dex/quick/arm64/utility_arm64.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070037 dex/quick/codegen_util.cc \
Vladimir Marko5c96e6b2013-11-14 15:34:17 +000038 dex/quick/dex_file_method_inliner.cc \
39 dex/quick/dex_file_to_method_inliner_map.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070040 dex/quick/gen_common.cc \
41 dex/quick/gen_invoke.cc \
42 dex/quick/gen_loadstore.cc \
43 dex/quick/local_optimizations.cc \
44 dex/quick/mips/assemble_mips.cc \
45 dex/quick/mips/call_mips.cc \
46 dex/quick/mips/fp_mips.cc \
47 dex/quick/mips/int_mips.cc \
48 dex/quick/mips/target_mips.cc \
49 dex/quick/mips/utility_mips.cc \
50 dex/quick/mir_to_lir.cc \
Andreas Gampe53c913b2014-08-12 23:19:23 -070051 dex/quick/quick_compiler.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070052 dex/quick/ralloc_util.cc \
Vladimir Marko8dea81c2014-06-06 14:50:36 +010053 dex/quick/resource_mask.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070054 dex/quick/x86/assemble_x86.cc \
55 dex/quick/x86/call_x86.cc \
56 dex/quick/x86/fp_x86.cc \
57 dex/quick/x86/int_x86.cc \
58 dex/quick/x86/target_x86.cc \
59 dex/quick/x86/utility_x86.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070060 dex/dex_to_dex_compiler.cc \
61 dex/mir_dataflow.cc \
Vladimir Markobe0e5462014-02-26 11:24:15 +000062 dex/mir_field_info.cc \
Vladimir Markof096aad2014-01-23 15:51:58 +000063 dex/mir_method_info.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070064 dex/mir_optimization.cc \
Jean Christophe Beyler4e97c532014-01-07 10:07:18 -080065 dex/bb_optimizations.cc \
Andreas Gampe53c913b2014-08-12 23:19:23 -070066 dex/compiler_ir.cc \
Jean Christophe Beyler2469e602014-05-06 20:36:55 -070067 dex/post_opt_passes.cc \
68 dex/pass_driver_me_opts.cc \
69 dex/pass_driver_me_post_opt.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070070 dex/frontend.cc \
71 dex/mir_graph.cc \
buzbeea024a062013-07-31 10:47:37 -070072 dex/mir_analysis.cc \
Vladimir Markoc7f83202014-01-24 17:55:18 +000073 dex/verified_method.cc \
74 dex/verification_results.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070075 dex/vreg_analysis.cc \
76 dex/ssa_transformation.cc \
Ian Rogerse63db272014-07-15 15:36:11 -070077 dex/quick_compiler_callbacks.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070078 driver/compiler_driver.cc \
79 driver/dex_compilation_unit.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070080 jni/quick/arm/calling_convention_arm.cc \
Stuart Monteithb95a5342014-03-12 13:32:32 +000081 jni/quick/arm64/calling_convention_arm64.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070082 jni/quick/mips/calling_convention_mips.cc \
83 jni/quick/x86/calling_convention_x86.cc \
Dmitry Petrochenkofca82202014-03-21 11:21:37 +070084 jni/quick/x86_64/calling_convention_x86_64.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -070085 jni/quick/calling_convention.cc \
86 jni/quick/jni_compiler.cc \
Andreas Gampe53c913b2014-08-12 23:19:23 -070087 llvm/llvm_compiler.cc \
Nicolas Geoffray818f2102014-02-18 16:43:35 +000088 optimizing/builder.cc \
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000089 optimizing/code_generator.cc \
90 optimizing/code_generator_arm.cc \
91 optimizing/code_generator_x86.cc \
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010092 optimizing/code_generator_x86_64.cc \
Roland Levillain75be2832014-10-17 17:02:00 +010093 optimizing/constant_folding.cc \
Roland Levillain72bceff2014-09-15 18:29:00 +010094 optimizing/dead_code_elimination.cc \
Roland Levillainccc07a92014-09-16 14:48:16 +010095 optimizing/graph_checker.cc \
Nicolas Geoffrayf635e632014-05-14 09:43:38 +010096 optimizing/graph_visualizer.cc \
Nicolas Geoffrayd31cf3d2014-09-08 17:30:24 +010097 optimizing/gvn.cc \
Nicolas Geoffray3c049742014-09-24 18:10:46 +010098 optimizing/instruction_simplifier.cc \
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +010099 optimizing/locations.cc \
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000100 optimizing/nodes.cc \
Roland Levillain75be2832014-10-17 17:02:00 +0100101 optimizing/optimization.cc \
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000102 optimizing/optimizing_compiler.cc \
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +0100103 optimizing/parallel_move_resolver.cc \
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +0100104 optimizing/prepare_for_register_allocation.cc \
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100105 optimizing/register_allocator.cc \
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +0100106 optimizing/ssa_builder.cc \
Nicolas Geoffray804d0932014-05-02 08:46:00 +0100107 optimizing/ssa_liveness_analysis.cc \
Nicolas Geoffray7dc206a2014-07-11 09:49:49 +0100108 optimizing/ssa_phi_elimination.cc \
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100109 optimizing/ssa_type_propagation.cc \
Ian Rogers848871b2013-08-05 10:56:33 -0700110 trampolines/trampoline_compiler.cc \
Nicolas Geoffray818f2102014-02-18 16:43:35 +0000111 utils/arena_allocator.cc \
Nicolas Geoffray0e336432014-02-26 18:24:38 +0000112 utils/arena_bit_vector.cc \
Ian Rogers166db042013-07-26 12:05:57 -0700113 utils/arm/assembler_arm.cc \
Dave Allison65fcc2c2014-04-28 13:45:27 -0700114 utils/arm/assembler_arm32.cc \
115 utils/arm/assembler_thumb2.cc \
Ian Rogers166db042013-07-26 12:05:57 -0700116 utils/arm/managed_register_arm.cc \
Serban Constantinescued8dd492014-02-11 14:15:10 +0000117 utils/arm64/assembler_arm64.cc \
118 utils/arm64/managed_register_arm64.cc \
Ian Rogers166db042013-07-26 12:05:57 -0700119 utils/assembler.cc \
Tong Shen547cdfd2014-08-05 01:54:19 -0700120 utils/dwarf_cfi.cc \
Ian Rogers166db042013-07-26 12:05:57 -0700121 utils/mips/assembler_mips.cc \
122 utils/mips/managed_register_mips.cc \
123 utils/x86/assembler_x86.cc \
124 utils/x86/managed_register_x86.cc \
Dmitry Petrochenkofca82202014-03-21 11:21:37 +0700125 utils/x86_64/assembler_x86_64.cc \
126 utils/x86_64/managed_register_x86_64.cc \
Vladimir Marko83cc7ae2014-02-12 18:02:05 +0000127 utils/scoped_arena_allocator.cc \
Brian Carlstromc6dfdac2013-08-26 18:57:31 -0700128 buffered_output_stream.cc \
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000129 compiler.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -0700130 elf_writer.cc \
131 elf_writer_quick.cc \
Ian Rogers0e480ca2013-08-16 14:36:13 -0700132 file_output_stream.cc \
Brian Carlstrom7940e442013-07-12 13:46:57 -0700133 image_writer.cc \
Ian Rogersb07b8b72013-07-29 11:12:14 -0700134 oat_writer.cc \
135 vector_output_stream.cc
Brian Carlstrom7940e442013-07-12 13:46:57 -0700136
137ifeq ($(ART_SEA_IR_MODE),true)
138LIBART_COMPILER_SRC_FILES += \
139 sea_ir/frontend.cc \
Dragos Sbirleabfaf44f2013-08-06 15:41:44 -0700140 sea_ir/ir/instruction_tools.cc \
141 sea_ir/ir/sea.cc \
142 sea_ir/code_gen/code_gen.cc \
Dragos Sbirlea90af14d2013-08-15 17:50:16 -0700143 sea_ir/code_gen/code_gen_data.cc \
Dragos Sbirlea64479192013-08-01 15:38:43 -0700144 sea_ir/types/type_inference.cc \
145 sea_ir/types/type_inference_visitor.cc \
146 sea_ir/debug/dot_gen.cc
Brian Carlstrom7940e442013-07-12 13:46:57 -0700147endif
148
149LIBART_COMPILER_CFLAGS :=
Nicolas Geoffrayf3e2cc42014-02-18 18:37:26 +0000150
Brian Carlstrom7940e442013-07-12 13:46:57 -0700151ifeq ($(ART_USE_PORTABLE_COMPILER),true)
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800152LIBART_COMPILER_SRC_FILES += \
Nicolas Geoffrayf3e2cc42014-02-18 18:37:26 +0000153 dex/portable/mir_to_gbc.cc \
154 elf_writer_mclinker.cc \
155 jni/portable/jni_compiler.cc \
156 llvm/compiler_llvm.cc \
157 llvm/gbc_expander.cc \
158 llvm/generated/art_module.cc \
159 llvm/intrinsic_helper.cc \
160 llvm/ir_builder.cc \
161 llvm/llvm_compilation_unit.cc \
162 llvm/md_builder.cc \
163 llvm/runtime_support_builder.cc \
164 llvm/runtime_support_builder_arm.cc \
165 llvm/runtime_support_builder_x86.cc
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800166LIBART_COMPILER_CFLAGS += -DART_USE_PORTABLE_COMPILER=1
Brian Carlstrom7940e442013-07-12 13:46:57 -0700167endif
168
169LIBART_COMPILER_ENUM_OPERATOR_OUT_HEADER_FILES := \
Vladimir Markoe3e02602014-03-12 15:42:41 +0000170 dex/compiler_enums.h
Brian Carlstrom7940e442013-07-12 13:46:57 -0700171
172# $(1): target or host
173# $(2): ndebug or debug
174define build-libart-compiler
175 ifneq ($(1),target)
176 ifneq ($(1),host)
177 $$(error expected target or host for argument 1, received $(1))
178 endif
179 endif
180 ifneq ($(2),ndebug)
181 ifneq ($(2),debug)
182 $$(error expected ndebug or debug for argument 2, received $(2))
183 endif
184 endif
185
186 art_target_or_host := $(1)
187 art_ndebug_or_debug := $(2)
188
189 include $(CLEAR_VARS)
Ian Rogersbd5ea6a2014-04-16 16:34:44 -0700190 ifeq ($$(art_target_or_host),host)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700191 LOCAL_IS_HOST_MODULE := true
192 endif
193 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
194 ifeq ($$(art_ndebug_or_debug),ndebug)
195 LOCAL_MODULE := libart-compiler
Andreas Gampe5ca4eaa2014-05-29 02:09:33 -0700196 LOCAL_SHARED_LIBRARIES += libart
Dehao Chen1740eca2014-07-24 16:12:59 -0700197 LOCAL_FDO_SUPPORT := true
Brian Carlstrom7940e442013-07-12 13:46:57 -0700198 else # debug
199 LOCAL_MODULE := libartd-compiler
Andreas Gampe5ca4eaa2014-05-29 02:09:33 -0700200 LOCAL_SHARED_LIBRARIES += libartd
Brian Carlstrom7940e442013-07-12 13:46:57 -0700201 endif
202
203 LOCAL_MODULE_TAGS := optional
204 LOCAL_MODULE_CLASS := SHARED_LIBRARIES
205
206 LOCAL_SRC_FILES := $$(LIBART_COMPILER_SRC_FILES)
207
Colin Crossdc781a12014-02-04 16:22:03 -0800208 GENERATED_SRC_DIR := $$(call local-generated-sources-dir)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700209 ENUM_OPERATOR_OUT_CC_FILES := $$(patsubst %.h,%_operator_out.cc,$$(LIBART_COMPILER_ENUM_OPERATOR_OUT_HEADER_FILES))
210 ENUM_OPERATOR_OUT_GEN := $$(addprefix $$(GENERATED_SRC_DIR)/,$$(ENUM_OPERATOR_OUT_CC_FILES))
211
212$$(ENUM_OPERATOR_OUT_GEN): art/tools/generate-operator-out.py
213$$(ENUM_OPERATOR_OUT_GEN): PRIVATE_CUSTOM_TOOL = art/tools/generate-operator-out.py $(LOCAL_PATH) $$< > $$@
214$$(ENUM_OPERATOR_OUT_GEN): $$(GENERATED_SRC_DIR)/%_operator_out.cc : $(LOCAL_PATH)/%.h
215 $$(transform-generated-source)
216
217 LOCAL_GENERATED_SOURCES += $$(ENUM_OPERATOR_OUT_GEN)
218
219 LOCAL_CFLAGS := $$(LIBART_COMPILER_CFLAGS)
Dan Albert2a0e9542014-05-21 14:55:02 -0700220 include external/libcxx/libcxx.mk
Brian Carlstrom7940e442013-07-12 13:46:57 -0700221 ifeq ($$(art_target_or_host),target)
Andreas Gampe5ca4eaa2014-05-29 02:09:33 -0700222 $(call set-target-local-clang-vars)
223 $(call set-target-local-cflags-vars,$(2))
Brian Carlstrom7940e442013-07-12 13:46:57 -0700224 else # host
225 LOCAL_CLANG := $(ART_HOST_CLANG)
226 LOCAL_CFLAGS += $(ART_HOST_CFLAGS)
Ian Rogers6f3dbba2014-10-14 17:41:57 -0700227 LOCAL_LDLIBS := $(ART_HOST_LDLIBS)
Andreas Gampe5ca4eaa2014-05-29 02:09:33 -0700228 ifeq ($$(art_ndebug_or_debug),debug)
229 LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
230 else
231 LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
232 endif
Brian Carlstrom7940e442013-07-12 13:46:57 -0700233 endif
234
235 # TODO: clean up the compilers and remove this.
236 LOCAL_CFLAGS += -Wno-unused-parameter
237
Brian Carlstrom7940e442013-07-12 13:46:57 -0700238 ifeq ($(ART_USE_PORTABLE_COMPILER),true)
Nicolas Geoffrayb34f69a2014-03-07 15:28:39 +0000239 LOCAL_SHARED_LIBRARIES += libLLVM
Brian Carlstrom7940e442013-07-12 13:46:57 -0700240 LOCAL_CFLAGS += -DART_USE_PORTABLE_COMPILER=1
Brian Carlstrom4e3b2842014-01-18 11:26:51 -0800241 ifeq ($$(art_target_or_host),target)
Colin Crossdc781a12014-02-04 16:22:03 -0800242 LOCAL_STATIC_LIBRARIES_arm += libmcldARMInfo libmcldARMTarget
243 LOCAL_STATIC_LIBRARIES_x86 += libmcldX86Info libmcldX86Target
244 LOCAL_STATIC_LIBRARIES_x86_64 += libmcldX86Info libmcldX86Target
245 LOCAL_STATIC_LIBRARIES_mips += libmcldMipsInfo libmcldMipsTarget
246 ifeq ($(TARGET_ARCH),arm64)
247 $$(info TODOAArch64: $$(LOCAL_PATH)/Android.mk Add Arm64 specific MCLinker libraries)
248 endif # TARGET_ARCH != arm64
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800249 include $(LLVM_DEVICE_BUILD_MK)
Brian Carlstrom4e3b2842014-01-18 11:26:51 -0800250 else # host
251 LOCAL_STATIC_LIBRARIES += libmcldARMInfo libmcldARMTarget
252 LOCAL_STATIC_LIBRARIES += libmcldX86Info libmcldX86Target
253 LOCAL_STATIC_LIBRARIES += libmcldMipsInfo libmcldMipsTarget
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800254 include $(LLVM_HOST_BUILD_MK)
Brian Carlstrom4e3b2842014-01-18 11:26:51 -0800255 endif
Nicolas Geoffrayf2b39562014-03-03 15:54:42 +0000256 LOCAL_STATIC_LIBRARIES += libmcldCore libmcldObject libmcldADT libmcldFragment libmcldTarget libmcldCodeGen libmcldLDVariant libmcldMC libmcldSupport libmcldLD libmcldScript
Ian Rogersb48b9eb2014-02-28 16:20:21 -0800257 include $(LLVM_GEN_INTRINSICS_MK)
Brian Carlstrom7940e442013-07-12 13:46:57 -0700258 endif
259
260 LOCAL_C_INCLUDES += $(ART_C_INCLUDES) art/runtime
261
Elliott Hughes025218c2013-07-30 17:13:06 -0700262 ifeq ($$(art_target_or_host),host)
Dan Albert2a0e9542014-05-21 14:55:02 -0700263 LOCAL_LDLIBS += -ldl -lpthread
Brian Carlstrom7940e442013-07-12 13:46:57 -0700264 endif
Ian Rogersafd9acc2014-06-17 08:21:54 -0700265 LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common_build.mk
Brian Carlstrom7940e442013-07-12 13:46:57 -0700266 LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.mk
267 ifeq ($$(art_target_or_host),target)
Serban Constantinescued8dd492014-02-11 14:15:10 +0000268 LOCAL_SHARED_LIBRARIES += libcutils libvixl
Brian Carlstrom7940e442013-07-12 13:46:57 -0700269 include $(BUILD_SHARED_LIBRARY)
270 else # host
Serban Constantinescued8dd492014-02-11 14:15:10 +0000271 LOCAL_STATIC_LIBRARIES += libcutils libvixl
Ian Rogersafd9acc2014-06-17 08:21:54 -0700272 LOCAL_MULTILIB := both
Brian Carlstrom7940e442013-07-12 13:46:57 -0700273 include $(BUILD_HOST_SHARED_LIBRARY)
274 endif
275
276 ifeq ($$(art_target_or_host),target)
277 ifeq ($$(art_ndebug_or_debug),debug)
278 $(TARGET_OUT_EXECUTABLES)/dex2oatd: $$(LOCAL_INSTALLED_MODULE)
279 else
280 $(TARGET_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
281 endif
282 else # host
283 ifeq ($$(art_ndebug_or_debug),debug)
284 $(HOST_OUT_EXECUTABLES)/dex2oatd: $$(LOCAL_INSTALLED_MODULE)
285 else
286 $(HOST_OUT_EXECUTABLES)/dex2oat: $$(LOCAL_INSTALLED_MODULE)
287 endif
288 endif
289
290endef
291
Ian Rogersc5f17732014-06-05 20:48:42 -0700292# We always build dex2oat and dependencies, even if the host build is otherwise disabled, since they are used to cross compile for the target.
Junmo Park03f92f42014-08-04 17:19:29 +0900293ifeq ($(ART_BUILD_HOST_NDEBUG),true)
Ian Rogersc5f17732014-06-05 20:48:42 -0700294 $(eval $(call build-libart-compiler,host,ndebug))
295endif
Junmo Park03f92f42014-08-04 17:19:29 +0900296ifeq ($(ART_BUILD_HOST_DEBUG),true)
Ian Rogersc5f17732014-06-05 20:48:42 -0700297 $(eval $(call build-libart-compiler,host,debug))
Brian Carlstrom7940e442013-07-12 13:46:57 -0700298endif
Ian Rogers719d1a32014-03-06 12:13:39 -0800299ifeq ($(ART_BUILD_TARGET_NDEBUG),true)
300 $(eval $(call build-libart-compiler,target,ndebug))
301endif
302ifeq ($(ART_BUILD_TARGET_DEBUG),true)
303 $(eval $(call build-libart-compiler,target,debug))
304endif
Brian Carlstrom7940e442013-07-12 13:46:57 -0700305
306# Rule to build /system/lib/libcompiler_rt.a
307# Usually static libraries are not installed on the device.
308ifeq ($(ART_USE_PORTABLE_COMPILER),true)
309ifeq ($(ART_BUILD_TARGET),true)
310# TODO: Move to external/compiler_rt
311$(eval $(call copy-one-file, $(call intermediates-dir-for,STATIC_LIBRARIES,libcompiler_rt,,)/libcompiler_rt.a, $(TARGET_OUT_SHARED_LIBRARIES)/libcompiler_rt.a))
Colin Crossdc781a12014-02-04 16:22:03 -0800312ifdef TARGET_2ND_ARCH
313$(eval $(call copy-one-file, $(call intermediates-dir-for,STATIC_LIBRARIES,libcompiler_rt,,,t)/libcompiler_rt.a, $(2ND_TARGET_OUT_SHARED_LIBRARIES)/libcompiler_rt.a))
314endif
Brian Carlstrom7940e442013-07-12 13:46:57 -0700315
316$(DEX2OAT): $(TARGET_OUT_SHARED_LIBRARIES)/libcompiler_rt.a
317
318endif
319endif