Revision: 115581 https://trac.macports.org/changeset/115581 Author: jeremyhu@macports.org Date: 2014-01-05 23:40:08 -0800 (Sun, 05 Jan 2014) Log Message: ----------- clang-3.[45]: Try gmake to see if it fixes issues on the SL build bot. Modified Paths: -------------- trunk/dports/lang/llvm-3.4/Portfile trunk/dports/lang/llvm-3.5/Portfile Modified: trunk/dports/lang/llvm-3.4/Portfile =================================================================== --- trunk/dports/lang/llvm-3.4/Portfile 2014-01-06 02:53:27 UTC (rev 115580) +++ trunk/dports/lang/llvm-3.4/Portfile 2014-01-06 07:40:08 UTC (rev 115581) @@ -155,6 +155,13 @@ patchfiles-append leopard-no-asan.patch } + if {${os.major} < 11} { + # Tiger's DevTools make has issues with the nested ifs in compiler-rt + # Our SnowLeopard buildbot seems to be running into parallel build issues + depends_run-append port:gmake + build.cmd ${prefix}/bin/gmake + } + if {${os.major} < 10} { post-patch { reinplace "/TARGETS_TO_BUILD=/s/R600//" ${worksrcpath}/configure @@ -162,10 +169,6 @@ } if {${os.major} < 9} { - # Tiger's DevTools make has issues with the nested ifs in compiler-rt - depends_run-append port:gmake - build.cmd ${prefix}/bin/gmake - post-configure { reinplace "/^RPATH/s/=.*/=/" ${worksrcpath}/Makefile.config } Modified: trunk/dports/lang/llvm-3.5/Portfile =================================================================== --- trunk/dports/lang/llvm-3.5/Portfile 2014-01-06 02:53:27 UTC (rev 115580) +++ trunk/dports/lang/llvm-3.5/Portfile 2014-01-06 07:40:08 UTC (rev 115581) @@ -155,6 +155,13 @@ patchfiles-append leopard-no-asan.patch } + if {${os.major} < 11} { + # Tiger's DevTools make has issues with the nested ifs in compiler-rt + # Our SnowLeopard buildbot seems to be running into parallel build issues + depends_run-append port:gmake + build.cmd ${prefix}/bin/gmake + } + if {${os.major} < 10} { post-patch { reinplace "/TARGETS_TO_BUILD=/s/R600//" ${worksrcpath}/configure @@ -162,10 +169,6 @@ } if {${os.major} < 9} { - # Tiger's DevTools make has issues with the nested ifs in compiler-rt - depends_run-append port:gmake - build.cmd ${prefix}/bin/gmake - post-configure { reinplace "/^RPATH/s/=.*/=/" ${worksrcpath}/Makefile.config }