Commit bb66c021 authored by Frank Barchard's avatar Frank Barchard

Re-enable LLVM LTO on Neon targets.

LTO was disabled due to a GCC compiler bug that does not affect LLVM.
This fixes the build in the cfi_vptr==1 configuration, which requires LLVM LTO.

R=pcc@google.com
BUG=chromium:469376

Review URL: https://webrtc-codereview.appspot.com/57659004.
parent 94d42699
Name: libyuv
URL: http://code.google.com/p/libyuv/
Version: 1467
Version: 1469
License: BSD
License File: LICENSE
......
......@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 1467
#define LIBYUV_VERSION 1469
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
......@@ -50,7 +50,7 @@
],
'conditions': [
# Disable LTO in libyuv_neon target due to gcc 4.9 compiler bug.
['use_lto == 1', {
['clang == 0 and use_lto == 1', {
'cflags!': [
'-flto',
'-ffat-lto-objects',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment