[131257] trunk/dports/lang/ghc/Portfile

cal at macports.org cal at macports.org
Wed Jan 7 11:35:21 PST 2015


Revision: 131257
          https://trac.macports.org/changeset/131257
Author:   cal at macports.org
Date:     2015-01-07 11:35:21 -0800 (Wed, 07 Jan 2015)
Log Message:
-----------
ghc: Fix compiler fallback version, blacklist system GCCs to force clang build

The system GCC might actually work, but supporting multiple configurations
(especially for old systems) is not something I want to do.

Modified Paths:
--------------
    trunk/dports/lang/ghc/Portfile

Modified: trunk/dports/lang/ghc/Portfile
===================================================================
--- trunk/dports/lang/ghc/Portfile	2015-01-07 19:27:08 UTC (rev 131256)
+++ trunk/dports/lang/ghc/Portfile	2015-01-07 19:35:21 UTC (rev 131257)
@@ -82,8 +82,12 @@
 # too old, clang-5.1 from from Xcode 5.1 works. I do not have any data points in
 # between, so I'm blacklisting everything lower than 5.1. If you want to test
 # the versions in between, be my guest.
+# Also avoid LLVM GCC 4.2 and GCC 4.2, which are before MacPorts' clang 3.4 in
+# the fallback list on some systems.
 compiler.blacklist-append \
-                {clang < clang-503.0.38} \
+                llvm-gcc-4.2 \
+                gcc-4.2 \
+                {clang < 503.0.38} \
                 macports-clang-3.3
 
 build.args      VERBOSE=1
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20150107/eecb713e/attachment-0001.html>


More information about the macports-changes mailing list