-
Notifications
You must be signed in to change notification settings - Fork 990
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
[bug] TypeError: sequence item 0: expected str instance, NoneType found #16086
Comments
For reference, here are the profiles I use (it may help you with triaging):
|
Hi @DoDoENT, Thanks a lot for reporting, I have been able to reproduce the issue and opened a PR to fix that. |
@DoDoENT closing this after #16090 included in version 2.2.3 that has just been released: https://github.com/conan-io/conan/releases/tag/2.2.3 |
Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
When using profile with custom architecture that represents an apple universal binary, conan fails with:
mb_genererate_with_cmake_args
is our function that sets up theCMakeToolchain
with variables and then calls thegenerate
function on it.The error was introduced in conan v2.2.0, possibly with official support for universal binaries.
Downgrading to v2.1.0 fixes the issue.
I also tried setting
arch = armv8|x86_64
in my profile instead of the customuniversal
, however this generates a broken xcode project which fails to build (the error beingmake: *** No rule to make target
/Users/dodo/.conan2/p/b/log_a9bf66684d376f/b/build/generators/Boost-release-armv8', needed by/Users/dodo/.conan2/p/b/log_a9bf66684d376f/b/build/CMakeFiles/cmake.check_cache'. Stop.
). If I tried usingninja
instead ofxcode
, then it fails withHow to reproduce it
settings_user.yml
The text was updated successfully, but these errors were encountered: