gcc10-bootstrap (lang/gcc10-bootstrap) Updated: 1 year ago Add to my watchlist
Cross-platform gcc pegged at version 10.5.0. No dependencies.Cross-platform gcc pegged at version 10.5.0. No dependencies. This was the last version of gcc to not require c++11 for bootstrap.
Version: 10.5.0 License: (GPL-3+ or Permissive) GitHubMaintainers | No Maintainer |
Categories | lang |
Homepage | https://gcc.gnu.org/ |
Platforms | darwin |
Variants |
|
"gcc10-bootstrap" depends on
build (1)
Ports that depend on "gcc10-bootstrap"
build (1)lib (2)
Port notes
To use this bootstrap version of gcc instead of the default compiler, add the following lines to the Portfile:
depends_lib-append port:gcc10-bootstrap
configure.cc ${prefix}/libexec/gcc10-bootstrap/bin/gcc
configure.cxx ${prefix}/libexec/gcc10-bootstrap/bin/g++
If you would like to build universal port with this compiler, you must use per target compiler. The easy way is using muniversal PG:
PortGroup muniversal 1.0
if {${universal_possible} && [variant_isset universal]} {
configure.cc {}
configure.cxx {}
foreach arch ${universal_archs_supported} {
lappend merger_configure_env(${arch}) "CC=arch -arch ${arch} ${prefix}/libexec/gcc10-bootstrap/bin/gcc"
lappend merger_configure_env(${arch}) "CXX=arch -arch ${arch} ${prefix}/libexec/gcc10-bootstrap/bin/g++"
}
} else {
configure.cc ${prefix}/libexec/gcc10-bootstrap/bin/gcc
configure.cxx ${prefix}/libexec/gcc10-bootstrap/bin/g++
}
Port Health:
Loading Port Health