diff options
author | Shih-wei Liao <sliao@google.com> | 2012-05-22 09:01:24 -0700 |
---|---|---|
committer | Shih-wei Liao <sliao@google.com> | 2012-05-28 21:04:37 -0700 |
commit | e94d9b23c52ec0f36c8a132914eac33bc707faff (patch) | |
tree | 53a3b1262f9f01f12507ec2aa1f1fd6fa774fc72 /Android.mk | |
parent | 024cf66d3359c015fabca8f5f3964592973e3f6e (diff) | |
download | art-e94d9b23c52ec0f36c8a132914eac33bc707faff.zip art-e94d9b23c52ec0f36c8a132914eac33bc707faff.tar.gz art-e94d9b23c52ec0f36c8a132914eac33bc707faff.tar.bz2 |
Add dex_lang as common frontend to lir and LLVM. dex_lang + bc2lir =
Greenland
First commit of Greenland compiler: It's working in the sense of oat
tests. E.g., mm test-art-host-oat-Fibonacci. It shows the correct
bitcode before lir.
Change-Id: I91cbb02188325eb1fa605ed71ec7108fd2b0dbb9
Diffstat (limited to 'Android.mk')
-rw-r--r-- | Android.mk | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -36,6 +36,9 @@ include $(build_path)/Android.libart-compiler.mk ifeq ($(ART_USE_LLVM_COMPILER),true) include $(build_path)/Android.libart-compiler-llvm.mk endif +ifeq ($(ART_USE_GREENLAND_COMPILER),true) +include $(build_path)/Android.libart-compiler-greenland.mk +endif include $(build_path)/Android.executable.mk include $(build_path)/Android.oat.mk |