aboutsummaryrefslogtreecommitdiffhomepage
path: root/gn/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'gn/BUILD.gn')
-rw-r--r--gn/BUILD.gn12
1 files changed, 0 insertions, 12 deletions
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" ]
}