Alex Trotta

Results 30 comments of Alex Trotta

This could also be useful as a configuration option to disallow function objects that are too large for SFO. ```c++ using MyFunction = fu2::function_base; auto cb1 = [foo, bar] {};...

That sounds good to me. Perhaps there could be more configuration options relating to mutexes, perhaps the following: 1. thread safe global (using thread_local internally) 1. thread safe local 1....

Hopefully you have a solution by now, but I think you might want something like this (untested): ```c++ struct Middleware{ void initialize(){ event_loop_runner = std::thread([&]() { { { py::gil_scoped_acquire acquire;...

Specifically, I am using CMakePresets for the dependency provider preset. For reference, I have this: ``` { "version": 3, "configurePresets": [ { "architecture": { "value": "x64", "strategy": "external" }, "binaryDir":...

@valgur I changed to the proper next version, when you get a chance could you update the PR title, along with the description? (I've linked two issues that should be...

protobuf v26 was just released a few days ago, which includes another major version bump to 5.26.x.

> Just curious, why keep two 3.21.x versions? and two 3.20.x versions? And for that matter, why keep all the 3.* versions? There are several dozen recipes that use the...

I will mention that there is another PR to add 4.25.0 here: https://github.com/conan-io/conan-center-index/pull/23095 Perhaps there are some elements of both that are useful, so maybe they should be reviewed in...

Potentially related to this issue with the Conan client itself: https://github.com/conan-io/conan/issues/12012 It seems that they `try_xxx` family of CMake functions just tend to not work for some reason.

Regarding conf info and environment variables: Currently, we have the following defined: Env: PATH, PYTHON, PYTHONHOME, PYTHON_ROOT Conf: user.cpython:python, user.cpython:pythonhome, user.cpython:module_requires_pythonhome, user.cpython:python_root Env: - PATH: fine - PYTHON: I can't...