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
Installing HTK on macOS Catalina. Following the steps outlined in HTK on OS X, error arises the make all step...
make all
strarr.c:21:10: fatal error: 'malloc.h' file not found #include <malloc.h> ^~~~~~~~~~ 1 error generated. make[1]: *** [strarr.o] Error 1 make: *** [HTKLib/HTKLib.a] Error 1
The fix, for me at least: replace line 21 (#include <malloc.h>) of ./HTKLib/strarr.c with #include <stdlib.h>
#include <malloc.h>
#include <stdlib.h>
I can submit a pull request if that will help, just didn't think it's worth it for the small issue.
The text was updated successfully, but these errors were encountered:
Your method solved my problem, thanks.
Sorry, something went wrong.
No branches or pull requests
Installing HTK on macOS Catalina. Following the steps outlined in HTK on OS X, error arises the
make all
step...The fix, for me at least: replace line 21 (
#include <malloc.h>
) of ./HTKLib/strarr.c with#include <stdlib.h>
I can submit a pull request if that will help, just didn't think it's worth it for the small issue.
The text was updated successfully, but these errors were encountered: