diff options
author | Brian Carlstrom <bdc@google.com> | 2014-05-28 14:56:39 -0700 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2014-05-28 14:59:41 -0700 |
commit | 346265e4bea716fdadef24719709135c5dcf68fc (patch) | |
tree | ab68e793ca6b73706363989afffd9a8c8d18502f /Android.mk | |
parent | 818cff4a2ba5ca3d9b5613956e56f12d0ff02d22 (diff) | |
download | art-346265e4bea716fdadef24719709135c5dcf68fc.zip art-346265e4bea716fdadef24719709135c5dcf68fc.tar.gz art-346265e4bea716fdadef24719709135c5dcf68fc.tar.bz2 |
Move to dalvik.vm.lib.2 to force default to libart
Bug: 14298175
(cherry picked from commit b9c0c40e1f7eb38337919200f1fa328eaed92c1d)
Change-Id: I453d5391d757dcdac1f6fa3b1fb7bc85144177e1
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -443,21 +443,21 @@ include $(art_build_path)/Android.cpplint.mk use-art: adb root && sleep 3 adb shell stop - adb shell setprop persist.sys.dalvik.vm.lib.1 libart.so + adb shell setprop persist.sys.dalvik.vm.lib.2 libart.so adb shell start .PHONY: use-artd use-artd: adb root && sleep 3 adb shell stop - adb shell setprop persist.sys.dalvik.vm.lib.1 libartd.so + adb shell setprop persist.sys.dalvik.vm.lib.2 libartd.so adb shell start .PHONY: use-dalvik use-dalvik: adb root && sleep 3 adb shell stop - adb shell setprop persist.sys.dalvik.vm.lib.1 libdvm.so + adb shell setprop persist.sys.dalvik.vm.lib.2 libdvm.so adb shell start .PHONY: use-art-full @@ -467,7 +467,7 @@ use-art-full: adb shell rm -rf $(ART_DALVIK_CACHE_DIR)/* adb shell setprop dalvik.vm.dex2oat-flags "" adb shell setprop dalvik.vm.image-dex2oat-flags "" - adb shell setprop persist.sys.dalvik.vm.lib.1 libart.so + adb shell setprop persist.sys.dalvik.vm.lib.2 libart.so adb shell start .PHONY: use-artd-full @@ -477,7 +477,7 @@ use-artd-full: adb shell rm -rf $(ART_DALVIK_CACHE_DIR)/* adb shell setprop dalvik.vm.dex2oat-flags "" adb shell setprop dalvik.vm.image-dex2oat-flags "" - adb shell setprop persist.sys.dalvik.vm.lib.1 libartd.so + adb shell setprop persist.sys.dalvik.vm.lib.2 libartd.so adb shell start .PHONY: use-art-smart @@ -487,7 +487,7 @@ use-art-smart: adb shell rm -rf $(ART_DALVIK_CACHE_DIR)/* adb shell setprop dalvik.vm.dex2oat-flags "--compiler-filter=interpret-only" adb shell setprop dalvik.vm.image-dex2oat-flags "" - adb shell setprop persist.sys.dalvik.vm.lib.1 libart.so + adb shell setprop persist.sys.dalvik.vm.lib.2 libart.so adb shell start .PHONY: use-art-interpret-only @@ -497,7 +497,7 @@ use-art-interpret-only: adb shell rm -rf $(ART_DALVIK_CACHE_DIR)/* adb shell setprop dalvik.vm.dex2oat-flags "--compiler-filter=interpret-only" adb shell setprop dalvik.vm.image-dex2oat-flags "--compiler-filter=interpret-only" - adb shell setprop persist.sys.dalvik.vm.lib.1 libart.so + adb shell setprop persist.sys.dalvik.vm.lib.2 libart.so adb shell start .PHONY: use-art-verify-none @@ -507,7 +507,7 @@ use-art-verify-none: adb shell rm -rf $(ART_DALVIK_CACHE_DIR)/* adb shell setprop dalvik.vm.dex2oat-flags "--compiler-filter=verify-none" adb shell setprop dalvik.vm.image-dex2oat-flags "--compiler-filter=verify-none" - adb shell setprop persist.sys.dalvik.vm.lib.1 libart.so + adb shell setprop persist.sys.dalvik.vm.lib.2 libart.so adb shell start ######################################################################## |