Displaying 1 result from an estimated 1 matches for "opus_will_be_slow".
2018 May 08
2
"opus will be very slow" message
...pus will be very slow. [-W#pragma-messages]
# pragma message "You appear to be compiling without optimization, if so
opus will be very slow."
Looking at the lines in question I see:
#if defined(__GNUC__) && (__GNUC__ >= 2) && !defined(__OPTIMIZE__) &&
!defined(OPUS_WILL_BE_SLOW)
# pragma message "You appear to be compiling without optimization, if so
opus will be very slow."
#endif
A quick find/grep, however, shows no place where __OPTIMIZE__ or
OPUS_WILL_BE_SLOW are actually defined--so presumably I would have to
pass them in. And the only place __OPTIMIZE__...