stevenwdv
stevenwdv
@gregmarr I didn't try, although I don't know what version Compiler Explorer has. Do you want me to try?
@gregmarr Ah, sorry, apparently the latest version was kept back in our repo by a transitive dependency specifying an older version. Unfortunately, the same error still occurs in 3.12.0: ```...
@CrysisKiller I'm not sure, because it really seems like they intended to support a broader set of ranges if you look at `is_compatible_array_type`, but somewhere some check fails. But yeah,...
I do sort-of hope this can be solved, as this leads to warnings in our build, such as: ``` ld: warning: object file (/Users/gitlab/.conan2/p/b/opens7056c2fe7a25c/p/lib/libssl.a[3](libssl-lib-d1_lib.o)) was built for newer 'macOS' version...
Update: CMake says that [`CMAKE_OSX_DEPLOYMENT_TARGET`](https://cmake.org/cmake/help/latest/variable/CMAKE_OSX_DEPLOYMENT_TARGET.html) should be set before `project()`/`enable_language()`. If it's not set explicitly, it will be set from the `MACOSX_DEPLOYMENT_TARGET` envvar. But: this only happens during the `project()`...
Also, as an aside, I'd prefer to just say what components I *do* want instead of the ones that I don't, and then for Conan or Boost to figure out...
Thanks, that's weird. Still, seemingly there's a component that does require it. I wonder which it is.
@uilianries Oh btw, about my [remark](https://github.com/conan-io/conan-center-index/issues/28801#issuecomment-3479959399): > Also, as an aside, I'd prefer to just say what components I *do* want instead of the ones that I don't, and then...
@uilianries Thanks for the clarification! What we ended up doing is just enabling `serialization`, at least for now.
I think storing the exception and throwing from `await_resume` is indeed how it's normally done? This would also solve that currently `val::awaiter` only works inside of `val::promise_type`, which currently means...