Don't pass -lpthread and -lm on Windows

These flags are ignored by cl.exe and have no effect, but add noise to the build logs.
pull/3735/head
Seth Greenstein 7 years ago committed by GitHub
parent 6032746882
commit 68ee916221
  1. 4
      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({ LINK_OPTS = select({
":android": [], ":android": [],
":windows": [],
":windows_msvc": [],
"//conditions:default": ["-lpthread", "-lm"], "//conditions:default": ["-lpthread", "-lm"],
}) })

Loading…
Cancel
Save