Thanks for your attention
1- I have not had any cmake on my PC already and I
must use source code.
2- Please see the attachment which cmake-bootstap.log
file was attached to.
Bests...
--- Pau Garcia i Quiles <[EMAIL PROTECTED]> wrote:
> Quoting Bill Hoffman <[EMAIL PROTECTED]>:
>
> > mostafa charmi wrote:
> >> hi,
> >>
> >> I have OpenSuse 10.3 as my OS. I tried to install
> >> Cmake- 2.4.7 on it, but the following error
> message
> >> was displayed on screen:
> >>
> >> "Error when bootstrapping CMake:
> >> Cannot find appropriate C compiler on this
> system.
> >> Please specify one using environment variable CC.
> >> See cmake_bootstrap.log for compilers attempted."
> >>
> >>
> >> I saw the cmake-bootstrap.log file, but I could
> not
> >> get it. I will appreciate if you can help me to
> fix
> >> the problem.
> >>
> >
> > You need to post more information. Can you just
> use the binary from
> > the cmake download page for linux? If not, you
> need to post the errors
> > from the cmake_boostrap.log file to this list.
>
> I don't think it's that simple but, might it be he
> has not installed
> gcc/g++? (at least that's what the error says)
>
> --
> Pau Garcia i Quiles
> http://www.elpauer.org
> (Due to my workload, I may need 10 days to answer)
>
> _______________________________________________
> CMake mailing list
> [email protected]
> http://www.cmake.org/mailman/listinfo/cmake
>
____________________________________________________________________________________
Never miss a thing. Make Yahoo your home page.
http://www.yahoo.com/r/hsTry: cc
Line: cc cmake_bootstrap_6746.test.c -o cmake_bootstrap_6746.test
---------- file -----------------------
#ifdef __cplusplus
# error "The CMAKE_C_COMPILER is set to a C++ compiler"
#endif
#include<stdio.h>
#if defined(__CLASSIC_C__)
int main(argc, argv)
int argc;
char* argv[];
#else
int main(int argc, char* argv[])
#endif
{
printf("%d\n", (argv != 0));
return argc-1;
}
------------------------------------------
./bootstrap: line 380: cc: command not found
Test failed to compile
Try: gcc
Line: gcc cmake_bootstrap_6746.test.c -o cmake_bootstrap_6746.test
---------- file -----------------------
#ifdef __cplusplus
# error "The CMAKE_C_COMPILER is set to a C++ compiler"
#endif
#include<stdio.h>
#if defined(__CLASSIC_C__)
int main(argc, argv)
int argc;
char* argv[];
#else
int main(int argc, char* argv[])
#endif
{
printf("%d\n", (argv != 0));
return argc-1;
}
------------------------------------------
./bootstrap: line 380: gcc: command not found
Test failed to compile
Try: xlc
Line: xlc cmake_bootstrap_6746.test.c -o cmake_bootstrap_6746.test
---------- file -----------------------
#ifdef __cplusplus
# error "The CMAKE_C_COMPILER is set to a C++ compiler"
#endif
#include<stdio.h>
#if defined(__CLASSIC_C__)
int main(argc, argv)
int argc;
char* argv[];
#else
int main(int argc, char* argv[])
#endif
{
printf("%d\n", (argv != 0));
return argc-1;
}
------------------------------------------
./bootstrap: line 380: xlc: command not found
Test failed to compile
Try: icc
Line: icc cmake_bootstrap_6746.test.c -o cmake_bootstrap_6746.test
---------- file -----------------------
#ifdef __cplusplus
# error "The CMAKE_C_COMPILER is set to a C++ compiler"
#endif
#include<stdio.h>
#if defined(__CLASSIC_C__)
int main(argc, argv)
int argc;
char* argv[];
#else
int main(int argc, char* argv[])
#endif
{
printf("%d\n", (argv != 0));
return argc-1;
}
------------------------------------------
./bootstrap: line 380: icc: command not found
Test failed to compile
Try: tcc
Line: tcc cmake_bootstrap_6746.test.c -o cmake_bootstrap_6746.test
---------- file -----------------------
#ifdef __cplusplus
# error "The CMAKE_C_COMPILER is set to a C++ compiler"
#endif
#include<stdio.h>
#if defined(__CLASSIC_C__)
int main(argc, argv)
int argc;
char* argv[];
#else
int main(int argc, char* argv[])
#endif
{
printf("%d\n", (argv != 0));
return argc-1;
}
------------------------------------------
./bootstrap: line 380: tcc: command not found
Test failed to compile
_______________________________________________
CMake mailing list
[email protected]
http://www.cmake.org/mailman/listinfo/cmake