I've just compiled Chromium on Arch Linux on a VPS. My local machine is on the same distro and they both are up to date.
I then downloaded out/build1/chrome onto my local machine and ran it. A few times it threw exceptions, which I dealt with downloading some files from the "out" directory onto my local machine. However, eventually I got into this one which I haven't been able to resolve thus far:
./my_chromium
[229623:229623:0509/140628.363314:FATAL:zygote_host_impl_linux.cc(201)] Check failed: . : No such file or directory (2)
zsh: trace trap (core dumped) ./my_chromium
If I use --no-sandbox flag it won't resolve the error but will make it a slightly more different:
./my_chromium --no-sandbox
zsh: trace trap (core dumped) ./my_chromium --no-sandbox
--no-zygote-sandbox -- the same as the 1st error
What's the matter? How to fix this?