[Bug target/104871] macosx-version-min wrong for macOS >= Big Sur (darwin20)
cvs-commit at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Wed Jun 15 19:17:51 GMT 2022
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104871
--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-10 branch has been updated by Iain D Sandoe
<iains@gcc.gnu.org>:
https://gcc.gnu.org/g:82b771fd6cab421d92cc074a79f98389ac8569c3
commit r10-10848-g82b771fd6cab421d92cc074a79f98389ac8569c3
Author: Simon Wright <simon@pushface.org>
Date: Sun Jun 12 17:01:22 2022 +0100
Darwin: Truncate kernel-provided version to OS major for Darwin >= 20.
In common with system tools, GCC uses a version obtained from the kernel as
the prevailing macOS target, when that is not overridden by command line or
environment versions (i.e. mmacosx-version-min=, MACOSX_DEPLOYMENT_TARGET).
Presently, GCC assumes that if the OS version is >= 20, the value used
should
include both major and minium version identifiers. However the system
tools
(for those versions) truncate the value to the major version - this leads
to
link errors when combining objects built with clang and GCC for example:
ld: warning: object file (null.o) was built for newer macOS version (12.2)
than being linked (12.0)
The change here truncates the values GCC uses to the major version.
gcc/ChangeLog:
PR target/104871
* config/darwin-driver.c (darwin_find_version_from_kernel): If the
OS
version is darwin20 (macOS 11) or greater, truncate the version to
the
major number.
(cherry picked from commit add1adaa17a294ea25918ffb4fdd40f115362632)
More information about the Gcc-bugs
mailing list