mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
move lto condition into existing condition statement.
BUG=354 TESTED=gclient runhooks R=fdegans@chromium.org Review URL: https://webrtc-codereview.appspot.com/17209004 git-svn-id: http://libyuv.googlecode.com/svn/trunk@1062 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
parent
c2a78ebf45
commit
6fb3ed37f5
@ -1,6 +1,6 @@
|
||||
Name: libyuv
|
||||
URL: http://code.google.com/p/libyuv/
|
||||
Version: 1061
|
||||
Version: 1062
|
||||
License: BSD
|
||||
License File: LICENSE
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
26
libyuv.gyp
26
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',
|
||||
],
|
||||
}],
|
||||
],
|
||||
},
|
||||
],
|
||||
}],
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user