Ryan Volz
Ryan Volz
I just discovered `libcorrect` in looking for a way to build `gr-satellites` for Windows which depends on `libfec`. In order to make packages for both on [conda-forge](https://conda-forge.org/), I'd need a...
Ah, the first patch is just a way to get `volk_modtool` to run as a command on Windows, where it refuses to recognize a Python script as something it can...
The Windows failure seems consistent with https://docs.microsoft.com/en-us/cpp/c-runtime-library/complex-math-support?view=msvc-160. Namely, that `_Complex` is not defined with MSVC. You could do some ifdefs and use `_FComplex` and friends instead, but that looks like...
> If you happen to know a place where we can find it, that'd be very useful. It's distributed as part of the Universal C Runtime, which comes in the...
I have figured out the initial problem: Microsoft's `` simply includes `` if it is included in a C++ compilation, and we have been compiling volk as C++ with MSVC...
> Currently, my idea would be: Use Clang to compile VOLK with MSVC ABI compat and use MSVC to compile tests, volk_profile etc. From my conda perspective, using Clang to...
Looks to me like the `False` value is getting converted to `false` (by Github Actions' YAML parser?), which then compares as unequal to `False` for the upload check. I'm not...
Looks like the Boost include directory is not added to the `common-precompiled-headers` target, so it would be necessary to add `Boost::format` to https://github.com/gnuradio/gnuradio/blob/maint-3.10/gnuradio-runtime/CMakeLists.txt#L87. And if we've completely removed Boost format...
As someone who has packaged GNU Radio and already had to figure out what's happening with `spdlog` and `libfmt`, hopefully I can offer some guidance. There was a period of...
This looks like https://github.com/gnuradio/gnuradio/issues/6283, for which a fix is in the works. Once https://github.com/gnuradio/gnuradio/pull/6340 is merged or gets feedback indicating that it will be merged, I plan on updating the...