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.
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? Thanks Ben! -L On Sun, Aug 10, 2014 at 2:57 AM, Ben Noordhuis <[email protected]> wrote: > On Sun, Aug 10, 2014 at 1:00 AM, Louis Santillan <[email protected]> wrote: [SNIP] >> File "/usr/lib/python2.7/multiprocessing/synchronize.py", line 147, >> in __init__ >> SemLock.__init__(self, SEMAPHORE, 1, 1) >> File "/usr/lib/python2.7/multiprocessing/synchronize.py", line 75, in >> __init__ >> sl = self._semlock = _multiprocessing.SemLock(kind, value, maxvalue) >> OSError: [Errno 13] Permission denied >> make[1]: *** [out/Makefile.ia32.release] Error 1 >> make[1]: Leaving directory `/home/user/v8' >> make: *** [local-v8] Error 2 > > See [0], that error means /dev/shm has the wrong permissions. > > [0] > http://stackoverflow.com/questions/2009278/python-multiprocessing-permission-denied -- -- 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.
