intractabilis

Results 96 comments of intractabilis

It reads that you gave up because CMake cannot find boost. If CMake cannot find boost, it's definitely not a Meson's problem. It's either CMake's or the authors of the...

> Issues with CMake not selecting the correct boost prefix when more than one boost installation is present This is not supposed to work. Boost's `.cmake` files are specifically generated...

Libraries are supposed to be in the PREFIX/lib location, CMake doesn't "search" for them. It sounds like a weird messed up case. I would just restore that solution you thought...

The only way to reliably work with boost in Meson is to add the following lines to your native/cross-build file: ```ini [properties] boost_includedir = '/somepath/boost_1_86_0' boost_librarydir = '/couldbeanotherpath/lib' ```

Yeah... This is not a particularly pretty part of Meson. I am curious how difficult would it be to disable a special treatment of boost in the Python source code...

It started happening to me. I am using Arch, GDB 17. The default terminal profile and login shell are bash. I am launching a console application, not GUI. GDB without...