From 9f2846853ef5b7c9de4ec58618dc77f2065520fb Mon Sep 17 00:00:00 2001 From: McKayla Washburn Date: Mon, 27 Jun 2022 12:27:20 -0600 Subject: [PATCH] Don't use libunwind on Windows --- BUILD.gn | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index 93f26394..06ef1e21 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -17,8 +17,10 @@ static_library("rusty_v8") { configs += [ ":rusty_v8_config", "//buildtools/third_party/libc++:config", - "//buildtools/third_party/libunwind:libunwind_config", ] + if (!is_win) { + configs += [ "//buildtools/third_party/libunwind:libunwind_config" ] + } } config("rusty_v8_config") {