* installing *source* package ‘churon’ ...
** this is package ‘churon’ version ‘0.1.12’
** package ‘churon’ successfully unpacked and MD5 sums checked
** using staged installation
Using cargo 1.98.1 and rustc 1.98.1.
** libs
using C compiler: ‘gcc (GCC) 16.2.1 20260819 (Red Hat 16.2.1-2)’
make[1]: Entering directory '/data/localhost/ripley/R/packages/tests-devel/churon/src'
rm -Rf churon.so ./rust/target/release/libchuron.a entrypoint.o
gcc -I"/data/localhost/ripley/R/R-devel/include" -DNDEBUG -I/usr/local/include -fpic -g -O2 -Wall -pedantic -mtune=native -Wp,-D_FORTIFY_SOURCE=3 -fexceptions -fstack-protector-strong -fstack-clash-protection -fcf-protection -Werror=implicit-function-declaration -Wstrict-prototypes -c entrypoint.c -o entrypoint.o
# Check rustc version
rustc --version
rustc 1.98.1 (48a229cea 2026-09-01) (Fedora 1.98.1-1.fc44)
# Vendor setup: extract vendored crates and configure cargo
if [ -f ./rust/vendor.tar.xz ]; then \
tar -xf ./rust/vendor.tar.xz -C /data/localhost/ripley/R/packages/tests-devel/churon/src && \
mkdir -p /data/localhost/ripley/R/packages/tests-devel/churon/src/.cargo && \
cp ./rust/vendor-config.toml /data/localhost/ripley/R/packages/tests-devel/churon/src/.cargo/config.toml; \
fi
# Load ONNX Runtime environment variables
if [ -f "ort_config.env" ]; then \
. ./ort_config.env; \
fi; \
# In some environments, ~/.cargo/bin might not be included in PATH, so we need
# to set it here to ensure cargo can be invoked. It is appended to PATH and
# therefore is only used if cargo is absent from the user's PATH.
if [ "" != "true" ]; then \
export CARGO_HOME=/data/localhost/ripley/R/packages/tests-devel/churon/src/.cargo; \
fi && \
export PATH="/data/localhost/ripley/bin:/usr/local/bin:/usr/local/texbin:/usr/sbin:/usr/lib64/qt-3.3/bin:/usr/share/Modules/bin:/usr/bin:/bin:/usr/sbin:/sbin:/data/localhost/ripley/.composer/vendor/bin:/usr/lib64/openmpi/bin:/data/localhost/ripley/.cargo/bin" && \
if [ -f "ort_config.env" ]; then . ./ort_config.env; fi && \
if [ -f ./rust/vendor.tar.xz ]; then \
cargo build --jobs 2 --lib --release --offline --manifest-path=./rust/Cargo.toml --target-dir ./rust/target; \
else \
cargo build --jobs 2 --lib --release --manifest-path=./rust/Cargo.toml --target-dir ./rust/target; \
fi
warning: a `-j` argument was passed to Cargo but Cargo is also configured with an external jobserver in its environment, ignoring the `-j` parameter
Compiling autocfg v1.5.0
Compiling proc-macro2 v1.0.107
Compiling unicode-ident v1.0.18
Compiling quote v1.0.47
Compiling rawpointer v0.2.1
Compiling extendr-ffi v0.9.0
Compiling ort-sys v2.0.0-rc.13
Compiling paste v1.0.15
Compiling num-traits v0.2.19
Compiling matrixmultiply v0.3.10
Compiling extendr-api v0.9.0
Compiling cfg-if v1.0.1
Compiling lazy_static v1.5.0
Compiling libloading v0.9.0
Compiling syn v2.0.114
Compiling syn v3.0.4
Compiling num-complex v0.4.6
Compiling num-integer v0.1.46
Compiling once_cell v1.21.3
Compiling ndarray v0.16.1
Compiling ndarray v0.17.2
Compiling smallvec v1.15.2
Compiling readonly v0.2.14
Compiling extendr-macros v0.9.0
Compiling ort v2.0.0-rc.13
Compiling churon v0.1.0 (/data/localhost/ripley/R/packages/tests-devel/churon/src/rust)
Finished `release` profile [optimized] target(s) in 31.99s
if [ "" != "true" ]; then \
rm -Rf /data/localhost/ripley/R/packages/tests-devel/churon/src/.cargo && \
rm -Rf ./rust/target/release/build; \
fi
gcc -shared -g -O2 -Wall -pedantic -mtune=native -Wp,-D_FORTIFY_SOURCE=3 -fexceptions -fstack-protector-strong -fstack-clash-protection -fcf-protection -Werror=implicit-function-declaration -Wstrict-prototypes -fpic -L/usr/local/lib64 -o churon.so entrypoint.o -L./rust/target/release -lchuron
make[1]: Leaving directory '/data/localhost/ripley/R/packages/tests-devel/churon/src'
make[1]: Entering directory '/data/localhost/ripley/R/packages/tests-devel/churon/src'
/usr/sbin/nm: apple_versioning.c.o: no symbols
/usr/sbin/nm: os_version_check.c.o: no symbols
/usr/sbin/nm: trampoline_setup.c.o: no symbols
/usr/sbin/nm: truncxfbf2.c.o: no symbols
make[1]: Leaving directory '/data/localhost/ripley/R/packages/tests-devel/churon/src'
installing to /data/localhost/ripley/R/packages/tests-devel/churon.Rcheck/00LOCK-churon/00new/churon/libs
** R
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded from temporary location
** checking absolute paths in shared objects and dynamic libraries
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (churon)