X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=sdcc_vc_in.h;h=01f454ac50ebf52b1bf95aa3b6bb5c7f40c416e8;hb=78789b2e9aee049280ccbb93b4840c300749f0f0;hp=840ffe9b54d255050fd68b85c3e6211d9c8d9fee;hpb=3496b9c93e952c27e5310e3804f9dcbf9c3795ee;p=fw%2Fsdcc diff --git a/sdcc_vc_in.h b/sdcc_vc_in.h index 840ffe9b..01f454ac 100644 --- a/sdcc_vc_in.h +++ b/sdcc_vc_in.h @@ -25,7 +25,7 @@ #define BIN2DATA_DIR "\\.." #define PREFIX2BIN_DIR "\\bin" #define PREFIX2DATA_DIR "" -#define BINDIR PREFIX "\\bin" +#define BINDIR PREFIX "\\bin" /* environment variables */ #define SDCC_DIR_NAME "SDCC_HOME" @@ -42,7 +42,6 @@ /* #undef STD_XA51_LIB */ /* #undef HAVE_SYS_SOCKET_H */ -#define HAVE_MALLOC_H #undef HAVE_STRERROR #define HAVE_VSNPRINTF @@ -71,6 +70,17 @@ #undef OPT_DISABLE_PIC #undef OPT_DISABLE_XA51 +#ifndef _DEBUG +/*disable warning C4018: signed/unsigned mismatch*/ +#pragma warning( disable : 4018 ) +/*disable warning C4761: integral: size mismatch in argument; conversion supplied*/ +#pragma warning( disable : 4761 ) +/*disable warning C4146: unary minus operator applied to unsigned type, result still unsigned*/ +#pragma warning( disable : 4146 ) +/*disable warning C4244: 'initializing' : conversion from 'double ' to 'char ', possible loss of data*/ +#pragma warning( disable : 4244 ) +#endif + #endif /* SDCC_VC_HEADER */ /* End of sdcc_vc.h */