[CMake] Re: problems compilating 2.4.7 under 2.2

Bill Hoffman bill.hoffman at kitware.com
Wed Aug 8 12:20:47 EDT 2007


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



More information about the CMake mailing list