浏览代码

Merge pull request #3735 from sgreenstein/patch-1

Don't pass -lpthread and -lm on Windows
Feng Xiao 8 年之前
父节点
当前提交
c4083bb3d1
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      BUILD

+ 3 - 1
BUILD

@@ -44,9 +44,11 @@ config_setting(
     },
 )
 
-# Android builds do not need to link in a separate pthread library.
+# Android and Windows builds do not need to link in a separate pthread library.
 LINK_OPTS = select({
     ":android": [],
+    ":windows": [],
+    ":windows_msvc": [],
     "//conditions:default": ["-lpthread", "-lm"],
 })