Remove rtc_use_lto GN arg.

This CL is a no-op since rtc_use_lto is always false and in general
such change should probably be implemented in
//build/config/compiler/BUILD.gn.

Bug: chromium:408997
Change-Id: Id37d3181e66e699f8cd535aee1af7609352a7259
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/149833
Reviewed-by: Niels Moller <nisse@webrtc.org>
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#28919}
This commit is contained in:
Mirko Bonadei
2019-08-20 15:29:20 +02:00
committed by Commit Bot
parent 5ceb4ac5ed
commit 2dac4e4e35
8 changed files with 0 additions and 77 deletions

View File

@ -285,15 +285,6 @@ if (rtc_build_with_neon) {
cflags = [ "-mfpu=neon" ]
}
# Disable LTO on NEON targets due to compiler bug.
# TODO(fdegans): Enable this. See crbug.com/408997.
if (rtc_use_lto) {
cflags -= [
"-flto",
"-ffat-lto-objects",
]
}
deps = [
":common_audio_neon_c",
":fir_filter",
@ -318,15 +309,6 @@ if (rtc_build_with_neon) {
cflags = [ "-mfpu=neon" ]
}
# Disable LTO on NEON targets due to compiler bug.
# TODO(fdegans): Enable this. See crbug.com/408997.
if (rtc_use_lto) {
cflags -= [
"-flto",
"-ffat-lto-objects",
]
}
deps = [
":common_audio_c",
"../rtc_base:checks",