From 912ea40cdf5b395871015dde2025e9fa090e716b Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Sun, 29 Dec 2024 22:39:29 -0600 Subject: [PATCH] Display SQLite pkg-config output --- cpython-unix/build-cpython.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cpython-unix/build-cpython.sh b/cpython-unix/build-cpython.sh index 01355b38..635b3d30 100755 --- a/cpython-unix/build-cpython.sh +++ b/cpython-unix/build-cpython.sh @@ -7,9 +7,13 @@ set -ex export ROOT=`pwd` +pkg-config --modversion --path sqlite3 || echo "sqlite3.pc not found" + export PATH=${TOOLS_PATH}/${TOOLCHAIN}/bin:${TOOLS_PATH}/host/bin:${TOOLS_PATH}/deps/bin:$PATH export PKG_CONFIG_PATH=${TOOLS_PATH}/deps/share/pkgconfig:${TOOLS_PATH}/deps/lib/pkgconfig +pkg-config --modversion --path sqlite3 || echo "sqlite3.pc not found" + # configure somehow has problems locating llvm-profdata even though it is in # PATH. The macro it is using allows us to specify its path via an # environment variable.