From caea17a139da8aaaef316a5786c93ec99dc8de75 Mon Sep 17 00:00:00 2001 From: "Gordana.Cmiljanovic" Date: Wed, 1 Jun 2016 00:53:36 -0700 Subject: [PATCH] MIPS64: Do not use openmax_dl for MIPS64 in GN Disables openmax_dl for MIPS64 as it is not supported. BUG=linker reports error about missing openmax_dl symbols NOTRY=True Review-Url: https://codereview.webrtc.org/1984383002 Cr-Commit-Position: refs/heads/master@{#12982} --- webrtc/build/webrtc.gni | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/webrtc/build/webrtc.gni b/webrtc/build/webrtc.gni index 788e60824c..1dc1bc488a 100644 --- a/webrtc/build/webrtc.gni +++ b/webrtc/build/webrtc.gni @@ -75,9 +75,8 @@ declare_args() { rtc_prefer_fixed_point = true } - # TODO(ljubomir): Unset rtc_use_openmax_dl for mips64el once mips64el gets - # supported in GN (since openmax_dl is not supported for mips64el). - if (!is_ios && (current_cpu != "arm" || arm_version >= 7)) { + if (!is_ios && (current_cpu != "arm" || arm_version >= 7) && + current_cpu != "mips64el") { rtc_use_openmax_dl = true } else { rtc_use_openmax_dl = false