diff options
author | Tony Theodore <tonyt@logyst.com> | 2017-06-20 10:10:25 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2017-06-20 10:10:25 (GMT) |
commit | aa4e4bab44080c9d8b7c0dfd05ed7826cde215f2 (patch) | |
tree | 11788136fa7fed279c09389e7d8d2dfa712afe5e | |
parent | be9e0856f28793e35251ff547134509b58af3e4f (diff) | |
download | mxe-aa4e4bab44080c9d8b7c0dfd05ed7826cde215f2.zip mxe-aa4e4bab44080c9d8b7c0dfd05ed7826cde215f2.tar.gz mxe-aa4e4bab44080c9d8b7c0dfd05ed7826cde215f2.tar.bz2 |
osx: note workaround for recent Xcode versions
see #1758
-rw-r--r-- | docs/index.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/index.html b/docs/index.html index 532626a..f9ff55f 100644 --- a/docs/index.html +++ b/docs/index.html @@ -845,7 +845,7 @@ USE_OSGPLUGIN(<plugin2>) and will need <code>brew link</code> to be found. </p> - <h5 id="requirements-macos-genaral">Genral Notes</h5> + <h5 id="requirements-macos-general">Genral Notes</h5> <p> You may be prompted to install a java runtime - this is not required. @@ -857,6 +857,16 @@ USE_OSGPLUGIN(<plugin2>) <h5>Certain packages have open issues on OS X</h5> </p> <p> + For Xcode ≥ 8.3 install an alternate compiler to build `gcc`. + For example, if you use Macports run: + <pre>sudo port install gcc5 +make cmake && \ +sudo port select gcc mp-gcc5 && \ +make gcc -j4 && \ +sudo port select gcc none && \ +make -j4 -k</pre> + </p> + <p> For Xcode <7.3, run: </p> <pre>make EXCLUDE_PKGS='nsis'</pre> |