From 4f79d8057f7849578d4842c2f2732e3e9adbaa31 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Fri, 7 Jun 2019 00:02:18 +0000 Subject: [PATCH] Bug 1557171 - Wrap the sys/cachectl.h system header on mips linux. r=froydnj Differential Revision: https://phabricator.services.mozilla.com/D33883 --HG-- extra : moz-landing-system : lando --- config/system-headers.mozbuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/system-headers.mozbuild b/config/system-headers.mozbuild index e3e3e6d31ee6..bcf5c4925564 100644 --- a/config/system-headers.mozbuild +++ b/config/system-headers.mozbuild @@ -1346,3 +1346,8 @@ if CONFIG['MOZ_WAYLAND']: 'wayland-egl.h', 'wayland-util.h', ] + +if CONFIG['OS_TARGET'] == 'Linux' and CONFIG['CPU_ARCH'].startswith('mips'): + system_headers += [ + 'sys/cachectl.h', + ]