Hi Krzysztof,

I used an additional python script to build V8 variants (Debug/Release 
x64/ia32). Unfortunately, I can't publish it here.

The main idea is to call GYP to generate Visual Studio projects for 
ia32/x64 target architecture using -Dtarget_arch, as you already doing. 
Platform toolset could be specified as generator option for GYP:

    python v8/build/gyp_v8.py -Dcomponent=shared_library -Dtarget_arch=x64 
--format=msvs 
--G msvs_version=2013 

Then use msbuild to the library from v8/tools/gyp/v8.vcxproj project file. 
Debug/Release configuration could be set as msbuild option:

   call "%VS120COMNTOOLS%"\..\..\VC\vcvars.bat x86_amd64
   msbuild /m /p:Configuration:Release /p:Platform=x64 /t:Build 
v8/tools/gyp/v8.vcxproj

After successful build save libraries from v8/build/{Configuration} into 
some directory:

    copy v8/build/Release/lib/* v8/lib/x64/Release
    copy v8/build/Release/*.dll v8/lib/x64/Release
    copy v8/build/Release/*.pdb v8/lib/x64/Release
   
Cheers Pavel

-- 
-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to