Commit f1f61121 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Fixed SCons build of Windows DLL.

The configuration for building the Windows shared library was lost when adding x64 Windows build to the SCons build. This should now be back.
Review URL: http://codereview.chromium.org/197036

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@2828 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent fa0034cc
...@@ -258,6 +258,10 @@ V8_EXTRA_FLAGS = { ...@@ -258,6 +258,10 @@ V8_EXTRA_FLAGS = {
'all': { 'all': {
'WARNINGFLAGS': ['/WX', '/wd4355', '/wd4800'] 'WARNINGFLAGS': ['/WX', '/wd4355', '/wd4800']
}, },
'library:shared': {
'CPPDEFINES': ['BUILDING_V8_SHARED'],
'LIBS': ['winmm', 'ws2_32']
},
'arch:ia32': { 'arch:ia32': {
'WARNINGFLAGS': ['/W3'] 'WARNINGFLAGS': ['/W3']
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment