File tree 5 files changed +18
-12
lines changed
clang/include/clang/Config
5 files changed +18
-12
lines changed Original file line number Diff line number Diff line change 71
71
/* Define if we have sys/resource.h (rlimits) */
72
72
/* CLANG_HAVE_RLIMITS defined conditionally below */
73
73
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
+
74
80
/* Linker version detected at compile time. */
75
81
/* #undef HOST_LINK_VERSION */
76
82
Original file line number Diff line number Diff line change 66
66
don't. */
67
67
#define HAVE_DECL_STRERROR_S 0
68
68
69
+ /* Define to 1 if you have the <dlfcn.h> header file. */
70
+ #define HAVE_DLFCN_H 1
71
+
69
72
/* Define if dlopen() is available on this platform. */
70
73
#define HAVE_DLOPEN 1
71
74
75
+ /* Define if dladdr() is available on this platform. */
76
+ #define HAVE_DLADDR 1
77
+
72
78
/* Define to 1 if we can register EH frames on this platform. */
73
79
/* HAVE_REGISTER_FRAME defined in Bazel*/
74
80
Original file line number Diff line number Diff line change 124
124
/* Define to 1 if you have the DIA SDK installed, and to 0 if you don't. */
125
125
#define LLVM_ENABLE_DIA_SDK 0
126
126
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
-
133
127
#endif
Original file line number Diff line number Diff line change 50
50
don't. */
51
51
#cmakedefine01 HAVE_DECL_STRERROR_S
52
52
53
+ /* Define to 1 if you have the <dlfcn.h> header file. */
54
+ #cmakedefine HAVE_DLFCN_H ${HAVE_DLFCN_H}
55
+
53
56
/* Define if dlopen() is available on this platform. */
54
57
#cmakedefine HAVE_DLOPEN ${HAVE_DLOPEN}
55
58
59
+ /* Define if dladdr() is available on this platform. */
60
+ #cmakedefine HAVE_DLADDR ${HAVE_DLADDR}
61
+
56
62
/* Define to 1 if we can register EH frames on this platform. */
57
63
#cmakedefine HAVE_REGISTER_FRAME ${HAVE_REGISTER_FRAME}
58
64
Original file line number Diff line number Diff line change 198
198
/* Define if plugins enabled */
199
199
#cmakedefine LLVM_ENABLE_PLUGINS
200
200
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
-
207
201
#endif
You can’t perform that action at this time.
0 commit comments