From f32b27d2e4872966a360fb296acccae3e186a4a5 Mon Sep 17 00:00:00 2001 From: Mike Klein Date: Tue, 5 Dec 2017 08:50:20 -0500 Subject: remove mips support and bots The NDK has deprecated mips and mips64: https://developer.android.com/ndk/guides/abis.html Might as well clean this up now while I remember. Change-Id: Ie4b2334c75208082067cc16fe355d0349c7e0904 Reviewed-on: https://skia-review.googlesource.com/80560 Reviewed-by: Derek Sollenberger --- gn/BUILD.gn | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'gn/BUILD.gn') diff --git a/gn/BUILD.gn b/gn/BUILD.gn index 7791c1b999..363965fa98 100644 --- a/gn/BUILD.gn +++ b/gn/BUILD.gn @@ -137,11 +137,6 @@ config("default") { "-mfpu=neon", "-mthumb", ] - } else if (current_cpu == "mipsel") { - cflags += [ "-march=mips32r2" ] - } else if (current_cpu == "mips64el") { - asmflags += [ "-integrated-as" ] - cflags += [ "-integrated-as" ] } else if (current_cpu == "x86" && !is_win) { asmflags += [ "-m32" ] cflags += [ @@ -185,13 +180,6 @@ config("default") { "$ndk/toolchains/$ndk_gccdir-4.9/prebuilt/$ndk_host/lib/gcc/$ndk_target/4.9.x", ] - if (current_cpu == "mips64el") { - # The r15b NDK deployed on our bots fails to find /usr/lib64 in the - # MIPS64 sysroots, so we must point Clang at /usr/lib64 manually. - lib_dirs += [ "$ndk/platforms/$ndk_platform/usr/lib64" ] - ldflags += [ "-B$ndk/platforms/$ndk_platform/usr/lib64" ] - } - libs += [ "gnustl_static" ] } -- cgit v1.2.3