From 3d972c199e7c7616535a177ab421db1a2e808226 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Mon, 16 Sep 2024 12:03:28 +0000 Subject: [PATCH] fix: ensure report rustc version if pre-built binary will be used --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index ee349f6d0..ecf6b4043 100755 --- a/configure +++ b/configure @@ -68,6 +68,8 @@ check_bin_lib() { echo "" echo "---------------------- [LIBRARY BINARY FOUND] ----------------------" echo "The library was found at <${LIBR_POLARS_PATH}>. No need to build it." + echo "" + echo "Note: rustc version: $(rustc -V || echo 'Not found')" echo "--------------------------------------------------------------------" echo "" sed -e "s|@RUST_TARGET@||" -e "s|@ADDITIONAL_PKG_LIBS_FLAG@|${ADDITIONAL_PKG_LIBS_FLAG}|" src/Makevars.in >src/Makevars @@ -87,6 +89,8 @@ check_bin_lib() { echo "The library was not found at <${LIBR_POLARS_PATH}>," echo "but was found at <${LIBR_POLARS_DEFAULT_PATH}>." echo "No need to build it." + echo "" + echo "Note: rustc version: $(rustc -V || echo 'Not found')" echo "--------------------------------------------------------------------" echo "" sed -e "s|@RUST_TARGET@||" -e "s|@ADDITIONAL_PKG_LIBS_FLAG@|${ADDITIONAL_PKG_LIBS_FLAG}|" src/Makevars.in >src/Makevars