You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the main scripts sets only one of the desktop specific values for the compiler.libcxx (in conan_cmake_detect_unix_libcxx macro), e.g. libstdc++, libstdc++11. Please add support for other types values, e.g. c++_staticandc++_shared`.
Since it would be difficult to fully handle all special cases like Android I'd suggest another parameter for the override. At the moment it's possible to specify custom settings, but they are appended to the settings generated by the script and thus ignored, e.g.:
Note that compiler.libcxx is given twice, and the second one (specified manually) is being ignored rendering me unable to choose the correct value for Android project.
The text was updated successfully, but these errors were encountered:
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 it.
Right now the main scripts sets only one of the desktop specific values for the
compiler.libcxx
(inconan_cmake_detect_unix_libcxx
macro), e.g.libstdc++
, libstdc++11. Please add support for other types values, e.g.
c++_staticand
c++_shared`.Since it would be difficult to fully handle all special cases like Android I'd suggest another parameter for the override. At the moment it's possible to specify custom settings, but they are appended to the settings generated by the script and thus ignored, e.g.:
Note that
compiler.libcxx
is given twice, and the second one (specified manually) is being ignored rendering me unable to choose the correct value for Android project.The text was updated successfully, but these errors were encountered: