Slava Gorlov

Results 11 comments of Slava Gorlov

We can observe the same issue in dask_sql == 2023.11.0. Environment: - Architecture: aarch64 (AWS Graviton2, neoverse-n1) - Linux Distro: Amazon Linux 2 - Linux Kernel: 4.14 - glibc: 2.26...

@jakirkham thank you and your team for the hard work! Nope, older versions also exhibit the same behavior. We dived deeper into the problem + (spolier) found one more universal...

@jakirkham no worries! We're in the middle development phase, so can use our dirty fork meanwhile. P.S., Happy Thanksgiving!

@jaraco I may be wrong, but it looks like PyPy doesn't preserve `LDCXXSHARED` at all in its configuration. CPython does that explicitely here: https://github.com/python/cpython/blob/5a7f7c48644baf82988f30bcb43e03dcfceb75dd/configure.ac#L3395.

This can be solved by exporting `pybind11_DIR` environment variable and pointing that to the directory where pybind11 is installed. It should be the `pybind11` Python module directory if installed via...

Observe the same with the forward declaration of `RegisteredMetricCallback` in https://github.com/grpc/grpc/blob/v1.65.0/src/core/telemetry/metrics.h: 1. Line 270: forward declaration https://github.com/grpc/grpc/blob/v1.65.0/src/core/telemetry/metrics.h#L270 2. Line 466: std::make_unique is called on incomplete type https://github.com/grpc/grpc/blob/v1.65.0/src/core/telemetry/metrics.h#L466 3. Line 530:...

@h-vetinari Wanted to say you a big-big thanks for this amazing work! After finding a workaround for [this](https://github.com/llvm/llvm-project/issues/102495) issue, we were able to build SciPy using LLVM 20 on Amazon...

@rgommers yeah, I have the similar feeling. It's not so huge amount of Fortran code in SciPy. Probably, this is something related to that flang better interoperates with LLVM ecosystem...

@WillAyd, `meson` can use CMake configuration files to detect installed packages, too, if it will help w/ your original issue.