aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/swig.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/swig.BUILD')
-rw-r--r--third_party/swig.BUILD10
1 files changed, 8 insertions, 2 deletions
diff --git a/third_party/swig.BUILD b/third_party/swig.BUILD
index bea5d6b531..d698fa934b 100644
--- a/third_party/swig.BUILD
+++ b/third_party/swig.BUILD
@@ -70,7 +70,8 @@ cc_binary(
"Source/Swig/wrapfunc.c",
],
copts = ["$(STACK_FRAME_UNLIMITED)"] + select({
- ":x64_windows_msvc": [],
+ ":windows": [],
+ ":windows_msvc": [],
"//conditions:default": [
"-Wno-parentheses",
"-Wno-unused-variable",
@@ -331,6 +332,11 @@ genrule(
)
config_setting(
- name = "x64_windows_msvc",
+ name = "windows_msvc",
values = {"cpu": "x64_windows_msvc"},
)
+
+config_setting(
+ name = "windows",
+ values = {"cpu": "x64_windows"},
+)