Hi
I am compiling mod_gzip. I made the required change in Makefile accompanying mod_gzip and I am getting following error:
cc1: error: unrecognized command line option "-Wall,-O3,-fomit-frame-pointer,-pipe"
Can anyone help?
I have done now. I had the same problem though.
It seems the fix is to change this line in the makefile:
$(APXS) -Wc,-Wall,-O3,-fomit-frame-pointer,-pipe -c mod_gzip.c mod_gzip_debug.c mod_gzip_compress.c -o mod_gzip.so
To:
$(APXS) -Wc "-Wall -O3 -fomit-frame-pointer -pipe" -c mod_gzip.c mod_gzip_debug.c mod_gzip_compress.c -o mod_gzip.so
It's working fine after that.
<code>
<blockcode>
<c>
<cpp>
<drupal5>
<drupal6>
<java>
<javascript>
<php>
<python>
<ruby>
<foo>
[foo]
I have done now. I had the same problem though.
It seems the fix is to change this line in the makefile:
To:
It's working fine after that.
Post Comment