-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
std::sqrt no member named sqrtf #10
Comments
Reopening this issue as I still cannot build this on GCC as sqrtf is still not in the standard. |
The module header adds the -lm to a linux build, see Doesn't this solve the issue? |
According to different sources this is a bug in GCC rather than a missing linker target. |
The function std::sqrtf is not available by default in GCC, it requires you to add the -lm flag to the compiler which may damage portability.
Can be found in file ff_meters_LevelMeterSource.h:105 (LevelMeterSource::ChannelData::getAvgRMS())
Edit: Removing std seems to fix the problem
The text was updated successfully, but these errors were encountered: