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:58:48 UTC 2026

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

Log Message:
gcc-style-args.mk: Drop c++1z (and gnu)

This is an obsolete alias for c++17.   It is not used in pkgsrc, and
was not implemented in the compiler selection framework.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 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.9 pkgsrc/mk/compiler/gcc-style-args.mk:1.10
--- pkgsrc/mk/compiler/gcc-style-args.mk:1.9    Mon Jun 22 18:48:17 2026
+++ pkgsrc/mk/compiler/gcc-style-args.mk        Mon Jun 22 18:58:48 2026
@@ -1,4 +1,4 @@
-# $NetBSD: gcc-style-args.mk,v 1.9 2026/06/22 18:48:17 gdt Exp $
+# $NetBSD: gcc-style-args.mk,v 1.10 2026/06/22 18:58:48 gdt Exp $
 
 #
 # Some compilers (e.g. clang) share command line argument formats with GCC.
@@ -26,10 +26,10 @@ _GCC_C_DIALECTS=    c89 c99 c11 c17 c23
 _GCC_C_DIALECTS+=      gnu89 gnu99 gnu11 gnu17 gnu23
 
 _GCC_CXX_DIALECTS=     c++98 c++03 c++0x c++11 c++14 \
-                       c++1z c++17 c++2a c++20 c++23
+                       c++17 c++2a c++20 c++23
 
 _GCC_CXX_DIALECTS+=    gnu++98 gnu++03 gnu++0x gnu++11 gnu++14 \
-                       gnu++1z gnu++17 gnu++2a gnu++20 gnu++23
+                       gnu++17 gnu++2a gnu++20 gnu++23
 
 .if !empty(FORCE_C_STD)
 .  for std in ${_GCC_C_DIALECTS}



Home | Main Index | Thread Index | Old Index