Ticket #21341: gcc-graphite.diff
File gcc-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
103 103 --with-mpfr=${prefix} \ 104 104 --with-mpc=${prefix} \ 105 105 --enable-stage1-checking \ 106 --disable-multilib 106 --disable-multilib \ 107 --without-ppl \ 108 --without-cloog 107 109 # do NOT use MacPorts binutils -- they do not work 108 110 configure.env-append AR_FOR_TARGET=/usr/bin/ar \ 109 111 AS_FOR_TARGET=/usr/bin/as \ … … 152 154 configure.args-delete --disable-multilib 153 155 } 154 156 157 variant graphite description { enable the Graphite loop optimizations } { 158 depends_lib-append port:ppl port:cloog-ppl 159 configure.args-delete --without-ppl --without-cloog 160 configure.args-append --with-ppl=${prefix} --with-cloog=${prefix} 161 } 162 155 163 livecheck.type regex 156 164 livecheck.url http://gcc.gnu.org/gcc-4.5/ 157 165 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!" {