blob: 0ef00f5b60bf2fe5893dc051449fc1cdcc879553 [file] [log] [blame]
The Android Open Source Projectf6c38712009-03-03 19:28:47 -08001# Copyright (C) 2008 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15#
Dan Bornstein42122412009-07-21 16:08:39 -070016# Android.mk for Dalvik VM.
17#
18# This makefile builds both for host and target, and so the very large
19# swath of common definitions are factored out into a separate file to
20# minimize duplication.
21#
Andy McFadden12def722009-12-01 15:53:41 -080022# If you enable or disable optional features here (or in Dvm.mk),
23# rebuild the VM with:
24#
25# make clean-libdvm clean-libdvm_assert clean-libdvm_sv clean-libdvm_interp
26# make -j4 libdvm
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080027#
Dan Bornstein42122412009-07-21 16:08:39 -070028
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080029LOCAL_PATH:= $(call my-dir)
Dan Bornstein42122412009-07-21 16:08:39 -070030
31#
32# Build for the target (device).
33#
34
Bill Buzbee02388cf2010-03-23 14:34:11 -070035ifeq ($(TARGET_ARCH_VARIANT),armv5te)
36 WITH_JIT := false
37endif
38
Ben Chengbb0dce52009-11-03 16:19:11 -080039# Build the installed version (libdvm.so) first
40include $(LOCAL_PATH)/ReconfigureDvm.mk
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080041
Ben Chengbb0dce52009-11-03 16:19:11 -080042# Overwrite default settings
43ifeq ($(TARGET_SIMULATOR),false)
44 LOCAL_PRELINK_MODULE := true
45endif
46LOCAL_MODULE_TAGS := user
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080047LOCAL_MODULE := libdvm
The Android Open Source Projectf6c38712009-03-03 19:28:47 -080048include $(BUILD_SHARED_LIBRARY)
Dan Bornstein42122412009-07-21 16:08:39 -070049
Ben Chengbb0dce52009-11-03 16:19:11 -080050# If WITH_JIT is configured, build multiple versions of libdvm.so to facilitate
51# correctness/performance bugs triage
52ifeq ($(WITH_JIT),true)
53
54 # Derivation #1
55 # Enable assert and JIT tuning
56 include $(LOCAL_PATH)/ReconfigureDvm.mk
57
Elliott Hughesb4c05972010-02-24 16:36:18 -080058 # Enable assertions and JIT-tuning
Ben Chengbb0dce52009-11-03 16:19:11 -080059 LOCAL_CFLAGS += -UNDEBUG -DDEBUG=1 -DLOG_NDEBUG=1 -DWITH_DALVIK_ASSERT \
Ben Cheng86717f72010-03-05 15:27:21 -080060 -DWITH_JIT_TUNING -DJIT_STATS
Ben Chengbb0dce52009-11-03 16:19:11 -080061 LOCAL_MODULE := libdvm_assert
62 include $(BUILD_SHARED_LIBRARY)
63
64 # Derivation #2
65 # Enable assert and self-verification
66 include $(LOCAL_PATH)/ReconfigureDvm.mk
67
Elliott Hughesb4c05972010-02-24 16:36:18 -080068 # Enable assertions and JIT self-verification
Ben Chengbb0dce52009-11-03 16:19:11 -080069 LOCAL_CFLAGS += -UNDEBUG -DDEBUG=1 -DLOG_NDEBUG=1 -DWITH_DALVIK_ASSERT \
70 -DWITH_SELF_VERIFICATION
71 LOCAL_MODULE := libdvm_sv
72 include $(BUILD_SHARED_LIBRARY)
73
74 # Devivation #3
75 # Compile out the JIT
76 WITH_JIT := false
77 include $(LOCAL_PATH)/ReconfigureDvm.mk
78
79 LOCAL_MODULE := libdvm_interp
80 include $(BUILD_SHARED_LIBRARY)
81
82endif
Dan Bornstein42122412009-07-21 16:08:39 -070083
84#
85# Build for the host.
86#
87
88ifeq ($(WITH_HOST_DALVIK),true)
89
90 include $(CLEAR_VARS)
91
92 # Variables used in the included Dvm.mk.
93 dvm_os := $(HOST_OS)
94 dvm_arch := $(HOST_ARCH)
95 dvm_arch_variant := $(HOST_ARCH_VARIANT)
96 dvm_simulator := false
97
98 include $(LOCAL_PATH)/Dvm.mk
99
Dan Bornstein524fea12009-10-23 13:25:03 -0700100 # We need to include all of these libraries. The end result of this
101 # section is a static library, but LOCAL_STATIC_LIBRARIES doesn't
102 # actually cause any code from the specified libraries to be included,
103 # whereas LOCAL_WHOLE_STATIC_LIBRARIES does. No, I (danfuzz) am not
104 # entirely sure what LOCAL_STATIC_LIBRARIES is even supposed to mean
105 # in this context, but it is in (apparently) meaningfully used in
106 # other parts of the build.
Dan Bornstein22620b82009-10-16 10:51:23 -0700107 LOCAL_WHOLE_STATIC_LIBRARIES += \
Dan Bornstein524fea12009-10-23 13:25:03 -0700108 libnativehelper-host libdex liblog libcutils
Dan Bornstein42122412009-07-21 16:08:39 -0700109
Dan Bornsteind45a48f2009-10-22 15:58:32 -0700110 # The libffi from the source tree should never be used by host builds.
111 # The recommendation is that host builds should always either
112 # have sufficient custom code so that libffi isn't needed at all,
113 # or they should use the platform's provided libffi. So, if the common
114 # build rules decided to include it, axe it back out here.
Dan Bornstein93194e92009-08-24 17:50:34 -0700115 ifneq (,$(findstring libffi,$(LOCAL_SHARED_LIBRARIES)))
116 LOCAL_SHARED_LIBRARIES := \
117 $(patsubst libffi, ,$(LOCAL_SHARED_LIBRARIES))
Dan Bornstein93194e92009-08-24 17:50:34 -0700118 endif
Dan Bornsteind45a48f2009-10-22 15:58:32 -0700119
Dan Bornstein42122412009-07-21 16:08:39 -0700120 LOCAL_MODULE := libdvm-host
121
Dan Bornstein93194e92009-08-24 17:50:34 -0700122 include $(BUILD_HOST_STATIC_LIBRARY)
Dan Bornstein42122412009-07-21 16:08:39 -0700123
124endif