Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[package] any: CMake Header-only package with a compiler setting fail to build on Windows #1957

Closed
Minimonium opened this issue Jun 17, 2020 · 7 comments
Labels
bug Something isn't working

Comments

@Minimonium
Copy link
Contributor

CMake build helper on Windows uses settings to determine which CMake generator to use.
In older Conan versions the behavior was a failure in configure step, but since that, it seems to be fixed for the default case, so I failed to properly double-check that. My apologizes.

If there are no settings in a recipe - Conan delegates the generator detection to CMake.
It may be a problem in some cases but I've failed to reproduce it (/cc @theodelrieu ):

When expliciting CC=cl.exe in a profile, and creating a package which declares no settings (nlohmann_json/3.8.0) Conan will not run the MSVC command tools prior to running CMake, thus the CMakeDetermineCCompiler.cmake script will fail

If a package requires a compile setting for some unrelated work as a C++ standard support detection - it fails to configure the project because of faulty logic in here:
https://github.com/conan-io/conan/blob/develop/conans/client/build/cmake.py#L158

Affected recipes:
#1946
#1945
#1939
#1936

/cc @Croydon @SSE4

Profile

[settings]
os=Windows
os_build=Windows
arch=x86
arch_build=x86
compiler=Visual Studio
compiler.version=16
compiler.toolset=v141
compiler.runtime=MDd
build_type=Debug
compiler.cppstd=17
[options]
[build_requires]
[env]

Example to reproduce

$ conan create ./recipes/kitten/all kitten/0.1.0@user/testing
Result
ERROR: kitten/0.1.0@user/testing: Error in build() method, line 48
        cmake = self._configure_cmake()
while calling '_configure_cmake', line 34
        cmake.configure(source_folder=self._source_subfolder,
        ConanException: CMake does not support toolsets with generator "None:.Please check your conan profile to either remove the toolset, or change the CMake generator.

Note: It could happen that not all settings are required or not all

@Minimonium Minimonium added the bug Something isn't working label Jun 17, 2020
@danimtb
Copy link
Member

danimtb commented Jun 18, 2020

@Minimonium I guess the other settings like build_type are also needed, right?
I think having the settings there as input is fine and controlling the information that goes into the package_id afterward is clear as well

@Minimonium
Copy link
Contributor Author

@danimtb Well, CMake detects a default compiler and picks up an unrelated to profile configuration, for example in my case it's a Release x64 despite me having a Debug x86.

In normal use of CMake, even for header-only libraries, it'd be a problem (unless using a void hack) because CMake produces fixed to a configuration config files, which would fail to be detected. But CCI removes them.

The only issue may arise if a header-only project does some conditional file generation depending on the configuration.

@SSE4
Copy link
Contributor

SSE4 commented Jun 22, 2020

is this a big deal? I believe you always can set CONAN_CMAKE_GENERATOR to the one you need, and it will always use the right generator. changing each recipe might be too extensive.

@danimtb @jgsogo do you think we should merge all these PRs? for me it sounds like we have a bug around https://github.com/conan-io/conan/blob/c923c692fb14dd3ad0a66bab308b4a59f6a037dc/conans/client/build/cmake.py#L159

@jgsogo
Copy link
Contributor

jgsogo commented Jun 24, 2020

I think all the packages affected are already merged, right?

Will this problem raise if we run conan test <ref> /path/to/test_folder for every configuration (for header-only packages)?

@Minimonium
Copy link
Contributor Author

Yep! Thank you a lot.
About the conan test - it'd not help this issue since it'd reuse an existing header-only package, which is not a problem at all. The problem is that if you want to --build all - you'll not be able to with such a recipe. I think we need to either look into the Conan codebase solution for that, to clean up the toolchain detection logic - or into looking for a hook for CCI.

@SSE4 We do have a bug in the toolchain detection, but I'm not sure how to properly handle it to not make a timebomb for a recipe that would need some other information later on or another change in the codebase that would render any workaround useless. I also don't think that having a condition to have an env variable for a recipe to properly work on a fairly popular platform like Windows MSVC is a good solution.

@jgsogo
Copy link
Contributor

jgsogo commented Jul 17, 2020

I think this issue would've been fixed (because CCI would've failed) if this PR were in place: conan-io/conan#7327

@Minimonium
Copy link
Contributor Author

@jgsogo Indeed!

Also, I think that this issue may be closed now since all the recipes affected were merged. If anyone wants to proceed with the discussion - feel free to open the issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants