Last active
April 20, 2016 19:25
-
-
Save phpdave/046110a80f45f294235ac35472568373 to your computer and use it in GitHub Desktop.
compiling nginx on IBMi PASE. https://sites.google.com/site/rhdisk0/unix/aix/nginx-aix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone [email protected]:git-mirror/nginx.git && cd nginx | |
PATH=/opt/freeware/bin:$PATH \ | |
CC=gcc \ | |
CFLAGS=-O3 \ | |
./auto/configure \ | |
--error-log-path=/var/log/nginx/error.log \ | |
--http-log-path=/var/log/nginx/access.log \ | |
--with-http_ssl_module \ | |
--pid-path=/var/run/nginx.pid \ | |
--without-http_scgi_module \ | |
--without-http_uwsgi_module \ | |
--with-cpu-opt=ppc64 \ | |
--without-http_rewrite_module | |
make | |
make install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rpms for gcc for AIX | |
http://www.oss4aix.org/download/RPMS/gcc/ | |
http://www.oss4aix.org/download/RPMS/gmp/ | |
http://www.oss4aix.org/download/RPMS/libmpc/ | |
http://www.oss4aix.org/download/RPMS/mpfr/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment