-
Notifications
You must be signed in to change notification settings - Fork 39
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
Absent functions in math library #1055
Comments
yeah i was lazy about lgamma.... the last math implementation I got didn't have it and I never looked for a replacement. Will see what I can do.... |
So, I've made my 2fa stuff using some TOTP tools. |
glad you are back on 😄 So probably the best thing to do is pull the function from llvm/libc implementation (which is here on github).... probably take a little bit of refactoring though.... |
I've taken a quick gander over at the llvm libc area.... it would require a lot of refactoring I believe... |
The mathematical library doesn't contain such functions as erf or lgamma (they are required by C99 standard). E.g. such program doesn't compile. The functions prototypes are present in the header files but are not implemented.
occ /9 a.c
Error: Undefined External 'lgamma' in module a.c
The text was updated successfully, but these errors were encountered: