I want to build dexdump in android platform-tools
So I downloaded the android source and modify the dexdump code(dalvik/dexdump/DexDump.cpp).
but I don't know rebuilding my modified DexDump.cpp
asked Nov 10, 2012 at 5:26
user1746360
1,2243 gold badges10 silver badges12 bronze badges
-
Hey, did you manage to build dexdump successfully in the end? I'm still having problems with this.Drag0– Drag02015年11月19日 11:08:02 +00:00Commented Nov 19, 2015 at 11:08
2 Answers 2
I found the answer
$ cd ~/WORKING_DIRECTORY
$ . build/envsetup.sh
$ mm dexdump
answered Apr 22, 2013 at 10:11
user1746360
1,2243 gold badges10 silver badges12 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
Use the GCC or G++ Multilib compiler
Install using
sudo apt-get install g++-multilib gcc-multilib
Then compile:
gcc -x c++ DexDump.cpp -lstdc++
answered Nov 10, 2012 at 5:57
childofthehorn
6971 gold badge4 silver badges12 bronze badges
Comments
default