Skip to content

Commit 5f254eb

Browse files
committed
[Bazel] Fixup for llvm#76163
This also reverts 7c9c807 and 476812a.
1 parent 40ec791 commit 5f254eb

File tree

5 files changed

+18
-12
lines changed

5 files changed

+18
-12
lines changed

utils/bazel/llvm-project-overlay/clang/include/clang/Config/config.h

+6
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,12 @@
7171
/* Define if we have sys/resource.h (rlimits) */
7272
/* CLANG_HAVE_RLIMITS defined conditionally below */
7373

74+
/* Define if we have dlfcn.h */
75+
#define CLANG_HAVE_DLFCN_H 1
76+
77+
/* Define if dladdr() is available on this platform. */
78+
#define CLANG_HAVE_DLADDR 1
79+
7480
/* Linker version detected at compile time. */
7581
/* #undef HOST_LINK_VERSION */
7682

utils/bazel/llvm-project-overlay/llvm/include/llvm/Config/config.h

+6
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,15 @@
6666
don't. */
6767
#define HAVE_DECL_STRERROR_S 0
6868

69+
/* Define to 1 if you have the <dlfcn.h> header file. */
70+
#define HAVE_DLFCN_H 1
71+
6972
/* Define if dlopen() is available on this platform. */
7073
#define HAVE_DLOPEN 1
7174

75+
/* Define if dladdr() is available on this platform. */
76+
#define HAVE_DLADDR 1
77+
7278
/* Define to 1 if we can register EH frames on this platform. */
7379
/* HAVE_REGISTER_FRAME defined in Bazel*/
7480

utils/bazel/llvm-project-overlay/llvm/include/llvm/Config/llvm-config.h

-6
Original file line numberDiff line numberDiff line change
@@ -124,10 +124,4 @@
124124
/* Define to 1 if you have the DIA SDK installed, and to 0 if you don't. */
125125
#define LLVM_ENABLE_DIA_SDK 0
126126

127-
/* Define to 1 if you have the <dlfcn.h> header file. */
128-
#define HAVE_DLFCN_H 1
129-
130-
/* Define if dladdr() is available on this platform. */
131-
#define HAVE_DLADDR 1
132-
133127
#endif

utils/bazel/llvm_configs/config.h.cmake

+6
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,15 @@
5050
don't. */
5151
#cmakedefine01 HAVE_DECL_STRERROR_S
5252

53+
/* Define to 1 if you have the <dlfcn.h> header file. */
54+
#cmakedefine HAVE_DLFCN_H ${HAVE_DLFCN_H}
55+
5356
/* Define if dlopen() is available on this platform. */
5457
#cmakedefine HAVE_DLOPEN ${HAVE_DLOPEN}
5558

59+
/* Define if dladdr() is available on this platform. */
60+
#cmakedefine HAVE_DLADDR ${HAVE_DLADDR}
61+
5662
/* Define to 1 if we can register EH frames on this platform. */
5763
#cmakedefine HAVE_REGISTER_FRAME ${HAVE_REGISTER_FRAME}
5864

utils/bazel/llvm_configs/llvm-config.h.cmake

-6
Original file line numberDiff line numberDiff line change
@@ -198,10 +198,4 @@
198198
/* Define if plugins enabled */
199199
#cmakedefine LLVM_ENABLE_PLUGINS
200200

201-
/* Define to 1 if you have the <dlfcn.h> header file. */
202-
#cmakedefine HAVE_DLFCN_H ${HAVE_DLFCN_H}
203-
204-
/* Define if dladdr() is available on this platform. */
205-
#cmakedefine HAVE_DLADDR ${HAVE_DLADDR}
206-
207201
#endif

0 commit comments

Comments
 (0)