Pass neon option to assembler but not the compiler. Step 1 of unifying the two libraries back into one.

BUG=371
TESTED=local ios builds ignore the option, but still work.
R=brucedawson@google.com, harryjin@google.com

Review URL: https://webrtc-codereview.appspot.com/31719004

git-svn-id: http://libyuv.googlecode.com/svn/trunk@1145 16f28f9a-4ce2-e073-06de-1de4eb20be90
This commit is contained in:
fbarchard@google.com 2014-10-28 23:15:16 +00:00
parent 2edea9454d
commit 44b8fd363e
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
Name: libyuv Name: libyuv
URL: http://code.google.com/p/libyuv/ URL: http://code.google.com/p/libyuv/
Version: 1143 Version: 1145
License: BSD License: BSD
License File: LICENSE License File: LICENSE

View File

@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_ #define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 1143 #define LIBYUV_VERSION 1145
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT

View File

@ -57,7 +57,7 @@
# arm64 does not need -mfpu=neon option as neon is not optional # arm64 does not need -mfpu=neon option as neon is not optional
['target_arch != "arm64"', { ['target_arch != "arm64"', {
'cflags': [ 'cflags': [
'-mfpu=neon', '-Wa,-mfpu=neon',
], ],
}], }],
], ],