10 lines
455 B
C
10 lines
455 B
C
#ifndef __CONFIG_H__
|
|
#define __CONFIG_H__
|
|
|
|
//#define CRAY_TURBO // If enabled, removes all logging capability
|
|
//#define NO_ASSERTS // If enabled, removes all asserts from the code, by defining CRAY_ASSERT as empty
|
|
//#define SINGLE_THREADED // If enabled, compiles code for single-threaded use only (multi-threaded builds are probably broken by now)
|
|
#define PARTIAL_DEBUG // If enabled, turns off optimization for certain functions
|
|
|
|
#endif // __CONFIG_H__
|