Bug 284039 - [exp-run] Updating default C standard to C17 in base
Summary: [exp-run] Updating default C standard to C17 in base
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: --- Affects Only Me
Assignee: Port Management Team
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2025-01-13 17:58 UTC by John Baldwin
Modified: 2025-02-27 16:51 UTC (History)
1 user (show)

See Also:
linimon: exp-run?


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description John Baldwin freebsd_committer freebsd_triage 2025-01-13 17:58:21 UTC
I have a branch with two src commits that change the default C standard for both userspace and the kernel from C99 to C17.  Please do an exp-run with these changes.  The two commits can be found on the 'gnu17' branch here:

https://github.com/freebsd/freebsd-src/compare/main...bsdjhb:freebsd:gnu17
Comment 2 commit-hook freebsd_committer freebsd_triage 2025-02-11 14:18:45 UTC
A commit in branch main references this bug:

URL: https://cgit.FreeBSD.org/src/commit/?id=ca4eddea97c54a567c25e0fcf4641a6885f33bdf

commit ca4eddea97c54a567c25e0fcf4641a6885f33bdf
Author:     Minsoo Choo <minsoochoo0122@proton.me>
AuthorDate: 2025-01-09 16:13:06 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2025-02-11 14:16:25 +0000

    src: Use gnu17 as the default C standard for userland instead of gnu99

    Tracking newer versions of C (and C++) permits assuming newer language
    features in the base system.  Some C11 extensions are already used in
    the base system but implemented on top of GNU C extensions such as
    _Alignas and _Static_assert.  In some cases the fallback versions in
    cdefs.h are more limited than the native C11 extensions.

    Even though C11 is the next major version of C, C17 is chosen instead
    since C17 does not add new features to C but merely fixes defects in
    C11.  It is also well supported by a wide range of clang (7.0.0+) and
    GCC (8.1+) versions.

    Along with changing the default, this change also removes explicit
    requests for c11 via the CSTD variable in various Makefiles.

    Libraries and binaries for ZFS continue to use c99.

    PR:             284039 (exp-run)
    Reviewed by:    imp, arichardson, emaste
    Differential Revision:  https://reviews.freebsd.org/D43237

 libexec/tftpd/tests/Makefile | 1 -
 sbin/newfs_msdos/Makefile    | 1 -
 share/mk/bsd.sys.mk          | 3 +--
 usr.bin/sort/Makefile        | 1 -
 usr.bin/zstd/Makefile        | 1 -
 usr.sbin/makefs/Makefile     | 1 -
 6 files changed, 1 insertion(+), 7 deletions(-)
Comment 3 John Baldwin freebsd_committer freebsd_triage 2025-02-12 22:38:11 UTC
A fix for devel/linux_libusb is available for review at https://reviews.freebsd.org/D48973
Comment 4 commit-hook freebsd_committer freebsd_triage 2025-02-27 15:50:09 UTC
A commit in branch main references this bug:

URL: https://cgit.FreeBSD.org/ports/commit/?id=e7f4ef88c35d19ff3d924c11117c7238a54934cd

commit e7f4ef88c35d19ff3d924c11117c7238a54934cd
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2025-02-27 15:49:16 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2025-02-27 15:49:16 +0000

    devel/linux_libusb: Use CSTD of gnu11 for the c7 flavor

    This fixes the build on 15.0 where the default CSTD of gnu17 is not
    supported by the old version of gcc used for CentOS 7.

    PR:             284039
    Reviewed by:    arrowd
    Differential Revision:  https://reviews.freebsd.org/D48973

 devel/linux_libusb/Makefile | 1 +
 1 file changed, 1 insertion(+)