diff --git a/README.chromium b/README.chromium index 2f314d7dd..98fed33a0 100644 --- a/README.chromium +++ b/README.chromium @@ -1,6 +1,6 @@ Name: libyuv URL: http://code.google.com/p/libyuv/ -Version: 101 +Version: 102 License: BSD License File: LICENSE diff --git a/source/rotate.cc b/source/rotate.cc index 93907607d..cd96e410b 100644 --- a/source/rotate.cc +++ b/source/rotate.cc @@ -37,7 +37,7 @@ uvec8 kShuffleReverseUV = { #else #define DECLARE_FUNCTION(name) \ ".text \n" \ - ".global _" #name " \n" \ + ".global " #name " \n" \ #name ": \n" #endif diff --git a/source/row_posix.cc b/source/row_posix.cc index e531ab1d5..74a164554 100644 --- a/source/row_posix.cc +++ b/source/row_posix.cc @@ -638,6 +638,9 @@ void BGRAToUVRow_SSSE3(const uint8* src_argb, int src_stride_argb, #ifdef HAS_REVERSE_ROW_SSSE3 +// TODO(fbarchard): define CONST macro that is static const for linux, but +// does nothing for gcc on OSX (which has an internal compiler fault) + // Shuffle table for reversing the bytes. uvec8 kShuffleReverse = { 15u, 14u, 13u, 12u, 11u, 10u, 9u, 8u, 7u, 6u, 5u, 4u, 3u, 2u, 1u, 0u diff --git a/source/scale.cc b/source/scale.cc index f56acf412..15daa7f65 100644 --- a/source/scale.cc +++ b/source/scale.cc @@ -528,7 +528,7 @@ static void ScaleRowDown38_2_Int_NEON(const uint8* src_ptr, int src_stride, #else #define DECLARE_FUNCTION(name) \ ".text \n" \ - ".global _" #name " \n" \ + ".global " #name " \n" \ #name ": \n" #endif