forked from gabr42/OmniThreadLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OtlOptions.inc
131 lines (116 loc) · 4.49 KB
/
OtlOptions.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
///<summary>Common compilation settings and conditional defines for the OmniThreadLibrary project.</summary>
///<author>Primoz Gabrijelcic</author>
///<license>
///This software is distributed under the BSD license.
///
///Copyright (c) 2019 Primoz Gabrijelcic
///All rights reserved.
///
///Redistribution and use in source and binary forms, with or without modification,
///are permitted provided that the following conditions are met:
///- Redistributions of source code must retain the above copyright notice, this
/// list of conditions and the following disclaimer.
///- Redistributions in binary form must reproduce the above copyright notice,
/// this list of conditions and the following disclaimer in the documentation
/// and/or other materials provided with the distribution.
///- The name of the Primoz Gabrijelcic may not be used to endorse or promote
/// products derived from this software without specific prior written permission.
///
///THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
///ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
///WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
///DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
///ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
///(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
///LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
///ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
///(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
///SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
///</license>
///<remarks><para>
/// Author : Primoz Gabrijelcic
/// Creation date : 2010-07-01
/// Last modification : 2019-01-03
/// Version : 1.06
///</para><para>
/// History:
/// 1.06: 2019-01-03
/// - Introduced OTL_TypeInfoHasTypeData.
/// 1.05: 2018-05-26
/// - Introduced OTL_NameThreadHasStringParameter and OTL_CanInlineOperators.
/// - OTL_StrPasInAnsiStrings moved from XE5 to XE4 section.
/// 1.04: 2012-09-23
/// - Introduced OTL_HasSystemTypes and OTL_LongGetMethodInfo.
/// 1.03: 2011-07-23
/// - Assertions must be always enabled.
/// 1.02: 2010-12-02
/// - Removed OTL_ParallelAggregate.
/// 1.01: 2010-07-25
/// - Introduced OTL_ParallelAggregate.
/// 1.0: 2010-07-01
/// - Released.
///</para></remarks>
// See the Configuration block below to configure your build process.
{$ALIGN 8}
{$BOOLEVAL OFF}
{$EXTENDEDSYNTAX ON}
{$LONGSTRINGS ON}
{$MINENUMSIZE 1}
{$OPENSTRINGS ON}
{$OVERFLOWCHECKS OFF}
{$TYPEDADDRESS OFF}
{$ASSERTIONS ON}
{$TYPEINFO OFF}
{$IF CompilerVersion >= 26}{$LEGACYIFEND ON}{$IFEND}
{$IF CompilerVersion < 19} //D2007
{$DEFINE OTL_NeedsWindowsAPIs}
{$IFEND}
{$IF CompilerVersion >= 20} //D2009
{$DEFINE OTL_Anonymous}
{$DEFINE OTL_Generics}
{$DEFINE OTL_HasInterlockedCompareExchangePointer}
{$DEFINE OTL_NUMASupport}
{$IFEND}
{$IF CompilerVersion >= 21} //D2010
{$DEFINE OTL_ERTTI}
{$DEFINE OTL_DeprecatedResume}
{$DEFINE OTL_KnowsParamCount}
{$DEFINE OTL_HasTkPointer}
{$DEFINE OTL_HasArrayOfT}
{$DEFINE OTL_HasNameThreadForDebugging}
{$DEFINE OTL_GoodAnonymous}
{$IFEND}
{$IF CompilerVersion >= 22} //DXE
{$DEFINE OTL_TOmniValueImplicitDateTime}
{$DEFINE OTL_HasThreadID}
{$DEFINE OTL_HasTInterlocked}
{$DEFINE OTL_GoodGenerics}
{$DEFINE OTL_HasTThreadYield}
{$IFEND}
{$IF CompilerVersion >= 23} //DXE2
{$DEFINE OTL_Supports64Bit}
{$DEFINE OTL_HasSystemTypes}
{$DEFINE OTL_HasCorrectNativeInt}
{$IFEND}
{$IF CompilerVersion >= 24} //DXE3
{$DEFINE OTL_LongGetMethodInfo}
{$DEFINE OTL_NameThreadHasStringParameter}
{$DEFINE OTL_TypeInfoHasTypeData}
{$IFEND}
{$IF CompilerVersion >= 25} //DXE4
{$DEFINE OTL_StrPasInAnsiStrings}
{$IFEND}
{$IF CompilerVersion >= 28} //DX7
{$DEFINE OTL_FixedGenericIncompletelyDefined}
{$IFEND}
{$IF CompilerVersion >= 29} //DXE8
{$DEFINE OTL_MobileSupport}
{$IFEND}
{$IF CompilerVersion >= 30} //Seattle
{$DEFINE OTL_CanInlineOperators}
{$IFEND}
{$IFNDEF MSWINDOWS}
{$IFNDEF OTL_MobileSupport}
{$MESSAGE ERROR 'Only Windows compilation is supported on this Delphi version (at least XE8 is required for non-Windows platforms.'}
{$ENDIF ~OTL_MobileSupport}
{$ENDIF ~MSWINDOWS}