Added limited run support
[fw/sdcc] / sdcc_vc.h
1 /*
2  */
3 #ifndef SDCCCONF_HEADER
4 #define SDCCCONF_HEADER
5
6
7 #define SDCC_VERSION_HI 2
8 #define SDCC_VERSION_LO 2
9 #define SDCC_VERSION_P 1
10 #define SDCC_VERSION_STR "2.2.2"
11
12 /* MSVC 6 does not have __FUNCTION__ preprocessor macro defined */
13
14 #if defined(_MSC_VER) && (_MSC_VER < 1300)
15 #define __FUNCTION__ __FILE__
16 #endif
17
18 #undef PREFIX
19 #define PREFIX                "\\sdcc"
20
21 #undef DATADIR
22 #undef SRCDIR
23
24 //#define STANDARD_INCLUDE_DIR  "\\sdcc\\local\\share\\include"
25 #define SDCC_INCLUDE_DIR      "\\sdcc\\include"
26 #define SDCC_LIB_DIR          "\\sdcc\\lib"
27 #define STD_LIB               "libsdcc"
28 #define STD_INT_LIB           "libint"
29 #define STD_LONG_LIB          "liblong"
30 #define STD_FP_LIB            "libfloat"
31 #define STD_DS390_LIB         "libds390"
32
33 // #undef HAVE_SYS_SOCKET_H
34 // #undef HAVE_SYS_ISA_DEFS_H   
35 // #undef HAVE_ENDIAN_H
36
37 #undef HAVE_STRERROR
38
39 #undef OPT_DISABLE_Z80
40 #undef OPT_DISABLE_GBZ80
41 #undef OPT_DISABLE_MCS51
42 #undef OPT_DISABLE_AVR
43
44 #endif
45
46 /* End of config.h */