File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -85,9 +85,11 @@ dict set clist clang18 {macports-clang-18}
85
85
dict set clist clang19 {macports-clang-19}
86
86
87
87
# Only enable default (gcc), and Xcode clang, for MacOS 10.7 and later
88
- if { ${os.major} >= 11 } {
88
+ if { ${os.major} >= 10 } {
89
89
dict set clist default {}
90
- dict set clist clang {clang}
90
+ if { ${build_arch} ni [list ppc ppc64] } {
91
+ dict set clist clang {clang}
92
+ }
91
93
} else {
92
94
lappend clist_unsupported \
93
95
default clang
@@ -152,7 +154,7 @@ if {${subport_enabled}} {
152
154
mpiutil_set_binary_eligibility \
153
155
${subport} ${cname}
154
156
155
- depends_build-append port :pkgconfig
157
+ depends_build-append path:bin/pkg-config :pkgconfig
156
158
depends_lib-append port:libxml2
157
159
158
160
if {${cname} eq " mp" } {
@@ -184,6 +186,9 @@ if {${subport_enabled}} {
184
186
# Hopefully avoid double-rpath issues.
185
187
compilers.add_gcc_rpath_support no
186
188
189
+ compiler.blacklist-append \
190
+ *gcc-4.0 *gcc-4.2
191
+
187
192
if {${os.major} < 12} {
188
193
# MPICH requires OpenCL version 1.2, which was not introduced until OS X Mountain Lion
189
194
configure.args-append \
You can’t perform that action at this time.
0 commit comments