-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Newer MacOS has sufficiently new libExpat but is missing expat_config.h
#32
Comments
That file is needed. The settings in that file can change the ABI of the resuling compiled lib. So you need the specific version of the header file that was used to compile the binary. On MacOS I typically do a
|
Hello guys. RUN luarocks install luaexpat 1.5.0 and this is the error src/lxplib.c:12:26: fatal error: expat_config.h: No such file or directory
#include "expat_config.h"
^
compilation terminated.
Error: Build error: Failed compiling object src/lxplib.o So, my question is: how to solve that inside a docker container? |
@felipepazsquid Do you have the expat-dev or equivalent package installed on CentOS? Many distros split up library packages to have just the binaries with the header files in a separate package. You likely need the -dev or -devel or whatever RHEL is calling it these days for whatever provides libexpat. |
expat_config.h
Trying to bump a luaexpeat dependency on something in Homebrew I ran into trouble moving to 1.5.x because for whatever reason even the newer versions of libExpat don't supply
expat_config.h
as expected.See Homebrew/homebrew-core#114831 (comment)
This may be something upstream in libExpat, or it could be just an expectation that luaexpat needs to adjust.
The text was updated successfully, but these errors were encountered: