Android build fixes
This commit is contained in:
@@ -2,6 +2,8 @@
|
|||||||
LOCAL_MODULE := rubberband
|
LOCAL_MODULE := rubberband
|
||||||
LOCAL_MODULE_FILENAME := librubberband
|
LOCAL_MODULE_FILENAME := librubberband
|
||||||
|
|
||||||
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)/rubberband $(LOCAL_PATH)/rubberband/src
|
||||||
|
|
||||||
RUBBERBAND_PATH := rubberband
|
RUBBERBAND_PATH := rubberband
|
||||||
RUBBERBAND_SRC_PATH := $(RUBBERBAND_PATH)/src
|
RUBBERBAND_SRC_PATH := $(RUBBERBAND_PATH)/src
|
||||||
|
|
||||||
|
|||||||
@@ -3174,7 +3174,11 @@ FFT::FFT(int size, int debugLevel) :
|
|||||||
if (!d) {
|
if (!d) {
|
||||||
std::cerr << "FFT::FFT(" << size << "): ERROR: implementation "
|
std::cerr << "FFT::FFT(" << size << "): ERROR: implementation "
|
||||||
<< impl << " is not compiled in" << std::endl;
|
<< impl << " is not compiled in" << std::endl;
|
||||||
|
#ifndef NO_EXCEPTIONS
|
||||||
throw InvalidImplementation;
|
throw InvalidImplementation;
|
||||||
|
#else
|
||||||
|
abort();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user