Re: [CMake] Setting compiler for cmake

2013-10-05 Thread Óscar Fuentes
outro pessoa writes: > The problem is this: > I am trying to port traverso-daw to FreeBSD-10.x. I have to edit the CMake > variables. Since the project is not mine, I need to work with a patched > version. I have tried getting in contact with the original developer. > Okay, do I need to clear out

Re: [CMake] Setting compiler for cmake

2013-10-05 Thread outro pessoa
The problem is this: I am trying to port traverso-daw to FreeBSD-10.x. I have to edit the CMake variables. Since the project is not mine, I need to work with a patched version. I have tried getting in contact with the original developer. Okay, do I need to clear out the CMakeTmp files? On Sat, O

Re: [CMake] Setting compiler for cmake

2013-10-05 Thread Óscar Fuentes
[Please CC the cmake user's mailing list] outro pessoa writes: > I'm looking at CMakeDetermineCompilerABI_C.bin and the path to > /usr/local/lib/gcc46 is plain text in the elf file. Besides needing to > eliminate some log files, is there a cmake argument that can be passed to > clear all caches

[CMake] curses parameter problem while crosscompiling

2013-10-05 Thread Muisyle
Hi I´m trying to cross compile a programm and its works fine if I disable curses but when I enable it I cant find the right configuration for the curses files or dirs. Maybe someone could point me to a Website (or just tell me :)) where I can find the informations which files or dirs I have to

Re: [CMake] Setting compiler for cmake

2013-10-05 Thread Óscar Fuentes
outro pessoa writes: > Did it require any extra options outside of: clang bin/, clang lib/ , and > the implicit link list when you started using "clang-is-compiler"? It can be as easy as: CC=clang CXX=clang cmake ... or alternatively cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++