diff options
author | Rhody Lugo <rhodylugo@me.com> | 2015-01-04 13:41:31 -0430 |
---|---|---|
committer | Rhody Lugo <rhodylugo@me.com> | 2015-01-04 13:41:31 -0430 |
commit | 20142fed28ec478fec6901181ff20479075af579 (patch) | |
tree | b0ef44bca06d62d58a9cc98db19c515a398b2fb1 /drivers | |
parent | bd184adfebe0cc0aa2cdf2bedfb7b313b51fac02 (diff) |
Remove compiler flag LIBYUV_NEON from iOS release build
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/theoraplayer/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/theoraplayer/SCsub b/drivers/theoraplayer/SCsub index 2cf34abde5..09fb13d8e9 100644 --- a/drivers/theoraplayer/SCsub +++ b/drivers/theoraplayer/SCsub @@ -67,7 +67,7 @@ if env["platform"] == "iphone": sources.append("src/AVFoundation/TheoraVideoClip_AVFoundation.mm") env.Append(LINKFLAGS=['-framework', 'CoreVideo', '-framework', 'CoreMedia', '-framework', 'AVFoundation']) if env["target"] == "release": - env_theora.Append(CPPFLAGS=["-D_IOS", "-D__ARM_NEON__", "-DLIBYUV_NEON", "-fstrict-aliasing", "-fmessage-length=210", "-fdiagnostics-show-note-include-stack", "-fmacro-backtrace-limit=0", "-fcolor-diagnostics", "-Wno-trigraphs", "-fpascal-strings", "-fvisibility=hidden", "-fvisibility-inlines-hidden"]) + env_theora.Append(CPPFLAGS=["-D_IOS", "-D__ARM_NEON__", "-fstrict-aliasing", "-fmessage-length=210", "-fdiagnostics-show-note-include-stack", "-fmacro-backtrace-limit=0", "-fcolor-diagnostics", "-Wno-trigraphs", "-fpascal-strings", "-fvisibility=hidden", "-fvisibility-inlines-hidden"]) env_theora.Append(CPPFLAGS=["-D_LIB", "-D__THEORA"]) # removed -D_YUV_C env_theora.Append(CPPFLAGS=["-D_YUV_LIBYUV"]) |