[PATCH] D107375: [Bazel] Don't set HAVE_[DE]REGISTER_FRAME on Windows
Geoffrey Martin-Noble via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 18 11:20:40 PDT 2021
This revision was automatically updated to reflect the committed changes.
Closed by commit rG811dbecaf5ea: [Bazel] Don't set HAVE_[DE]REGISTER_FRAME on Windows (authored by GMNGeoffrey).
Changed prior to commit:
https://reviews.llvm.org/D107375?vs=363803&id=367271#toc
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D107375/new/
https://reviews.llvm.org/D107375
Files:
utils/bazel/llvm-project-overlay/llvm/config.bzl
utils/bazel/llvm-project-overlay/llvm/include/llvm/Config/config.h
Index: utils/bazel/llvm-project-overlay/llvm/include/llvm/Config/config.h
===================================================================
--- utils/bazel/llvm-project-overlay/llvm/include/llvm/Config/config.h
+++ utils/bazel/llvm-project-overlay/llvm/include/llvm/Config/config.h
@@ -75,10 +75,10 @@
/* #undef HAVE_DLADDR */
/* Define to 1 if we can register EH frames on this platform. */
-#define HAVE_REGISTER_FRAME 1
+/* HAVE_REGISTER_FRAME defined in Bazel*/
/* Define to 1 if we can deregister EH frames on this platform. */
-#define HAVE_DEREGISTER_FRAME 1
+/* HAVE_DEREGISTER_FRAME defined in Bazel*/
/* Define if __unw_add_dynamic_fde() is available on this platform. */
/* HAVE_UNW_ADD_DYNAMIC_FDE defined in Bazel */
Index: utils/bazel/llvm-project-overlay/llvm/config.bzl
===================================================================
--- utils/bazel/llvm-project-overlay/llvm/config.bzl
+++ utils/bazel/llvm-project-overlay/llvm/config.bzl
@@ -32,6 +32,8 @@
"HAVE_PTHREAD_GETNAME_NP=1",
"HAVE_PTHREAD_SETNAME_NP=1",
"HAVE_PTHREAD_GETSPECIFIC=1",
+ "HAVE_REGISTER_FRAME=1",
+ "HAVE_DEREGISTER_FRAME=1",
]
linux_defines = posix_defines + [
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107375.367271.patch
Type: text/x-patch
Size: 1196 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210818/1119e760/attachment.bin>
More information about the llvm-commits
mailing list