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
iOS12 is removing libstdc++ from the simulator runtime and is pushing devs to adopt libc++.
I am able to build DSPFilters, by setting the DSPFilters build settings "C++ Standard Library" to "Compiler Default" and removing any build references to libstdc++.
While the library now compiles and runs, it hits an assertion.
Changing Butterworth.cpp lines 90/91, removing the negative sign seems to resolve the issue.
The text was updated successfully, but these errors were encountered:
brad-goss
changed the title
Compiling with libc++ throws errors
Compiling with libc++ issues
Jul 9, 2018
Libc++ requires the std::polar function to input a non negative rho.
https://cplusplus.github.io/LWG/issue2459
iOS12 is removing libstdc++ from the simulator runtime and is pushing devs to adopt libc++.
I am able to build DSPFilters, by setting the DSPFilters build settings "C++ Standard Library" to "Compiler Default" and removing any build references to libstdc++.
While the library now compiles and runs, it hits an assertion.
Changing Butterworth.cpp lines 90/91, removing the negative sign seems to resolve the issue.
The text was updated successfully, but these errors were encountered: