mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-13 15:09:58 +08:00
add NDEBUG for release chromium buids
BUG=libyuv:533 TBR=harryjin@google.com Review URL: https://codereview.chromium.org/1531143002 .
This commit is contained in:
parent
40fd801a28
commit
029f926a14
@ -1,6 +1,6 @@
|
||||
Name: libyuv
|
||||
URL: http://code.google.com/p/libyuv/
|
||||
Version: 1556
|
||||
Version: 1557
|
||||
License: BSD
|
||||
License File: LICENSE
|
||||
|
||||
|
||||
@ -105,10 +105,10 @@ extern "C" {
|
||||
#define HAS_COPYROW_SSE2
|
||||
#define HAS_H422TOARGBROW_SSSE3
|
||||
#define HAS_I400TOARGBROW_SSE2
|
||||
// The following functions fail on gcc/clang 32 bit.
|
||||
// The following functions fail on gcc/clang 32 bit with fpic and framepointer.
|
||||
// caveat: clangcl uses row_win.cc which works.
|
||||
#if !(defined(DEBUG) || defined(_DEBUG)) || !defined(__i386__) || \
|
||||
defined(_MSC_VER)
|
||||
#if defined(NDEBUG) || !(defined(_DEBUG) && defined(__i386__)) || \
|
||||
!defined(__i386__) || defined(_MSC_VER)
|
||||
// TODO(fbarchard): fix build error on x86 debug
|
||||
// https://code.google.com/p/libyuv/issues/detail?id=524
|
||||
#define HAS_I411TOARGBROW_SSSE3
|
||||
|
||||
@ -11,6 +11,6 @@
|
||||
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
|
||||
#define INCLUDE_LIBYUV_VERSION_H_
|
||||
|
||||
#define LIBYUV_VERSION 1555
|
||||
#define LIBYUV_VERSION 1557
|
||||
|
||||
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user