removed project sdcpp, added project xa51a
[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 #undef DATADIR
20 #undef SRCDIR
21
22 //#define STANDARD_INCLUDE_DIR  "\\sdcc\\local\\share\\include"
23 #define SDCC_INCLUDE_DIR      "\\sdcc\\include"
24 #define SDCC_LIB_DIR          "\\sdcc\\lib"
25 #define STD_LIB               "libsdcc"
26 #define STD_INT_LIB           "libint"
27 #define STD_LONG_LIB          "liblong"
28 #define STD_FP_LIB            "libfloat"
29 #define STD_DS390_LIB         "libds390"
30
31 // #undef HAVE_SYS_SOCKET_H
32 // #undef HAVE_SYS_ISA_DEFS_H   
33 // #undef HAVE_ENDIAN_H
34
35 #undef HAVE_STRERROR
36
37 #undef OPT_DISABLE_Z80
38 #undef OPT_DISABLE_GBZ80
39 #undef OPT_DISABLE_MCS51
40 #undef OPT_DISABLE_AVR
41
42 #endif
43
44 /* End of config.h */