Reviewers: Vitaly Repeshko, Description: Fix Win64 build after isolates merge. Need to add -DWIN32 since the include structure changed.w
Please review this at http://codereview.chromium.org/6712045/ SVN Base: http://v8.googlecode.com/svn/branches/experimental/isolates/ Affected files: M SConstruct Index: SConstruct =================================================================== --- SConstruct (revision 7267) +++ SConstruct (working copy) @@ -582,7 +582,7 @@ 'LINKFLAGS': ['/MACHINE:X86'] }, 'arch:x64': { - 'CPPDEFINES': ['V8_TARGET_ARCH_X64'], + 'CPPDEFINES': ['V8_TARGET_ARCH_X64', 'WIN32'], 'LINKFLAGS': ['/MACHINE:X64', '/STACK:2091752'] }, 'mode:debug': { -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
