Merge pull request #423 from PiotrSikora/libm

Bazel: link ":brotli_enc" with -lm.
This commit is contained in:
Eugene Kliuchnikov 2016-08-29 13:09:09 +02:00 committed by GitHub
commit 5ce9bf11b3

1
BUILD
View File

@ -86,6 +86,7 @@ cc_library(
srcs = [":enc_sources"],
hdrs = [":enc_headers"],
copts = STRICT_C_OPTIONS,
linkopts = ["-lm"],
deps = [":brotli_common"],
)