DEV Community

Discussion on: Growing the PHP Core—One Test at a Time

Collapse
 
realflowcontrol profile image
Florian Engelhardt • Edited

Hey Agustin,

this looks like the libxml header files are not installed.

apt-get install libxml2-dev # for Debian based
# or
yum install libxml2-devel # for Fedora based
Enter fullscreen mode Exit fullscreen mode

This should install the needed header files to compile PHP. Additionally I could find this Stack Overflow Thread on the topic.

Let me know if this helped you!

Happy coding
Florian