]> git.saurik.com Git - wxWidgets.git/blame - include/wx/build.h
Really fix the problem with caret in wxGrid text editor under MSW.
[wxWidgets.git] / include / wx / build.h
CommitLineData
090a6d7a
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: wx/build.h
2a7c7605
VS
3// Purpose: Runtime build options checking
4// Author: Vadim Zeitlin, Vaclav Slavik
090a6d7a
VZ
5// Modified by:
6// Created: 07.05.02
7// RCS-ID: $Id$
77ffb593 8// Copyright: (c) 2002 Vadim Zeitlin <vadim@wxwidgets.org>
65571936 9// Licence: wxWindows licence
090a6d7a
VZ
10///////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_BUILD_H_
13#define _WX_BUILD_H_
14
15#include "wx/version.h"
16
7a47e45e 17// NB: This file contains macros for checking binary compatibility of libraries
7d9550df 18// in multilib builds, plugins and user components.
7a47e45e
VS
19// The WX_BUILD_OPTIONS_SIGNATURE macro expands into string that should
20// uniquely identify binary compatible builds: i.e. if two builds of the
21// library are binary compatible, their signature string should be the
22// same; if two builds are binary incompatible, their signatures should
23// be different.
24//
25// Therefore, wxUSE_XXX flags that affect binary compatibility (vtables,
26// function signatures) should be accounted for here. So should compilers
27// and compiler versions (but note that binary compatible compiler versions
28// such as gcc-2.95.2 and gcc-2.95.3 should have same signature!).
29
090a6d7a 30// ----------------------------------------------------------------------------
2a7c7605 31// WX_BUILD_OPTIONS_SIGNATURE
090a6d7a
VZ
32// ----------------------------------------------------------------------------
33
f48eebbc
VS
34#define __WX_BO_STRINGIZE(x) __WX_BO_STRINGIZE0(x)
35#define __WX_BO_STRINGIZE0(x) #x
2a7c7605
VS
36
37#if (wxMINOR_VERSION % 2) == 0
38 #define __WX_BO_VERSION(x,y,z) \
39 __WX_BO_STRINGIZE(x) "." __WX_BO_STRINGIZE(y)
40#else
41 #define __WX_BO_VERSION(x,y,z) \
42 __WX_BO_STRINGIZE(x) "." __WX_BO_STRINGIZE(y) "." __WX_BO_STRINGIZE(z)
43#endif
44
a74deb88
VZ
45#if wxUSE_UNICODE_UTF8
46 #define __WX_BO_UNICODE "UTF-8"
47#elif wxUSE_UNICODE_WCHAR
48 #define __WX_BO_UNICODE "wchar_t"
2a7c7605
VS
49#else
50 #define __WX_BO_UNICODE "ANSI"
51#endif
f48eebbc 52
eaee975a
VS
53// GCC and Intel C++ share same C++ ABI (and possibly others in the future),
54// check if compiler versions are compatible:
55#if defined(__GXX_ABI_VERSION)
f48eebbc
VS
56 #define __WX_BO_COMPILER \
57 ",compiler with C++ ABI " __WX_BO_STRINGIZE(__GXX_ABI_VERSION)
eaee975a
VS
58#elif defined(__INTEL_COMPILER)
59 #define __WX_BO_COMPILER ",Intel C++"
60#elif defined(__GNUG__)
61 #define __WX_BO_COMPILER ",GCC " \
62 __WX_BO_STRINGIZE(__GNUC__) "." __WX_BO_STRINGIZE(__GNUC_MINOR__)
63#elif defined(__VISUALC__)
f86f607c 64 #define __WX_BO_COMPILER ",Visual C++ " __WX_BO_STRINGIZE(_MSC_VER)
eaee975a 65#elif defined(__BORLANDC__)
981a6271 66 #define __WX_BO_COMPILER ",Borland C++"
eaee975a 67#elif defined(__DIGITALMARS__)
981a6271 68 #define __WX_BO_COMPILER ",DigitalMars"
eaee975a
VS
69#elif defined(__WATCOMC__)
70 #define __WX_BO_COMPILER ",Watcom C++"
f48eebbc
VS
71#else
72 #define __WX_BO_COMPILER
73#endif
e1a4f817
VS
74
75// WXWIN_COMPATIBILITY macros affect presence of virtual functions
dee1a63f
MB
76#if WXWIN_COMPATIBILITY_2_6
77 #define __WX_BO_WXWIN_COMPAT_2_6 ",compatible with 2.6"
78#else
79 #define __WX_BO_WXWIN_COMPAT_2_6
80#endif
c1dc9f83
VZ
81#if WXWIN_COMPATIBILITY_2_8
82 #define __WX_BO_WXWIN_COMPAT_2_8 ",compatible with 2.8"
83#else
84 #define __WX_BO_WXWIN_COMPAT_2_8
85#endif
e1a4f817 86
2a5f8668 87// deriving wxWin containers from STL ones changes them completely:
01871bf6 88#if wxUSE_STD_CONTAINERS
2a5f8668
VS
89 #define __WX_BO_STL ",STL containers"
90#else
91 #define __WX_BO_STL ",wx containers"
92#endif
c9d59ee7 93
2a7c7605
VS
94// This macro is passed as argument to wxConsoleApp::CheckBuildOptions()
95#define WX_BUILD_OPTIONS_SIGNATURE \
96 __WX_BO_VERSION(wxMAJOR_VERSION, wxMINOR_VERSION, wxRELEASE_NUMBER) \
7d9550df 97 " (" __WX_BO_UNICODE \
e1a4f817 98 __WX_BO_COMPILER \
2a5f8668 99 __WX_BO_STL \
c1dc9f83 100 __WX_BO_WXWIN_COMPAT_2_6 __WX_BO_WXWIN_COMPAT_2_8 \
e1a4f817 101 ")"
090a6d7a 102
090a6d7a 103
f75d7781
VS
104// ----------------------------------------------------------------------------
105// WX_CHECK_BUILD_OPTIONS
106// ----------------------------------------------------------------------------
090a6d7a 107
2a7c7605 108// Use this macro to check build options. Adding it to a file in DLL will
e4431849 109// ensure that the DLL checks build options in same way wxIMPLEMENT_APP() does.
2a7c7605 110#define WX_CHECK_BUILD_OPTIONS(libName) \
17a1ebd1 111 static struct wxBuildOptionsChecker \
2a7c7605 112 { \
17a1ebd1
VZ
113 wxBuildOptionsChecker() \
114 { \
115 wxAppConsole::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, \
116 libName); \
117 } \
118 } gs_buildOptionsCheck;
090a6d7a 119
f75d7781 120
090a6d7a 121#endif // _WX_BUILD_H_