Bug 1391127 Add -lm for brotli when compiling with gcc for Windows r=glandium

MozReview-Commit-ID: HBficJlFKSH

--HG--
extra : rebase_source : 77f22486396f4c611132764d19ff93708f161016
This commit is contained in:
Tom Ritter 2017-08-18 10:30:55 -05:00
parent bbb6f1eeba
commit 9ac1fd1250
2 changed files with 1 additions and 1 deletions

0
modules/brotli/enc/fast_log.h Normal file → Executable file
View File

View File

@ -54,7 +54,7 @@ HOST_SOURCES += [
'tools/bro.c',
]
if CONFIG['OS_TARGET'] != 'WINNT':
if CONFIG['HOST_CC_TYPE'] not in ('msvc', 'clang-cl'):
HOST_OS_LIBS += [
'm' # for log2() function used by Brotli encoder
]