Skip to content

Instantly share code, notes, and snippets.

@timw4mail
Created September 9, 2019 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timw4mail/bcf05597241599ea3b44095676470db5 to your computer and use it in GitHub Desktop.
Save timw4mail/bcf05597241599ea3b44095676470db5 to your computer and use it in GitHub Desktop.
PHP Extension source build boilerplate
#!/bin/sh
make clean; # For those rebuilds
phpize;
autoreconf --install --force; # Stupid autotools/libtool version incompatibilities
./configure;
make;
sudo make install;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment