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.
This commit is contained in:
parent
6032746882
commit
68ee916221
4
BUILD
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({
|
||||
":android": [],
|
||||
":windows": [],
|
||||
":windows_msvc": [],
|
||||
"//conditions:default": ["-lpthread", "-lm"],
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user