fix linker error bug with fftw3 and -DFFT_SINGLE
This commit is contained in:
@ -70,6 +70,10 @@ int main(int argc, char **argv)
|
|||||||
#ifdef FFT_FFTW3
|
#ifdef FFT_FFTW3
|
||||||
// tell fftw3 to delete its global memory pool
|
// tell fftw3 to delete its global memory pool
|
||||||
// and thus avoid bogus valgrind memory leak reports
|
// and thus avoid bogus valgrind memory leak reports
|
||||||
|
#ifdef FFT_SINGLE
|
||||||
|
fftwf_cleanup();
|
||||||
|
#else
|
||||||
fftw_cleanup();
|
fftw_cleanup();
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user