Juan Sanchez wrote:
In addition, if it is crt1.o which is missing, it is in glibc-devel on a
redhat 7.3 system.
This is not looking like a cmake problem at all. Please try and compile a simple C++ hello world
program, and once that works try CMake again.

--- foo.cxx-----
#include <iostream>

int main(int ac, char** av)
{
std::cout <<  ac << " " << av[0] << "\n";
return 0;
}
---- end foo.cxx---

g++ foo.cxx
./a.out

Also, the binary on the CMake download for linux should work fine for any linux 32 bit intel system.

-Bill

_______________________________________________
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to