Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make gcc14 the primary version on Tiger+ #26655

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions lang/gcc7/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,12 @@ if {${subport} eq "libgcc7"} {
depends_lib-delete port:zlib
depends_build-append {*}${depends_lib}
depends_lib port:zlib
} elseif { ${os.major} < 10 } {
Copy link
Contributor

@kencu kencu Nov 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so we aren’t doing do this skip now.

the decision was that libgcc7 will depend on libgcc8, and then etc to the current libgcc14, just like all the other systems

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I haven't addressed this yet, as I'm still building gcc14. Will do

# Skip all the way to gcc14, because gcc versions 8 and 13
# are not currently supported on 10.4 and 10.5.
depends_run port:libgcc14
depends_build-append {*}${depends_lib}
depends_lib
} else {
depends_run port:libgcc8
depends_build-append {*}${depends_lib}
Expand Down