aarch64 compilation failure in mojo shell
Reported by
three...@gmail.com,
May 9 2016
|
|||
Issue description
When attempting to compile Chromium 51+ from source, compilation fails because of 2 syscalls that are not available on aarch64.
../../services/shell/runner/host/linux_sandbox.cc: In function ‘intptr_t shell::{anonymous}::SandboxSIGSYSHandler(const sandbox::arch_seccomp_data&, void*)’:
../../services/shell/runner/host/linux_sandbox.cc:41:10: error: ‘__NR_access’ was not declared in this scope
case __NR_access:
^
../../services/shell/runner/host/linux_sandbox.cc:44:10: error: ‘__NR_open’ was not declared in this scope
case __NR_open:
^
I have a patch that I am using that works, but I'm not entirely sure it's the best way to do it.
In Chromium 51, the path to the file is mojo/shell/runner/host/linux_sandbox.cc in 52 (and up, I assume), it's mojo/services/shell/runner/host/linux_sandbox.cc
,
Jul 11 2016
,
Mar 23 2017
|
|||
►
Sign in to add a comment |
|||
Comment 1 by ashej...@chromium.org
, May 10 2016