解决方法
假设您静态链接,您可以在没有NDK的情况下进行编译.这适用于Ubuntu 13.04 Raring Ringtail.
安装交叉编译器:
sudo apt-get install gcc-arm-linux-gnueabi
下载rsync:
wget http://rsync.samba.org/ftp/rsync/rsync-3.0.9.tar.gz tar -zxv -f rsync-3.0.9.tar.gz cd rsync-3.0.9
使用静态链接编译交叉编译器:
./configure --host=arm-linux-gnueabi CFLAGS="-static" make
在静态链接的应用程序中使用X时,您会得到一些警告,需要在运行时使用glibc版本中用于链接的共享库.但到目前为止,rsync对我有用.
最后,安装到手机上(假设您使用的是SSHDroid):
scp -P 2222 rsync root@$PHONE_IP:/data/data/berserker.android.apps.sshdroid/dropbear