Httpd Compilation on Mac: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * httpd Compilation") |
No edit summary |
||
Line 2: | Line 2: | ||
* [[Httpd_RHEL_Compilation#Compilation_on_Mac|httpd Compilation]] | * [[Httpd_RHEL_Compilation#Compilation_on_Mac|httpd Compilation]] | ||
=Notes= | |||
* <tt>configure</tt> tends to use <tt>cc</tt> by default and it has to be configured to use gcc. The Mac environment comes with gcc and the gcc pre-processor already installed, so before running <tt>configure</tt>, do this: | |||
<pre> | |||
export CC=/usr/bin/gcc | |||
export CPP=/usr/bin/cpp | |||
</pre> |
Revision as of 16:46, 5 January 2017
Internal
Notes
- configure tends to use cc by default and it has to be configured to use gcc. The Mac environment comes with gcc and the gcc pre-processor already installed, so before running configure, do this:
export CC=/usr/bin/gcc export CPP=/usr/bin/cpp