Ticket #26043: gcc4-graphite.diff
File gcc4-graphite.diff, 2.9 KB (added by adfernandes (Andrew Fernandes), 14 years ago) |
---|
-
gcc44/Portfile
86 86 --with-gmp=${prefix} \ 87 87 --with-mpfr=${prefix} \ 88 88 --enable-stage1-checking \ 89 --disable-multilib 89 --disable-multilib \ 90 --without-ppl \ 91 --without-cloog 90 92 # do NOT use MacPorts binutils -- they do not work 91 93 configure.env-append AR_FOR_TARGET=/usr/bin/ar \ 92 94 AS_FOR_TARGET=/usr/bin/as \ … … 148 150 configure.args-delete --disable-multilib 149 151 } 150 152 153 variant graphite description { enable the Graphite loop optimizations } { 154 depends_lib-append port:ppl port:cloog-ppl 155 configure.args-delete --without-ppl --without-cloog 156 configure.args-append --with-ppl=${prefix} --with-cloog=${prefix} 157 } 158 151 159 livecheck.type regex 152 160 livecheck.url http://gcc.gnu.org/gcc-4.4/ 153 161 livecheck.regex GCC (4\\.4\\.\[0-9\]) -
gcc45/Portfile
99 99 --with-mpfr=${prefix} \ 100 100 --with-mpc=${prefix} \ 101 101 --enable-stage1-checking \ 102 --disable-multilib 102 --disable-multilib \ 103 --without-ppl \ 104 --without-cloog 103 105 # do NOT use MacPorts binutils -- they do not work 104 106 configure.env-append AR_FOR_TARGET=/usr/bin/ar \ 105 107 AS_FOR_TARGET=/usr/bin/as \ … … 148 150 configure.args-delete --disable-multilib 149 151 } 150 152 153 variant graphite description { enable the Graphite loop optimizations } { 154 depends_lib-append port:ppl port:cloog-ppl 155 configure.args-delete --without-ppl --without-cloog 156 configure.args-append --with-ppl=${prefix} --with-cloog=${prefix} 157 } 158 151 159 livecheck.type regex 152 160 livecheck.url http://gcc.gnu.org/gcc-4.5/ 153 161 livecheck.regex GCC (4\\.5\\.\[0-9\]) -
gcc46/Portfile
102 102 --with-mpfr=${prefix} \ 103 103 --with-mpc=${prefix} \ 104 104 --enable-stage1-checking \ 105 --disable-multilib 105 --disable-multilib \ 106 --without-ppl \ 107 --without-cloog 106 108 # do NOT use MacPorts binutils -- they do not work 107 109 configure.env-append AR_FOR_TARGET=/usr/bin/ar \ 108 110 AS_FOR_TARGET=/usr/bin/as \ … … 133 135 configure.args-append --enable-fully-dynamic-string 134 136 } 135 137 138 variant graphite description { enable the Graphite loop optimizations } { 139 depends_lib-append port:ppl port:cloog-ppl 140 configure.args-delete --without-ppl --without-cloog 141 configure.args-append --with-ppl=${prefix} --with-cloog=${prefix} 142 } 143 136 144 # due to popular request - untested for the BETA; will be removed as soon as other languages than C compile successfuly 137 145 variant gfortran conflicts java \ 138 146 description "Enables Fortran/gfortran; this language will be enabled in the final version - this variant is completely untested!" {