We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This causes and issue compiling the ld-decode-tools ld-comb-ntsc on mac:
comb.cpp:732:83: error: use of undeclared identifier 'M_PIl'; did you mean 'P_PID'? ...double>(y), x) * (180 / M_PIl)); ^~~~~ P_PID
This can be fixed by defining the constant by hand:
#ifndef M_PIl #define M_PIl 0xc.90fdaa22168c235p-2L #endif
The text was updated successfully, but these errors were encountered:
Fix for issue #59 (broken Mac OS maths libraries)
1a45c07
Closing as fixed (no Mac environment to test on) - reopen if the problem is still there.
Sorry, something went wrong.
simoninns
Successfully merging a pull request may close this issue.
This causes and issue compiling the ld-decode-tools ld-comb-ntsc on mac:
comb.cpp:732:83: error: use of undeclared identifier 'M_PIl'; did you mean
'P_PID'?
...double>(y), x) * (180 / M_PIl));
^~~~~
P_PID
This can be fixed by defining the constant by hand:
#ifndef M_PIl
#define M_PIl 0xc.90fdaa22168c235p-2L
#endif
The text was updated successfully, but these errors were encountered: