berndporr / iir1

DSP IIR realtime filter library written in C++

Home Page:http://berndporr.github.io/iir1/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Adding lib to conan-center-index

wouterz opened this issue · comments

Would you mind if create a recipe in order for this library to be hosted on and used in conjunction with conan-center-index?

I guess you'll create a pull request? I guess it won't interfere with anything else in the library? As long as that's the case then sure, please create a recipe.

No changes to this repo are needed.

I am working on the recipe, but ran into two main issues:

  • GCC 5 does not seem to be supported and has been excluded in the recipe, although it should fully support c++11. (link )
  • All windows builds seem to run into a DLL loading error (Error 3221225781). Any hints to what dependency might be missing?

The cmake is not creating DLLs but only static libraries for windows so I guess that fails because if that?
GCC5 fails because it doesn't like some c++11 features: iterators in the for loop. Looks like it's not 100% c++11.