Skip to content

add loong64 support

Chromium has rejected loongarch support since 2022: https://issues.chromium.org/issues/40218663#comment7, and now only few loongarch patched are merged. I'm willing to maintain the patches at debian.

The loongarch patched are borrowed from https://github.com/AOSC-Dev/chromium-loongarch64/tree/master/chromium, and I have merged some patches which are modifying the same code blocks as ppc64le patches, so that we can have an easier time when rebasing them.

@tpearson-raptor I changed #if !defined(__mips__) && !defined(__aarch64__) || defined(__powerpc64__) to #if !defined(__mips__) && !defined(__aarch64__) && !defined(__loongarch__) at debian/patches/ppc64le/sandbox/0001-sandbox-linux-Update-syscall-helpers-lists-for-ppc64.patch because the later condition should work for powerpc64, this is a blacklist for architectures not supporting __NR_vfork.

Merge request reports

Loading