How do I make isolated dalvik

后端 未结 2 1848
渐次进展
渐次进展 2021-01-13 09:55

I am tracing the Dalvik machine source code. According that, I want to make Dalvik runnable. I have seem the dvk project. But there has many problem result in fault. Are the

相关标签:
2条回答
  • 2021-01-13 10:22

    This GitHub project has a pre-compiled binary of Dalvik VM for Linux, ready to use! Check the associated blog post for information about how the binary was compiled and how to use it.

    0 讨论(0)
  • 2021-01-13 10:32

    if you build the lunch "sim-eng", you get a dalvikvm built for just the host (i.e. the Linux box you're building on). this already runs with glibc rather than bionic.

    if you want to build for a device, and just want a quicker build, you don't need to rebuild everything; "mmm dalvik snod" should be sufficient. (though if you haven't changed anything in dalvik/libcore/, just making changes to the VM shouldn't rebuild much anyway, even if you do a full top-level "make".)

    and don't forget to use "make -j" to get some parallelism into your build!

    0 讨论(0)
提交回复
热议问题