Changes in / [63fc1df:b1ed6ce]
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/aubio_priv.h
r63fc1df rb1ed6ce 237 237 #define AUBIO_INF(...) aubio_log(AUBIO_LOG_INF, "AUBIO INFO: " __VA_ARGS__) 238 238 #define AUBIO_MSG(...) aubio_log(AUBIO_LOG_MSG, __VA_ARGS__) 239 #define _AUBIO_DBG(...)aubio_log(AUBIO_LOG_DBG, __VA_ARGS__)239 #define AUBIO_DBG(...) aubio_log(AUBIO_LOG_DBG, __VA_ARGS__) 240 240 #define AUBIO_WRN(...) aubio_log(AUBIO_LOG_WRN, "AUBIO WARNING: " __VA_ARGS__) 241 241 #else … … 243 243 #define AUBIO_INF(format, args...) aubio_log(AUBIO_LOG_INF, "AUBIO INFO: " format , ##args) 244 244 #define AUBIO_MSG(format, args...) aubio_log(AUBIO_LOG_MSG, format , ##args) 245 #define _AUBIO_DBG(format, args...)aubio_log(AUBIO_LOG_DBG, format , ##args)245 #define AUBIO_DBG(format, args...) aubio_log(AUBIO_LOG_DBG, format , ##args) 246 246 #define AUBIO_WRN(format, args...) aubio_log(AUBIO_LOG_WRN, "AUBIO WARNING: " format, ##args) 247 #endif248 249 #ifdef DEBUG250 #define AUBIO_DBG _AUBIO_DBG251 #else252 // disable debug output253 #ifdef HAVE_C99_VARARGS_MACROS254 #define AUBIO_DBG(...) {}255 #else256 #define AUBIO_DBG(format, args...) {}257 #endif258 247 #endif 259 248 -
wscript
r63fc1df rb1ed6ce 46 46 ' or without (--build-type=debug)' \ 47 47 ' compiler opimizations [default: release]') 48 ctx.add_option('--debug', action = 'store_const',49 dest = 'build_type', const = 'debug',50 help = 'build in debug mode (see --build-type)')51 48 add_option_enable_disable(ctx, 'fftw3f', default = False, 52 49 help_str = 'compile with fftw3f instead of ooura (recommended)',
Note: See TracChangeset
for help on using the changeset viewer.