Fix gcc's -Wformat-security warnings in src/utils.cpp by using the Rvprintf function instead of using a temporary buffer and Rprintf.
Fix race conditions during build when using parallel make. Without this fix, the static library was created before all object files had finished compiling.
Fix gcc's
-Wformat-security
warnings insrc/utils.cpp
by using theRvprintf
function instead of using a temporary buffer andRprintf
.Fix race conditions during build when using parallel
make
. Without this fix, the static library was created before all object files had finished compiling.