Only print backtrace on debug builds, since on release builds there is
only some useless output from a python library and fftw.
This commit is contained in:
Antony Riakiotakis 2015-04-13 12:21:21 +02:00
parent 97ae0f22cd
commit 8a97d46296

@ -99,8 +99,7 @@ void BLI_system_backtrace(FILE *fp)
/* Windows */
#elif defined(_MSC_VER)
(void)fp;
#if defined WIN32
#ifndef NDEBUG
#define MAXSYMBOL 256
#define SIZE 100
unsigned short i;
@ -127,11 +126,12 @@ void BLI_system_backtrace(FILE *fp)
MEM_freeN(symbolinfo);
#undef MAXSYMBOL
#undef SIZE
#endif
#else
fprintf(fp, "Not supported on release builds\n");
#endif /* NDEBUG */
#else /* _MSC_VER */
/* ------------------ */
/* non msvc/osx/linux */
#else
(void)fp;
#endif