Reviewers: Mads Ager, Description: Add libraries winmm and ws2_32 when building shared library on Windows.
BUG=261 Please review this at http://codereview.chromium.org/40217 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M SConstruct Index: SConstruct =================================================================== --- SConstruct (revision 1431) +++ SConstruct (working copy) @@ -132,7 +132,8 @@ 'WARNINGFLAGS': ['/W3', '/WX', '/wd4355', '/wd4800'] }, 'library:shared': { - 'CPPDEFINES': ['BUILDING_V8_SHARED'] + 'CPPDEFINES': ['BUILDING_V8_SHARED'], + 'LIBS': ['winmm', 'ws2_32'] }, 'arch:arm': { 'CPPDEFINES': ['ARM'], --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
