diff options
| author | 2014-11-08 17:36:36 +0000 | |
|---|---|---|
| committer | 2014-11-08 17:36:37 +0000 | |
| commit | 78aa45b87cd889c6ec542fe08edad1db0d42d1f0 (patch) | |
| tree | 6408c8d675824d24a73c88ff618ee696b4bbe66e | |
| parent | c80396da0ec33713b36953b40b1d127b5646149a (diff) | |
| parent | 13407c5cdffdbe1f4c1e0356acff08c2c83d9f5c (diff) | |
Merge "Fix dump-oat-core-*"
| -rw-r--r-- | oatdump/Android.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oatdump/Android.mk b/oatdump/Android.mk index a8f120f9ca..b8a3b49118 100644 --- a/oatdump/Android.mk +++ b/oatdump/Android.mk @@ -53,14 +53,14 @@ dump-oat-core: dump-oat-core-host dump-oat-core-target .PHONY: dump-oat-core-host ifeq ($(ART_BUILD_HOST),true) -dump-oat-core-host: $(HOST_CORE_IMG_OUT) $(OATDUMP) +dump-oat-core-host: $(HOST_CORE_IMG_OUTS) $(OATDUMP) $(OATDUMP) --image=$(HOST_CORE_IMG_LOCATION) --output=$(ART_DUMP_OAT_PATH)/core.host.oatdump.txt @echo Output in $(ART_DUMP_OAT_PATH)/core.host.oatdump.txt endif .PHONY: dump-oat-core-target ifeq ($(ART_BUILD_TARGET),true) -dump-oat-core-target: $(TARGET_CORE_IMG_OUT) $(OATDUMP) +dump-oat-core-target: $(TARGET_CORE_IMAGE_default_no-pic_32) $(OATDUMP) $(OATDUMP) --image=$(TARGET_CORE_IMG_LOCATION) \ --output=$(ART_DUMP_OAT_PATH)/core.target.oatdump.txt --instruction-set=$(TARGET_ARCH) @echo Output in $(ART_DUMP_OAT_PATH)/core.target.oatdump.txt |