|
Re: Does QNX7.0 utility support rsync tool?
|
02/16/2022 2:15 PM
post121727
|
Re: Does QNX7.0 utility support rsync tool?
I can confirm that rsync required no patches for QNX 6.6. If it's of any use, our current recipe is below -- popt and
zlib are built elsewhere in our distro, so I can't speak for if the vendored versions work.
CHOST="x86-unknown-nto-qnx"
CBUILD="x86_64-unknown-linux-gnu"
export CC=qcc
export CXX=QCC
export ac_cv_prog_cc_c99=""
export rsync_cv_MAKEDEV_TAKES_3_ARGS=yes
./configure --build=${CBUILD} --host=${CHOST} \
--prefix=/usr \
--disable-debug \
--with-included-popt=no \
--with-included-zlib=no \
--enable-simd=no \
--disable-acl-support \
--disable-xxhash \
--disable-zstd \
--disable-lz4 \
--disable-ipv6
make
|
|
|