Commits
Jeremy Huddleston Sequoia authored a727175e6ba
113 113 | if {${configure.sdkroot} ne ""} { |
114 114 | # We should be using --with-build-sysroot here. Using --with-sysroot |
115 115 | # changes the behavior of the installed gcc to look in that sysroot |
116 116 | # by default instead of /. Using --with-build-sysroot is supposed |
117 117 | # to be used during the build but not impact the installed product. |
118 118 | # Unfortunately, the build fails because the value doesn't get |
119 119 | # plumbed everywhere it is supposed to. |
120 120 | # |
121 121 | # https://trac.macports.org/ticket/53726 |
122 122 | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=79885 |
123 - | # |
124 - | # Note that macports toolchains will fail to compile gcc unless |
125 - | # the DevSDK is installed due to another gcc build system bug: |
126 - | # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=80203 |
127 123 | configure.args-append --with-sysroot="${configure.sdkroot}" |
128 124 | } |
129 125 | |
130 126 | # TODO: Remove when base automatically creates configure.dir (2.2.1?). |
131 127 | file mkdir ${configure.dir} |
132 128 | } |
133 129 | |
134 130 | # http://trac.macports.org/ticket/29067 |
135 131 | compiler.blacklist-append gcc-4.0 |
136 132 | |