Page MenuHomeFreeBSD

lang/ghc: Update bootstrap on arm to 8.10.7
ClosedPublic

Authored by mikael on Sep 27 2021, 11:07 AM.
Tags
None
Referenced Files
Unknown Object (File)
Wed, Mar 6, 3:37 PM
Unknown Object (File)
Wed, Mar 6, 3:37 PM
Unknown Object (File)
Wed, Mar 6, 3:37 PM
Unknown Object (File)
Wed, Mar 6, 3:24 PM
Unknown Object (File)
Feb 2 2024, 9:15 PM
Unknown Object (File)
Jan 29 2024, 11:02 AM
Unknown Object (File)
Jan 21 2024, 9:22 AM
Unknown Object (File)
Jan 17 2024, 1:14 AM

Details

Summary

Update bootstrap on arm to 8.10.7
Pass --host to the configure script otherwise ghc thinks we are crosscompiling (only affects armv6 and armv7)
Remove CONFIGURE_ENV, it is now handled in patch-aclocal.m4 (submitted upstream as https://gitlab.haskell.org/ghc/ghc/-/merge_requests/6599)

Diff Detail

Repository
R11 FreeBSD ports repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

mikael created this revision.

Looks good, thanks for upstreaming the patch!

Did you upload bootstraps somewhere?

This revision is now accepted and ready to land.Sep 27 2021, 11:42 AM

Looks good, thanks for upstreaming the patch!

Did you upload bootstraps somewhere?

Yes, they are on freefall:/home/mikael/ghc

markmi_dsl-only.net added inline comments.
lang/ghc/Makefile
203

So CONFIGURE_ENV_BOOTSTRAP, if non-empty (i.e, ${BOOT_LLVM_VERSION} != ${LLVM_VERSION}), overrode CONFIGURE_ENV 's LLC, OPT, CLANG, and CC for phase_0_build, phase_1_build, and final? In such a context, LLVM_VERSION validly went unused for all phases for all 4 of the related commands generated?

And, after the change, phase_0_build, phase_1_build, and final instead now ignore LLVM_VERSION and BOOT_LLVM_VERSION relative to llc, opt, clang, and cc commands, even when ${BOOT_LLVM_VERSION} != ${LLVM_VERSION} ? Is this expected to be appropriate for modern enough llvm* ?