diff --git a/README.chromium b/README.chromium index d026515bc..79987f2ce 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 1061 +Version: 1062 License: BSD License File: LICENSE diff --git a/include/libyuv/version.h b/include/libyuv/version.h index b4244b248..a610b8828 100644 --- a/include/libyuv/version.h +++ b/include/libyuv/version.h @@ -11,6 +11,6 @@ #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #define INCLUDE_LIBYUV_VERSION_H_ -#define LIBYUV_VERSION 1061 +#define LIBYUV_VERSION 1062 #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT diff --git a/libyuv.gyp b/libyuv.gyp index b51291c00..1a5675f50 100644 --- a/libyuv.gyp +++ b/libyuv.gyp @@ -47,11 +47,18 @@ '-mfpu=vfpv3-d16', ], 'conditions': [ - ['target_arch != "arm64"', { - 'cflags': [ - '-mfpu=neon', - ], - }], + ['target_arch != "arm64"', { + 'cflags': [ + '-mfpu=neon', + ], + }], + # Disable LTO in libyuv_neon target due to gcc 4.9 compiler bug. + ['use_lto == 1', { + 'cflags!': [ + '-flto', + '-ffat-lto-objects', + ], + }], ], 'include_dirs': [ 'include', @@ -72,15 +79,6 @@ 'source/scale_neon.cc', 'source/scale_neon64.cc', ], - 'conditions': [ - # Disable LTO in libyuv_neon target due to compiler bug - ['use_lto == 1', { - 'cflags!': [ - '-flto', - '-ffat-lto-objects', - ], - }], - ], }, ], }],