You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, this is an amazing DSP library, with a generous library.
I could do the recipe but I need some help:
It uses autotools;
It uses C99 <complex.h> so it doesn't build with MSVC.
However, since, this a C library, it can easily be linked with MSVC. It's possible to build it with msys2/mingw-64 and then generate a "link library" for MSVC...
Can this workflow be made with Conan? I mean, if the compiler is MSVC, have msys2/mingw-64 as a dependency and build it with it, and then generate a link library with MSVC, and etc?
The text was updated successfully, but these errors were encountered:
I don't think so, because the library does not build with MSVC because of the C99 <complex.h> usage that MSVC does not have.
MSVC is C11 and C17 compliant but not C99 compliant. (yeah, go figure)
Package Details
Description Of The Library / Tool
So, this is an amazing DSP library, with a generous library.
I could do the recipe but I need some help:
<complex.h>
so it doesn't build with MSVC.However, since, this a C library, it can easily be linked with MSVC. It's possible to build it with msys2/mingw-64 and then generate a "link library" for MSVC...
Can this workflow be made with Conan? I mean, if the compiler is MSVC, have msys2/mingw-64 as a dependency and build it with it, and then generate a link library with MSVC, and etc?
The text was updated successfully, but these errors were encountered: