Carlos Zoido
Carlos Zoido
Hi @redradist, I think that if you want that kind of behaviour you will have to add those fields and set the profile to use, conan.cmake does not provide the...
> @czoido But can you explain why conan.cmake does not detect CMAKE_C_LINKER_PREFERENCE and CMAKE_CXX_LINKER_PREFERENCE ? > It is pretty easy to implement in conan.cmake ... if those variables are empty...
Hi @redradist, I think you are missing a call to a toolchain that sets `CMAKE_C_COMPILER`, `CMAKE_CXX_COMPILER`, `CMAKE_ASM_COMPILER` and so on. I think that's the way it should be done (https://cmake.org/cmake/help/latest/manual/cmake-toolchains.7.html)...
Yes, that seems fine. So, then, the only thing failing is the detection of the architecture? As you are crosscompiling the only way that the correct architecture will be set...
Hi @redradist, The architecture is not going to be passed correctly to cmake conan because there's no way to detect that, maybe if `CMAKE_SYSTEM_PROCESSOR` was set in the toolchain a...
Hi @xahon, Thanks for the question, right now cmake-conan does not support conan 2.0 (we added a note in the [README](https://github.com/conan-io/cmake-conan/blob/develop/README.md) announcing this), once it is GA we will see...
> @xahon Excuse me. What does **"GA"** stand for? It stands for General Availability
Hi @Vectrom, This is expected as the compiler is set in cmake-conan with major and minor version. In Conan the compatibility in apple-clang works like this: - If you consume...
Hi @pkubik, I have reproduced the issue, you are right that those settings will not be taken into account. Thanks a lot for reporting this, we'll have a look at...
Hi @pkubik, This issue is related to https://github.com/conan-io/cmake-conan/issues/255 and will be fixed by https://github.com/conan-io/cmake-conan/pull/258 that will be merged to 0.16 version. Now `compiler.libcxx` will be set correctly.