On Mon, Aug 11, 2014 at 2:37 AM, Louis Santillan <[email protected]> wrote: > Hmm...unfortunately that stackoverflow thread doesn't help. Making > /dev/shm 777 and updating fstab didn't make a difference. My fix was > making /var/run 777.
Do you know what file or directory in particular needed that permission? Something in /var/run/lock? > Is there anyway to avoid building gtest, gmock, and all the tests? > Can I still get around building icu by doing > > git clone --depth 1 git://github.com/v8/v8.git > svn export > https://src.chromium.org/chrome/trunk/deps/third_party/icu46/icu.gyp > make i18nsupport=off > > Are there similar flags for gtest and gmock? You can disable i18n that way but not, to the best of my knowledge, gtest and gmock. If you're building V8 as a dependency of your GYP-ified project, depend on the #v8 target to build just the library, i.e. { 'dependencies': [ 'path/to/v8/tools/gyp/v8.gyp:v8' ] }. Or, as a cheap hack, delete the test entries from build/all.gyp. You could perhaps turn that into a patch: add a flag to the Makefile that defines a GYP variable, then in build/all.gyp include the unit test targets conditionally. -- -- 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.
