Commit c4083bb3 authored by Feng Xiao's avatar Feng Xiao Committed by GitHub

Merge pull request #3735 from sgreenstein/patch-1

Don't pass -lpthread and -lm on Windows
parents 60327468 68ee9162
......@@ -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"],
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment