Commit cbe9923c22

Andrew Kelley <andrew@ziglang.org>
2023-10-13 06:19:43
glibc patch: don't hardcode __GLIBC_MINOR__
Instead Zig passes it based on the target.
1 parent c09f5f3
Changed files (1)
lib
libc
include
generic-glibc
lib/libc/include/generic-glibc/features.h
@@ -492,7 +492,7 @@
 /* Major and minor version number of the GNU C library package.  Use
    these macros to test for features in specific releases.  */
 #define	__GLIBC__	2
-#define	__GLIBC_MINOR__	39
+/* Zig patch: we pass `-D__GLIBC_MINOR__=XX` depending on the target. */
 
 #define __GLIBC_PREREQ(maj, min) \
 	((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min))
@@ -527,4 +527,4 @@
 #include <gnu/stubs.h>
 
 
-#endif	/* features.h  */
\ No newline at end of file
+#endif	/* features.h  */