- Download the strace source distribution from SourceForge strace project
- Extract the strace package on your linux machine
- Set your cross compiler information with command: # export CC=your_cross_compiler_folder/bin/arm-none-linux-gnueabi-gcc
- Add your_cross_compiler_folder/bin into your $PATH for path searching
- Change your current folder to strace package extract folder, use command: # ./configure -host=arm-linux
- You have the Makefile generated, edit it, append -static after CFLAGS variable in Makefile
- Compile it with simple command: # make
- You have the strace now, verify it with command: # file strace, you shall see "strace: ELF 32-bit LSB executable, ARM, version 1 (SYSV), for GNU/Linux 2.6.14, statically linked, not stripped"
Wednesday, January 16, 2008
Create google android strace tool
Prerequisite, you already have the cross compiler downloaded from download GNU toolchain site, make sure you select ARM GNU/Linux, and IA32 GNU/Linux.
Subscribe to:
Post Comments (Atom)
12 comments:
According guide,I ran my strace on my android emulator shell.However I got a error like this,
# ./strace ./hello
execve("./hello", ["./hello"], [/* 10 vars */]) = 0
syscall: unknown syscall trap 0xe8bd8010.
Could you help me?Thanks
It looks your "hello" can not be executed. Do you have error if you just run "./hello"? How is your hello created? It must be a static linked executable or dynamic linked to bionic libc.
The Team Android phenomenon is spreading like wildfire. Lots of people are turning to the openness and diversity of Android smartphones when choosing a mobile device.
best android apps
best iphone apps
That an interesting post. I never thought about this before. But, looking back at different situations, this might be right. Keep it up friend!
best online pharmacy
I want to express my admiration of your writing skill and ability to make readers read from the beginning to the end.
Generic Plavix
give us directly the binary
Wow!! What a great writing, really I appreciate such kind of topics. It will be very helpful for us. Waiting for more articles, blogs like this. I’m going bookmark your blog for future reference. Thanks a lot for sharing this.
advertising | top advertising agencies in Pakistan | Marketing Agency | Advertisement
Hi,
I have a strace command, but when I run it I recive the following message:
PTRACE_SYSCALL doesn't work: Function not implemented
Thanks, this post solves my problem. But things have changed after this post, so here I pasted my procedures here for the followers:
building strace for android
# download sources
```
git clone https://github.com/strace/strace.git
cd strace
```
# set compiler info
```
export COMPILER_PATH=/home/xcy/Android/Sdk/my-android-toolchain
export CC=$COMPILER_PATH/bin/arm-linux-androideabi-gcc
export STRIP=$COMPILER_PATH/bin/arm-linux-androideabi-strip
export CFLAGS="-O2 -static"
export PATH=$PATH:$COMPILER_PATH/bin
```
# compile
enter the source folder and do following steps,
```
// use autoconf to generate configure from configure.ac
xcy@uxcy:~/ws/strace/strace$ autoconf
configure.ac:25: error: possibly undefined macro: AM_INIT_AUTOMAKE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.ac:26: error: possibly undefined macro: AM_MAINTAINER_MODE
xcy@uxcy:~/ws/strace/strace$ ls | grep configure
configure
configure.ac
README-configure
// generate makefile.in
xcy@uxcy:~/ws/strace/strace$ ./bootstrap
...
xcy@uxcy:~/ws/strace/strace$ ls | grep Make
Makefile.am
Makefile.in
xcy@uxcy:~/ws/strace/strace$ ./configure --host=arm-linux
xcy@uxcy:~/ws/strace/strace$ make
xcy@uxcy:~/ws/strace/strace$ file strace
strace: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), statically linked, not stripped
xcy@uxcy:~/ws/strace/strace$ $STRIP strace
xcy@uxcy:~/ws/strace/strace$ file strace
strace: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), statically linked, stripped
```
Hello,
Can you please number your steps for cross compiling strace on android because i can't understand which are the commands and which are the output.
Also are these commands run on git before connecting the android phone to usb?
IT Innovation Inc is a leading provider of network products with 27000+ customers in over 200 countries and regions. We provide original new and used network equipment (Cisco, Huawei, HPE, Dell, Juniper, Fortinet) to our global customer base.
amd 5950x price
c9200l 24t 4g e
ws c2960x 48fpd l
fg 30e
fg 100f
ws c2960l 16ps ll
ws c2960x 48td l
IT Innovation Inc is a leading provider of network products with 27000+ customers in over 200 countries and regions. We provide original new and used network equipment (Cisco, Huawei, HPE, Dell, Juniper, Fortinet) to our global customer base.
WS-C2960X-48LPS-L
ws-c2960x-48fpd-l
WS-C2960S-48TD-L
WS-C2960X-48LPD-L
WS-C2960+48TC-L
WS-C2960S-24TS-L
ws c2960x 48td l
ws-c2960l-16ps-ll
Post a Comment