From 3d7141d204793a582076f4e37a0a0e8be05ab388 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Thu, 4 Apr 2024 08:58:28 -0500 Subject: [PATCH] Add some debug logs. --- add_path.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/add_path.cpp b/add_path.cpp index c4d071a..49dd050 100644 --- a/add_path.cpp +++ b/add_path.cpp @@ -134,12 +134,14 @@ void bcp_implementation::add_file(const fs::path& p) // Modular libs top jamfile has references to all the user level // dependent libraries to also include. // + auto lib = *(++p.begin()); static const boost::regex e(">/boost/([a-zA-Z0-9_]+)"); fileview view(m_boost_path / p); boost::regex_token_iterator i(view.begin(), view.end(), e, 1); boost::regex_token_iterator j; while(i != j) { + std::cout << "INFO: Adding modular lib reference from: " << lib << " to: " << *i << "\n"; if (*i == "numeric_conversion") add_path(m_boost_path / "libs/numeric/conversion"); else if (*i == "interval") add_path(m_boost_path / "libs/numeric/interval"); else if (*i == "odeint") add_path(m_boost_path / "libs/numeric/odeint");