Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 01 May 2026 17:18:39 +0000
From:      Jessica Clarke <jrtc27@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 50bd6ee0cce9 - main - lib/clang: Fix bootstrapping on macOS after LLVM 21 merge
Message-ID:  <69f4e06f.27b2d.2af6d696@gitrepo.freebsd.org>

index | next in thread | raw e-mail

The branch main has been updated by jrtc27:

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

commit 50bd6ee0cce9d3959828b0267b06ea0403781f41
Author:     Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2026-05-01 16:55:28 +0000
Commit:     Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2026-05-01 16:55:28 +0000

    lib/clang: Fix bootstrapping on macOS after LLVM 21 merge
    
    Fixes:          770cf0a5f02d ("Fixups after llvm-project main llvmorg-21-init-19288-gface93e724f4 merge")
    MFC after:      1 month
---
 lib/clang/include/llvm/Config/config.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/clang/include/llvm/Config/config.h b/lib/clang/include/llvm/Config/config.h
index 0aea32fa9dce..c11e78f74caf 100644
--- a/lib/clang/include/llvm/Config/config.h
+++ b/lib/clang/include/llvm/Config/config.h
@@ -114,12 +114,12 @@
 #define HAVE_PTHREAD_SETNAME_NP 1
 
 /* Define to 1 if you have the `pthread_get_name_np' function. */
-#if !defined(__linux__)
+#if defined(__FreeBSD__)
 #define HAVE_PTHREAD_GET_NAME_NP 1
 #endif
 
 /* Define to 1 if you have the `pthread_set_name_np' function. */
-#if !defined(__linux__)
+#if defined(__FreeBSD__)
 #define HAVE_PTHREAD_SET_NAME_NP 1
 #endif
 


home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?69f4e06f.27b2d.2af6d696>