I'm having an odd problem. I built and installed cmake in a non-standard location, using a compiler different from the system compiler on linux. Cmake compiles without complaint, and installs without complaint. When I attempt to build a piece of software using cmake, the configuration and build stages are fine. However, when I run 'make install', I get errors similar to:
/my/version/cmake: /usr/lib64/libstdc++.so.6: version 'GLIBCXX_3.4.20' not found (required by cmake) The funny thing is, though /my/version/cmake is not linked to /usr/lib64/libstdc++.so.6. Instead, it's linked to /my/version/libstdc++.so.6, as I intended. I've verified this with ldd, which only shows the latter expected results. /my/version/libstdc++.so.6 is in the library path, too, Not sure what's going on. Can someone help? --Jack
-- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: http://public.kitware.com/mailman/listinfo/cmake