Added verbose exec feature.
[fw/sdcc] / src / config.h
1 /** @name Global configuration file
2  */
3 #ifndef CONFIG_INCLUDE
4 #define CONFIG_INCLUDE
5
6 #if 0
7 /** Options specific to this port */
8 #include "port.h"
9
10 /** Set to the name of the C pre-processor.
11     Alternatives: sdcpp
12  */
13 #define CPP_NAME "cpp"
14
15 /** Set to the option which puts cpp into C++ mode */
16 #if __GNUC__ > 1 && __GNUC_MINOR__>=95
17 /* PENDING: Strictly -xc++ */
18 #define CPP_CPP_LANG_SELECT_OPTION "-xc"
19 #else
20 #define CPP_CPP_LANG_SELECT_OPTION "-lang-c++"
21 #endif
22 #endif
23
24 /** Set to allow '-v' to be used to print out the command being executed */
25 #define FEATURE_VERBOSE_EXEC    1
26
27 #endif