mirror of https://github.com/nodejs/node.git
resolve mingw32 build problem
parent
c82ab45ee6
commit
3742aeea4c
5
wscript
5
wscript
|
@ -492,8 +492,11 @@ def configure(conf):
|
|||
|
||||
if sys.platform.startswith("win32"):
|
||||
conf.env.append_value('LIB', 'psapi')
|
||||
conf.env.append_value('LIB', 'ws2_32')
|
||||
conf.env.append_value('LIB', 'winmm')
|
||||
# This enforces ws2_32 to be linked after crypto, otherwise the linker
|
||||
# will run into undefined references from libcrypto.a
|
||||
if not Options.options.use_openssl:
|
||||
conf.env.append_value('LIB', 'ws2_32')
|
||||
|
||||
conf.env.append_value('CPPFLAGS', '-Wno-unused-parameter');
|
||||
conf.env.append_value('CPPFLAGS', '-D_FORTIFY_SOURCE=2');
|
||||
|
|
Loading…
Reference in New Issue