I'm trying to install Google v8 engine to my account. Tried to "make" it from guides posted at http://code.google.com/p/v8/wiki/BuildingWithGYP
I have no idea how to debug this... edit: In response to @waynek, I tried once again, with the following commands, got exactly the same result:
Troubleshooting section of http://docs.webfaction.com/software/home-install.html#installing-software-from-source refers only to problems during asked 24 Jan '13, 13:55 cek |
Hello, I am providing the solution to the problem here, in case anyone else runs into the same problem: The compiler is set to treat any compile warnings as errors:
and that can be turned off by specifying this option when make-ing (see http://code.google.com/p/v8/wiki/BuildingWithGYP, Optional parameters):
The actual error relates to strict-aliasing, which option can be turned off:
If compiling for a x64 platform, then:
Sincerely, Valentin I. WebFaction - Smarter web hosting answered 25 Jan '13, 09:08 valentini |
Try building it for x64 if you are on web300+ (CentOS 6), with:
(assuming you don't need the debug build also, otherwise just If that still doesn't work then try setting the build environment variables specified in our guide for installing software from source and see if that helps. If it's still not working after that then please log a support ticket and we will be able to look more closely at what's going on. answered 24 Jan '13, 17:59 waynek |