Displaying 1 result from an estimated 1 matches for "autoconf_platform".
2019 Nov 05
1
Segmentation fault using rsync client on Android device
I've compiled rsync for my rooted Android (armeabi-v7a, 32-bit) device
using these instructions:
```
clone_or_update rsync master git://git.samba.org/rsync.git
cd rsync
./prepare-source
./configure \
--prefix=$INSTALL_ROOT/rsync \
--host=$AUTOCONF_PLATFORM \
CFLAGS="$CFLAGS -static"
make -j8 && make install
cd -
```
Best place for instructions to build I could find were here:
https://stackoverflow.com/a/18032833/157971
I didn't get any compiler or linker errors. It seemed to work.
I copied the `bin/rsync` executable to the...