Hey, I'm a little new to V8, but I'm trying to use it in a pet project and I simply cannot get V8 to build as 32-bit on my system. In fact, in order to get it to build at all I had to change tools/utils.py to lower() the platform.architecture() (because it was returning 'AMD64' instead of 'amd64').
I'm running Windows 7 Home Premium 64-bit, with VC10. Attempting to compile as 32-bit returns this error: C:\Users\Corey\v8>scons arch=ia32 verbose=on scons: Reading SConscript files ... scons: done reading SConscript files. scons: Building targets ... cl /Foobj\release\dtoa-config.obj /c src\dtoa-config.c /WX /wd4018 / wd4244 /MT / O2 /GL /DWIN32 /DV8_TARGET_ARCH_IA32 /D_USE_32BIT_TIME_T / DENABLE_VMSTATE_TRACKI NG /DENABLE_LOGGING_AND_PROFILING /DENABLE_DEBUGGER_SUPPORT /Isrc /Zi Microsoft (R) C/C++ Optimizing Compiler Version 16.00.30319.01 for x64 Copyright (C) Microsoft Corporation. All rights reserved. dtoa-config.c C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE \crtdefs.h(463) : fatal error C1189: #error : You cannot use 32-bit time_t (_USE_32BIT_TIME_T) wi th _WIN64 scons: *** [obj\release\dtoa-config.obj] Error 2 scons: building terminated because of errors. -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
