git: ed27ae8df4b1 - main - Bump __FreeBSD_version after clang/llvm PIE change
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 11 Feb 2024 22:47:03 UTC
The branch main has been updated by dim:
URL: https://cgit.FreeBSD.org/src/commit/?id=ed27ae8df4b10f67289a32458d89d143e758f6d4
commit ed27ae8df4b10f67289a32458d89d143e758f6d4
Author: Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2024-02-11 22:45:51 +0000
Commit: Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2024-02-11 22:45:51 +0000
Bump __FreeBSD_version after clang/llvm PIE change
Otherwise, incremental builds might fail with various interesting
errors. This is a bit of a big hammer, but I don't know of any other way
to force rebuilds of all these libraries.
Reported by: bapt
Fixes: 470f9f13de10
MFC after: 1 week
---
sys/sys/param.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/sys/param.h b/sys/sys/param.h
index 8740d37facc3..ff932e6c60dd 100644
--- a/sys/sys/param.h
+++ b/sys/sys/param.h
@@ -73,7 +73,7 @@
* cannot include sys/param.h and should only be updated here.
*/
#undef __FreeBSD_version
-#define __FreeBSD_version 1500013
+#define __FreeBSD_version 1500014
/*
* __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,