Lunderberg commented on issue #17209:
URL: https://github.com/apache/tvm/issues/17209#issuecomment-2260691907

   Can you show the output from the following commands?
   
   * `make VERBOSE=1`: Show the full command used to compile the `analyzer.cc` 
file
   * `which g++`: Where the `g++` executable is located.
   * `echo | g++ -xc++ -E -v -`: Print out the defaults used by g++.  You'll 
want to look at the lines after `#include <...> search starts here` to see if 
it is looking for the new stdlib implementation.
   * `ldconfig --print-cache | grep libstdc`: Whether the linker is configured 
to find the new stdlib implementation.
   * `echo LD_LIBRARY_PATH=$LD_LIBRARY_PATH`: Whether the `LD_LIBRARY_PATH` is 
used to override the settings from `ldconfig`.
   
   
   It's possible that the newer version of g++ is still using the stdlib 
headers provided by the system's default version of g++, and these should help 
in determining if that's the case.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to