pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk/compiler



Module Name:    pkgsrc
Committed By:   gdt
Date:           Mon Jun 22 18:22:58 UTC 2026

Modified Files:
        pkgsrc/mk/compiler: gcc-style-args.mk

Log Message:
mk/compiler/gcc-style-args.mk: Prune GNU C dialect list

Similarly to regular-C, prune gnu90, gnu9x, gnu1x, and change gnu2x
to gnu23.  None of these terms are in use in pkgsrc.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/mk/compiler/gcc-style-args.mk

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/mk/compiler/gcc-style-args.mk
diff -u pkgsrc/mk/compiler/gcc-style-args.mk:1.6 pkgsrc/mk/compiler/gcc-style-args.mk:1.7
--- pkgsrc/mk/compiler/gcc-style-args.mk:1.6    Mon Jun 22 18:20:10 2026
+++ pkgsrc/mk/compiler/gcc-style-args.mk        Mon Jun 22 18:22:58 2026
@@ -1,4 +1,4 @@
-# $NetBSD: gcc-style-args.mk,v 1.6 2026/06/22 18:20:10 gdt Exp $
+# $NetBSD: gcc-style-args.mk,v 1.7 2026/06/22 18:22:58 gdt Exp $
 
 #
 # Some compilers (e.g. clang) share command line argument formats with GCC.
@@ -23,8 +23,7 @@ CWRAPPERS_PREPEND.cc+=        -fcommon
 
 _GCC_C_DIALECTS=       c89 c99 c11 c17 c23
 
-_GCC_C_DIALECTS+=      gnu89 gnu90 gnu99 gnu9x gnu11 gnu1x gnu17 gnu18 \
-                       gnu2x
+_GCC_C_DIALECTS+=      gnu89 gnu99 gnu11 gnu17 gnu23
 
 _GCC_CXX_DIALECTS=     c++98 c++03 c++0x c++11 c++1y c++14 \
                        c++1z c++17 c++2a c++20 c++23



Home | Main Index | Thread Index | Old Index