<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">
Maybe the issue is with the different versions of gcc. I don't have Cmake 2.6 to be able to look at the FindBoost.cmake file. You might want to find that file (/usr/local/share/cmake-2.6/Modules) and put some "message (STATUS "...") commands in it to try and trace through what is going wrong.<div><br></div><div><div> <span class="Apple-style-span" style="border-collapse: separate; border-spacing: 0px 0px; color: rgb(0, 0, 0); font-family: Bitstream Vera Sans; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-align: auto; -khtml-text-decorations-in-effect: none; text-indent: 0px; -apple-text-size-adjust: auto; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px; "><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">-- </div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">Mike Jackson   Senior Research Engineer</div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">Innovative Management &amp; Technology Services</div><br class="Apple-interchange-newline"></span> </div><br><div><div>On Jun 25, 2008, at 3:55 PM, Ravi Tej Kavalipati wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><br>both have cmake 2.6, boost 1.35.0, and on problem machine  i have GCC 4.2.1 and GCC 4.2.3 on my linux.<br><br>Regards,<br>Ravi<br><br><div class="gmail_quote">On Wed, Jun 25, 2008 at 2:51 PM, Mike Jackson &lt;<a href="mailto:mike.jackson@imts.us">mike.jackson@imts.us</a>> wrote:<br> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div style=""> Well all that looks correct. Is GCC the same version on each machine? Is CMake the same version on each machine?<div class="Ih2E3d"><br><div> <span style="border-collapse: separate; border-spacing: 0px; color: rgb(0, 0, 0); font-family: Bitstream Vera Sans; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; text-indent: 0px; text-transform: none; white-space: normal; word-spacing: 0px;"><div style="margin: 0px;"> -- </div><div style="margin: 0px;">Mike Jackson   Senior Research Engineer</div><div style="margin: 0px;">Innovative Management &amp; Technology Services</div><br></span> </div><br></div><div><div><div></div><div class="Wj3C7c"> <div>On Jun 25, 2008, at 3:46 PM, Ravi Tej Kavalipati wrote:</div><br></div></div><blockquote type="cite"><div><div></div><div class="Wj3C7c">Library File Name Listing on Problem Machine : <br> <br> <a href="http://www.cct.lsu.edu/%7Ecdekate/problem_boost_library_list.txt" target="_blank">http://www.cct.lsu.edu/~cdekate/problem_boost_library_list.txt</a><br> <br> Library File Name Listing on Working Machine :<br> <br> <a href="http://www.cct.lsu.edu/%7Ecdekate/working_boost_library_list.txt" target="_blank">http://www.cct.lsu.edu/~cdekate/working_boost_library_list.txt</a><br> <font color="#888888"><br></font><br><div class="gmail_quote">On Wed, Jun 25, 2008 at 2:23 PM, Ravi Tej Kavalipati &lt;<a href="mailto:ravi.kavalipati@gmail.com" target="_blank">ravi.kavalipati@gmail.com</a>> wrote:<br> <blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> Hi,<br><br>I have CMakeLists.txt file which I have run on my personal linux machine and workstation, Celertias. I get different outputs, on my personal machine I get the executables linked to the boost libraries and on celeritas i get those libraries NOT FOUND.<br> <br>ON the Problem machine even though the boost libraries and such have been installed in globally addressable space /usr/local/{lib,include} and /usr/{lib,include}<br><br>The CMakeLists.txt line : <br>find_package(Boost 1.35.0 COMPONENTS date_time filesystem graph regex serialization thread system signals)<br> <br>doesnt find the corresponding libraries on celeritas(problem machine) that it does on my linux box.. <br> I dont understand this inconsistency<br><br>I m providing the CMakeCache.txt files on both my machine and on Celeritas.<br> <br>any help???<br>__________________________________________________________<br>#CMakeLists.txt<br> project (hpx)<br><br># We need to use Boost<br>find_package(Boost 1.35.0 COMPONENTS date_time filesystem graph regex serialization thread system signals)<br> <br># We need to include the hpx directory for includes<br>include_directories (${hpx_SOURCE_DIR})<br> include_directories (${hpx_SOURCE_DIR}/external/coroutine)<br>include_directories (${hpx_SOURCE_DIR}/external/exception)<br> include_directories (${hpx_SOURCE_DIR}/external/endian)<br>include_directories (${hpx_SOURCE_DIR}/external/logging)<br> include_directories (${hpx_SOURCE_DIR}/external/singleton)<br><br>if(WIN32)<br>    add_definitions(-D_WIN32_WINNT=0x0501)<br>     add_definitions(-D_SCL_SECURE_NO_WARNINGS)<br>    add_definitions(-D_CRT_SECURE_NO_WARNINGS)<br>     add_definitions(-D_SCL_SECURE_NO_DEPRECATE)<br>    add_definitions(-D_CRT_SECURE_NO_DEPRECATE)<br>endif(WIN32)<br><br> add_subdirectory (src)<br>add_subdirectory (examples)<br>add_subdirectory (runtime)<br><b><br></b>**************************************************************<br> <b>Working CMake Cache on my linux box: <br></b>**************************************************************<br> <br>Standard cmake 2.6 installation from source in /usr/local/<br>Standard boost 1.35.0 installed from source in /usr/local/<br> CMake makefile generation messages : <br>cdekate@px06:~/parallex/trunk/hpx$ cmake .<br>-- The C compiler identification is GNU<br> -- The CXX compiler identification is GNU<br>-- Check for working C compiler: /usr/bin/gcc<br> -- Check for working C compiler: /usr/bin/gcc -- works<br>-- Detecting C compiler ABI info<br>-- Detecting C compiler ABI info - done<br> -- Check for working CXX compiler: /usr/bin/c++<br>-- Check for working CXX compiler: /usr/bin/c++ -- works<br> -- Detecting CXX compiler ABI info<br>-- Detecting CXX compiler ABI info - done<br>-- Found The Following Boost Libraries:<br> --   date_time<br>--   filesystem<br>--   graph<br>--   regex<br>--   serialization<br>--   thread<br> --   system<br>--   signals<br>-- Boost Version: 1.35.0<br>-- Configuring done<br>-- Generating done<br>-- Build files have been written to: /home/cdekate/parallex/trunk<div> /hpx<br>cdekate@px06:~/parallex/trunk/hpx$ <br> <br>Corresponding CMakeCache file :<br> <a href="http://www.cct.lsu.edu/%7Ecdekate/Working_CMakeCache.txt" target="_blank">http://www.cct.lsu.edu/~cdekate/Working_CMakeCache.txt</a><br> <br>**************************************************************<br><b>Celeritas (Problem Machine)<br> </b>**************************************************************<br><b><br></b> Standard cmake 2.6 installation from source in /usr/local/<br> Standard boost 1.35.0 installed from source in /usr/local/<br>cdekate@celeritas hpx]$ cmake .<br>-- The C compiler identification is GNU<br>-- The CXX compiler identification is GNU<br>-- Check for working C compiler: /home/packages/gcc-4.2.1/bin/gcc<br> -- Check for working C compiler: /home/packages/gcc-4.2.1/bin/gcc -- works<br>-- Detecting C compiler ABI info<br>-- Detecting C compiler ABI info - done<br>-- Check for working CXX compiler: /home/packages/gcc-4.2.1/bin/c++<br> -- Check for working CXX compiler: /home/packages/gcc-4.2.1/bin/c++ -- works<br>-- Detecting CXX compiler ABI info<br>-- Detecting CXX compiler ABI info - done<br>-- Configuring done<br>-- Generating done<br>-- Build files have been written to: /home/cdekate/hpx<br> [cdekate@celeritas hpx]$ <br><br>Corresponding CMakeCache file:<br><a href="http://www.cct.lsu.edu/%7Ecdekate/Problem_CMakeCache.txt" target="_blank">http://www.cct.lsu.edu/~cdekate/Problem_CMakeCache.txt</a><br><br clear="all"> <br><br>Regards,<br>Ravi Tej<br><br></div> </blockquote></div><br></div></div><div class="Ih2E3d"><div style="margin: 0px;">_______________________________________________</div><div style="margin: 0px;">CMake mailing list</div> <div style="margin: 0px;"><a href="mailto:CMake@cmake.org" target="_blank">CMake@cmake.org</a></div><div style="margin: 0px;"><a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a></div> </div></blockquote></div><br></div></blockquote></div><br></blockquote></div><br></div></body></html>