IDE: compiler options: updated target processors for fpc 2.2.2

git-svn-id: trunk@16146 -
This commit is contained in:
mattias 2008-08-19 15:56:03 +00:00
parent f5cd4734ea
commit cb164f1467
6 changed files with 513 additions and 487 deletions

View File

@ -292,7 +292,7 @@ type
procedure SetSrcPath(const AValue: string); override; procedure SetSrcPath(const AValue: string); override;
procedure SetDebugPath(const AValue: string); override; procedure SetDebugPath(const AValue: string); override;
procedure SetTargetCPU(const AValue: string); override; procedure SetTargetCPU(const AValue: string); override;
procedure SetTargetProc(const AValue: Integer); override; procedure SetTargetProc(const AValue: string); override;
procedure SetTargetOS(const AValue: string); override; procedure SetTargetOS(const AValue: string); override;
procedure SetModified(const AValue: boolean); override; procedure SetModified(const AValue: boolean); override;
protected protected
@ -504,7 +504,7 @@ procedure SaveXMLCompileReasons(const AConfig: TXMLConfig; const APath: String;
implementation implementation
const const
CompilerOptionsVersion = 6; CompilerOptionsVersion = 7;
Config_Filename = 'compileroptions.xml'; Config_Filename = 'compileroptions.xml';
function ParseString(Options: TParsedCompilerOptions; function ParseString(Options: TParsedCompilerOptions;
@ -909,7 +909,7 @@ begin
IncreaseCompilerParseStamp; IncreaseCompilerParseStamp;
end; end;
procedure TBaseCompilerOptions.SetTargetProc(const AValue: Integer); procedure TBaseCompilerOptions.SetTargetProc(const AValue: string);
begin begin
if fTargetProc=AValue then exit; if fTargetProc=AValue then exit;
fTargetProc:=AValue; fTargetProc:=AValue;
@ -996,6 +996,7 @@ var
p: String; p: String;
PathDelimChanged: boolean; PathDelimChanged: boolean;
FileVersion: Integer; FileVersion: Integer;
i: LongInt;
function f(const Filename: string): string; function f(const Filename: string): string;
begin begin
@ -1104,7 +1105,15 @@ begin
HeapSize := XMLConfigFile.GetValue(p+'HeapSize/Value', 0); HeapSize := XMLConfigFile.GetValue(p+'HeapSize/Value', 0);
VerifyObjMethodCall := XMLConfigFile.GetValue(p+'VerifyObjMethodCallValidity/Value', false); VerifyObjMethodCall := XMLConfigFile.GetValue(p+'VerifyObjMethodCallValidity/Value', false);
ReadGenerate; ReadGenerate;
TargetProcessor := XMLConfigFile.GetValue(p+'TargetProcessor/Value', 0); if FileVersion<6 then begin
i:=XMLConfigFile.GetValue(p+'TargetProcessor/Value', 0);
case i of
1: TargetProcessor:='PENTIUM';
2: TargetProcessor:='PENTIUM2';
3: TargetProcessor:='PENTIUM3';
end;
end else
TargetProcessor := XMLConfigFile.GetValue(p+'TargetProcessor/Value', '');
TargetCPU := XMLConfigFile.GetValue(p+'TargetCPU/Value', ''); TargetCPU := XMLConfigFile.GetValue(p+'TargetCPU/Value', '');
VariablesInRegisters := XMLConfigFile.GetValue(p+'Optimizations/VariablesInRegisters/Value', false); VariablesInRegisters := XMLConfigFile.GetValue(p+'Optimizations/VariablesInRegisters/Value', false);
UncertainOptimizations := XMLConfigFile.GetValue(p+'Optimizations/UncertainOptimizations/Value', false); UncertainOptimizations := XMLConfigFile.GetValue(p+'Optimizations/UncertainOptimizations/Value', false);
@ -1252,7 +1261,7 @@ begin
XMLConfigFile.SetDeleteValue(p+'HeapSize/Value', HeapSize,0); XMLConfigFile.SetDeleteValue(p+'HeapSize/Value', HeapSize,0);
XMLConfigFile.SetDeleteValue(p+'VerifyObjMethodCallValidity/Value', VerifyObjMethodCall,false); XMLConfigFile.SetDeleteValue(p+'VerifyObjMethodCallValidity/Value', VerifyObjMethodCall,false);
XMLConfigFile.SetDeleteValue(p+'Generate/Value', CompilationGenerateCodeNames[Generate],CompilationGenerateCodeNames[cgcNormalCode]); XMLConfigFile.SetDeleteValue(p+'Generate/Value', CompilationGenerateCodeNames[Generate],CompilationGenerateCodeNames[cgcNormalCode]);
XMLConfigFile.SetDeleteValue(p+'TargetProcessor/Value', TargetProcessor,0); XMLConfigFile.SetDeleteValue(p+'TargetProcessor/Value', TargetProcessor,'');
XMLConfigFile.SetDeleteValue(p+'TargetCPU/Value', TargetCPU,''); XMLConfigFile.SetDeleteValue(p+'TargetCPU/Value', TargetCPU,'');
XMLConfigFile.SetDeleteValue(p+'Optimizations/VariablesInRegisters/Value', VariablesInRegisters,false); XMLConfigFile.SetDeleteValue(p+'Optimizations/VariablesInRegisters/Value', VariablesInRegisters,false);
XMLConfigFile.SetDeleteValue(p+'Optimizations/UncertainOptimizations/Value', UncertainOptimizations,false); XMLConfigFile.SetDeleteValue(p+'Optimizations/UncertainOptimizations/Value', UncertainOptimizations,false);
@ -2053,17 +2062,13 @@ begin
if (UncertainOptimizations) then if (UncertainOptimizations) then
OptimizeSwitches := OptimizeSwitches + 'u'; OptimizeSwitches := OptimizeSwitches + 'u';
{ TargetProcessor }
case (TargetProcessor) of
0: ; // use default
1: OptimizeSwitches := OptimizeSwitches + 'p1'; // 386/486
2: OptimizeSwitches := OptimizeSwitches + 'p2'; // Pentium/Pentium MMX
3: OptimizeSwitches := OptimizeSwitches + 'p3'; // PentiumPro/PII/K6
end;
if OptimizeSwitches<>'' then if OptimizeSwitches<>'' then
switches := switches + ' -O'+OptimizeSwitches; switches := switches + ' -O'+OptimizeSwitches;
{ TargetProcessor }
if TargetProcessor<>'' then
Switches:=Switches+' -Op'+UpperCase(TargetProcessor);
{ Target OS { Target OS
GO32V1 = DOS and version 1 of the DJ DELORIE extender (no longer maintained). GO32V1 = DOS and version 1 of the DJ DELORIE extender (no longer maintained).
GO32V2 = DOS and version 2 of the DJ DELORIE extender. GO32V2 = DOS and version 2 of the DJ DELORIE extender.
@ -2442,7 +2447,7 @@ begin
fStackChecks := false; fStackChecks := false;
fHeapSize := 0; fHeapSize := 0;
fGenerate := cgcFasterCode; fGenerate := cgcFasterCode;
fTargetProc := 0; fTargetProc := '';
fTargetCPU := ''; fTargetCPU := '';
fVarsInReg := false; fVarsInReg := false;
fUncertainOpt := false; fUncertainOpt := false;

View File

@ -19,7 +19,7 @@ object frmCompilerOptions: TfrmCompilerOptions
Width = 669 Width = 669
Align = alTop Align = alTop
Anchors = [akTop, akLeft, akRight, akBottom] Anchors = [akTop, akLeft, akRight, akBottom]
PageIndex = 1 PageIndex = 2
TabOrder = 0 TabOrder = 0
object PathPage: TPage object PathPage: TPage
Caption = 'PathPage' Caption = 'PathPage'
@ -498,10 +498,11 @@ object frmCompilerOptions: TfrmCompilerOptions
TabOrder = 4 TabOrder = 4
object lblTargetOS: TLabel object lblTargetOS: TLabel
AnchorSideLeft.Control = grpTargetPlatform AnchorSideLeft.Control = grpTargetPlatform
AnchorSideTop.Control = grpTargetPlatform AnchorSideTop.Control = TargetOSComboBox
AnchorSideTop.Side = asrCenter
Left = 6 Left = 6
Height = 20 Height = 20
Top = 6 Top = 10
Width = 73 Width = 73
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = 'lblTargetOS' Caption = 'lblTargetOS'
@ -509,26 +510,26 @@ object frmCompilerOptions: TfrmCompilerOptions
end end
object lblTargetCPU: TLabel object lblTargetCPU: TLabel
AnchorSideLeft.Control = grpTargetPlatform AnchorSideLeft.Control = grpTargetPlatform
AnchorSideTop.Control = TargetOSComboBox AnchorSideTop.Control = TargetCPUComboBox
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrCenter
Left = 6 Left = 6
Height = 20 Height = 20
Top = 41 Top = 45
Width = 81 Width = 81
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = 'lblTargetCPU' Caption = 'lblTargetCPU'
ParentColor = False ParentColor = False
end end
object lblTargeti386Proc: TLabel object lblTargetProcessorProc: TLabel
AnchorSideLeft.Control = grpTargetPlatform AnchorSideLeft.Control = grpTargetPlatform
AnchorSideTop.Control = TargetCPUComboBox AnchorSideTop.Control = TargetProcessorProcComboBox
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrCenter
Left = 6 Left = 6
Height = 20 Height = 20
Top = 76 Top = 80
Width = 109 Width = 145
BorderSpacing.Around = 6 BorderSpacing.Around = 6
Caption = 'lblTargeti386Proc' Caption = 'lblTargetProcessorProc'
ParentColor = False ParentColor = False
end end
object TargetOSComboBox: TComboBox object TargetOSComboBox: TComboBox
@ -565,28 +566,27 @@ object frmCompilerOptions: TfrmCompilerOptions
BorderSpacing.Left = 6 BorderSpacing.Left = 6
BorderSpacing.Around = 6 BorderSpacing.Around = 6
MaxLength = 0 MaxLength = 0
OnChange = TargetCPUComboBoxChange
TabOrder = 1 TabOrder = 1
Text = 'TargetCPUComboBox' Text = 'TargetCPUComboBox'
end end
object Targeti386ProcComboBox: TComboBox object TargetProcessorProcComboBox: TComboBox
AnchorSideLeft.Control = lblTargeti386Proc AnchorSideLeft.Control = lblTargetProcessorProc
AnchorSideLeft.Side = asrBottom AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = TargetCPUComboBox AnchorSideTop.Control = TargetCPUComboBox
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = grpTargetPlatform AnchorSideRight.Control = grpTargetPlatform
AnchorSideRight.Side = asrBottom AnchorSideRight.Side = asrBottom
Left = 127 Left = 163
Height = 29 Height = 29
Top = 76 Top = 76
Width = 376 Width = 340
Anchors = [akTop, akLeft, akRight] Anchors = [akTop, akLeft, akRight]
AutoCompleteText = [cbactEndOfLineComplete, cbactSearchAscending] AutoCompleteText = [cbactEndOfLineComplete, cbactSearchAscending]
BorderSpacing.Left = 6 BorderSpacing.Left = 6
BorderSpacing.Around = 6 BorderSpacing.Around = 6
MaxLength = 0 MaxLength = 0
TabOrder = 2 TabOrder = 2
Text = 'Targeti386ProcComboBox' Text = 'TargetProcessorProcComboBox'
end end
end end
object grpOptimizations: TGroupBox object grpOptimizations: TGroupBox

View File

@ -9,7 +9,7 @@ LazarusResources.Add('TfrmCompilerOptions','FORMDATA',[
+'Position'#7#14'poScreenCenter'#10'LCLVersion'#6#6'0.9.25'#0#9'TNotebook'#12 +'Position'#7#14'poScreenCenter'#10'LCLVersion'#6#6'0.9.25'#0#9'TNotebook'#12
+'MainNotebook'#24'AnchorSideBottom.Control'#7#8'BtnPanel'#6'Height'#3#224#1#5 +'MainNotebook'#24'AnchorSideBottom.Control'#7#8'BtnPanel'#6'Height'#3#224#1#5
+'Width'#3#157#2#5'Align'#7#5'alTop'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRig' +'Width'#3#157#2#5'Align'#7#5'alTop'#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRig'
+'ht'#8'akBottom'#0#9'PageIndex'#2#1#8'TabOrder'#2#0#0#5'TPage'#8'PathPage'#7 +'ht'#8'akBottom'#0#9'PageIndex'#2#2#8'TabOrder'#2#0#0#5'TPage'#8'PathPage'#7
+'Caption'#6#8'PathPage'#11'ClientWidth'#3#155#2#12'ClientHeight'#3#197#1#0#6 +'Caption'#6#8'PathPage'#11'ClientWidth'#3#155#2#12'ClientHeight'#3#197#1#0#6
+'TLabel'#13'lblOtherUnits'#4'Left'#2#6#6'Height'#2#20#3'Top'#2#6#5'Width'#3 +'TLabel'#13'lblOtherUnits'#4'Left'#2#6#6'Height'#2#20#3'Top'#2#6#5'Width'#3
+#143#2#5'Align'#7#5'alTop'#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2 +#143#2#5'Align'#7#5'alTop'#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2
@ -169,424 +169,425 @@ LazarusResources.Add('TfrmCompilerOptions','FORMDATA',[
+'rderSpacing.Around'#2#6#7'Caption'#6#17'grpTargetPlatform'#12'ClientHeight' +'rderSpacing.Around'#2#6#7'Caption'#6#17'grpTargetPlatform'#12'ClientHeight'
+#2'o'#11'ClientWidth'#3#253#1#8'TabOrder'#2#4#0#6'TLabel'#11'lblTargetOS'#22 +#2'o'#11'ClientWidth'#3#253#1#8'TabOrder'#2#4#0#6'TLabel'#11'lblTargetOS'#22
+'AnchorSideLeft.Control'#7#17'grpTargetPlatform'#21'AnchorSideTop.Control'#7 +'AnchorSideLeft.Control'#7#17'grpTargetPlatform'#21'AnchorSideTop.Control'#7
+#17'grpTargetPlatform'#4'Left'#2#6#6'Height'#2#20#3'Top'#2#6#5'Width'#2'I'#20 +#16'TargetOSComboBox'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2#6#6'He'
+'BorderSpacing.Around'#2#6#7'Caption'#6#11'lblTargetOS'#11'ParentColor'#8#0#0 +'ight'#2#20#3'Top'#2#10#5'Width'#2'I'#20'BorderSpacing.Around'#2#6#7'Caption'
+#6'TLabel'#12'lblTargetCPU'#22'AnchorSideLeft.Control'#7#17'grpTargetPlatfor' +#6#11'lblTargetOS'#11'ParentColor'#8#0#0#6'TLabel'#12'lblTargetCPU'#22'Ancho'
+'m'#21'AnchorSideTop.Control'#7#16'TargetOSComboBox'#18'AnchorSideTop.Side'#7 +'rSideLeft.Control'#7#17'grpTargetPlatform'#21'AnchorSideTop.Control'#7#17'T'
+#9'asrBottom'#4'Left'#2#6#6'Height'#2#20#3'Top'#2')'#5'Width'#2'Q'#20'Border' +'argetCPUComboBox'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'Left'#2#6#6'Heigh'
+'Spacing.Around'#2#6#7'Caption'#6#12'lblTargetCPU'#11'ParentColor'#8#0#0#6'T' +'t'#2#20#3'Top'#2'-'#5'Width'#2'Q'#20'BorderSpacing.Around'#2#6#7'Caption'#6
+'Label'#17'lblTargeti386Proc'#22'AnchorSideLeft.Control'#7#17'grpTargetPlatf' +#12'lblTargetCPU'#11'ParentColor'#8#0#0#6'TLabel'#22'lblTargetProcessorProc'
+'orm'#21'AnchorSideTop.Control'#7#17'TargetCPUComboBox'#18'AnchorSideTop.Sid' +#22'AnchorSideLeft.Control'#7#17'grpTargetPlatform'#21'AnchorSideTop.Control'
+'e'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#20#3'Top'#2'L'#5'Width'#2'm'#20'B' +#7#27'TargetProcessorProcComboBox'#18'AnchorSideTop.Side'#7#9'asrCenter'#4'L'
+'orderSpacing.Around'#2#6#7'Caption'#6#17'lblTargeti386Proc'#11'ParentColor' +'eft'#2#6#6'Height'#2#20#3'Top'#2'P'#5'Width'#3#145#0#20'BorderSpacing.Aroun'
+#8#0#0#9'TComboBox'#16'TargetOSComboBox'#22'AnchorSideLeft.Control'#7#11'lbl' +'d'#2#6#7'Caption'#6#22'lblTargetProcessorProc'#11'ParentColor'#8#0#0#9'TCom'
+'TargetOS'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7 +'boBox'#16'TargetOSComboBox'#22'AnchorSideLeft.Control'#7#11'lblTargetOS'#19
+#17'grpTargetPlatform'#23'AnchorSideRight.Control'#7#17'grpTargetPlatform'#20 +'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#17'grpTarge'
+'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'['#6'Height'#2#29#3'Top'#2#6 +'tPlatform'#23'AnchorSideRight.Control'#7#17'grpTargetPlatform'#20'AnchorSid'
+#5'Width'#3#156#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#16'AutoCompl' +'eRight.Side'#7#9'asrBottom'#4'Left'#2'['#6'Height'#2#29#3'Top'#2#6#5'Width'
+'eteText'#11#22'cbactEndOfLineComplete'#20'cbactSearchAscending'#0#18'Border' +#3#156#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#16'AutoCompleteText'
+'Spacing.Left'#2#6#20'BorderSpacing.Around'#2#6#9'MaxLength'#2#0#8'TabOrder' +#11#22'cbactEndOfLineComplete'#20'cbactSearchAscending'#0#18'BorderSpacing.L'
+#2#0#4'Text'#6#16'TargetOSComboBox'#0#0#9'TComboBox'#17'TargetCPUComboBox'#22 +'eft'#2#6#20'BorderSpacing.Around'#2#6#9'MaxLength'#2#0#8'TabOrder'#2#0#4'Te'
+'AnchorSideLeft.Control'#7#12'lblTargetCPU'#19'AnchorSideLeft.Side'#7#9'asrB' +'xt'#6#16'TargetOSComboBox'#0#0#9'TComboBox'#17'TargetCPUComboBox'#22'Anchor'
+'ottom'#21'AnchorSideTop.Control'#7#16'TargetOSComboBox'#18'AnchorSideTop.Si' +'SideLeft.Control'#7#12'lblTargetCPU'#19'AnchorSideLeft.Side'#7#9'asrBottom'
+'de'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#17'grpTargetPlatform'#20'A' +#21'AnchorSideTop.Control'#7#16'TargetOSComboBox'#18'AnchorSideTop.Side'#7#9
+'nchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'c'#6'Height'#2#29#3'Top'#2')' +'asrBottom'#23'AnchorSideRight.Control'#7#17'grpTargetPlatform'#20'AnchorSid'
+#5'Width'#3#148#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#16'AutoCompl' +'eRight.Side'#7#9'asrBottom'#4'Left'#2'c'#6'Height'#2#29#3'Top'#2')'#5'Width'
+'eteText'#11#22'cbactEndOfLineComplete'#20'cbactSearchAscending'#0#18'Border' +#3#148#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#16'AutoCompleteText'
,'Spacing.Left'#2#6#20'BorderSpacing.Around'#2#6#9'MaxLength'#2#0#8'OnChange' ,#11#22'cbactEndOfLineComplete'#20'cbactSearchAscending'#0#18'BorderSpacing.L'
+#7#23'TargetCPUComboBoxChange'#8'TabOrder'#2#1#4'Text'#6#17'TargetCPUComboBo' +'eft'#2#6#20'BorderSpacing.Around'#2#6#9'MaxLength'#2#0#8'TabOrder'#2#1#4'Te'
+'x'#0#0#9'TComboBox'#22'Targeti386ProcComboBox'#22'AnchorSideLeft.Control'#7 +'xt'#6#17'TargetCPUComboBox'#0#0#9'TComboBox'#27'TargetProcessorProcComboBox'
+#17'lblTargeti386Proc'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideT' +#22'AnchorSideLeft.Control'#7#22'lblTargetProcessorProc'#19'AnchorSideLeft.S'
+'op.Control'#7#17'TargetCPUComboBox'#18'AnchorSideTop.Side'#7#9'asrBottom'#23 +'ide'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#17'TargetCPUComboBox'#18'An'
+'AnchorSideRight.Control'#7#17'grpTargetPlatform'#20'AnchorSideRight.Side'#7 +'chorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#17'grpTarget'
+#9'asrBottom'#4'Left'#2''#6'Height'#2#29#3'Top'#2'L'#5'Width'#3'x'#1#7'Anch' +'Platform'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3#163#0#6'Height'
+'ors'#11#5'akTop'#6'akLeft'#7'akRight'#0#16'AutoCompleteText'#11#22'cbactEnd' +#2#29#3'Top'#2'L'#5'Width'#3'T'#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'
+'OfLineComplete'#20'cbactSearchAscending'#0#18'BorderSpacing.Left'#2#6#20'Bo' +#0#16'AutoCompleteText'#11#22'cbactEndOfLineComplete'#20'cbactSearchAscendin'
+'rderSpacing.Around'#2#6#9'MaxLength'#2#0#8'TabOrder'#2#2#4'Text'#6#22'Targe' +'g'#0#18'BorderSpacing.Left'#2#6#20'BorderSpacing.Around'#2#6#9'MaxLength'#2
+'ti386ProcComboBox'#0#0#0#9'TGroupBox'#16'grpOptimizations'#22'AnchorSideLef' +#0#8'TabOrder'#2#2#4'Text'#6#27'TargetProcessorProcComboBox'#0#0#0#9'TGroupB'
+'t.Control'#7#11'CodeGenPage'#21'AnchorSideTop.Control'#7#11'grpGenerate'#18 +'ox'#16'grpOptimizations'#22'AnchorSideLeft.Control'#7#11'CodeGenPage'#21'An'
+'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#11'CodeGen' +'chorSideTop.Control'#7#11'grpGenerate'#18'AnchorSideTop.Side'#7#9'asrBottom'
+'Page'#20'AnchorSideRight.Side'#7#9'asrBottom'#24'AnchorSideBottom.Control'#7 +#23'AnchorSideRight.Control'#7#11'CodeGenPage'#20'AnchorSideRight.Side'#7#9
+#11'CodeGenPage'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Heig' +'asrBottom'#24'AnchorSideBottom.Control'#7#11'CodeGenPage'#21'AnchorSideBott'
+'ht'#3#162#0#3'Top'#3#29#1#5'Width'#3#143#2#7'Anchors'#11#5'akTop'#6'akLeft' +'om.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#3#162#0#3'Top'#3#29#1#5'Width'
+#7'akRight'#8'akBottom'#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#16'grpOp' +#3#143#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#8'akBottom'#0#20'Border'
+'timizations'#12'ClientHeight'#3#143#0#11'ClientWidth'#3#139#2#8'TabOrder'#2 +'Spacing.Around'#2#6#7'Caption'#6#16'grpOptimizations'#12'ClientHeight'#3#143
+#5#8'OnResize'#7#22'grpOptimizationsResize'#0#12'TRadioButton'#15'radOptLeve' +#0#11'ClientWidth'#3#139#2#8'TabOrder'#2#5#8'OnResize'#7#22'grpOptimizations'
+'lNone'#22'AnchorSideLeft.Control'#7#16'grpOptimizations'#21'AnchorSideTop.C' +'Resize'#0#12'TRadioButton'#15'radOptLevelNone'#22'AnchorSideLeft.Control'#7
+'ontrol'#7#16'grpOptimizations'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#6#5'Widt' +#16'grpOptimizations'#21'AnchorSideTop.Control'#7#16'grpOptimizations'#4'Lef'
+'h'#3#135#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#15'radOptLevelNone'#7 +'t'#2#6#6'Height'#2#22#3'Top'#2#6#5'Width'#3#135#0#20'BorderSpacing.Around'#2
+'Checked'#9#5'State'#7#9'cbChecked'#8'TabOrder'#2#0#0#0#12'TRadioButton'#12 +#6#7'Caption'#6#15'radOptLevelNone'#7'Checked'#9#5'State'#7#9'cbChecked'#8'T'
+'radOptLevel1'#22'AnchorSideLeft.Control'#7#16'grpOptimizations'#21'AnchorSi' +'abOrder'#2#0#0#0#12'TRadioButton'#12'radOptLevel1'#22'AnchorSideLeft.Contro'
+'deTop.Control'#7#15'radOptLevelNone'#18'AnchorSideTop.Side'#7#9'asrBottom'#4 +'l'#7#16'grpOptimizations'#21'AnchorSideTop.Control'#7#15'radOptLevelNone'#18
+'Left'#2#6#6'Height'#2#22#3'Top'#2'"'#5'Width'#2'm'#20'BorderSpacing.Around' +'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'"'#5
+#2#6#7'Caption'#6#12'radOptLevel1'#8'TabOrder'#2#1#0#0#12'TRadioButton'#12'r' +'Width'#2'm'#20'BorderSpacing.Around'#2#6#7'Caption'#6#12'radOptLevel1'#8'Ta'
+'adOptLevel2'#22'AnchorSideLeft.Control'#7#16'grpOptimizations'#21'AnchorSid' +'bOrder'#2#1#0#0#12'TRadioButton'#12'radOptLevel2'#22'AnchorSideLeft.Control'
+'eTop.Control'#7#12'radOptLevel1'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Le' +#7#16'grpOptimizations'#21'AnchorSideTop.Control'#7#12'radOptLevel1'#18'Anch'
+'ft'#2#6#6'Height'#2#22#3'Top'#2'>'#5'Width'#2'm'#20'BorderSpacing.Around'#2 +'orSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'>'#5'Wid'
+#6#7'Caption'#6#12'radOptLevel2'#8'TabOrder'#2#2#0#0#12'TRadioButton'#12'rad' +'th'#2'm'#20'BorderSpacing.Around'#2#6#7'Caption'#6#12'radOptLevel2'#8'TabOr'
+'OptLevel3'#22'AnchorSideLeft.Control'#7#16'grpOptimizations'#21'AnchorSideT' +'der'#2#2#0#0#12'TRadioButton'#12'radOptLevel3'#22'AnchorSideLeft.Control'#7
+'op.Control'#7#12'radOptLevel2'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left' +#16'grpOptimizations'#21'AnchorSideTop.Control'#7#12'radOptLevel2'#18'Anchor'
+#2#6#6'Height'#2#22#3'Top'#2'Z'#5'Width'#2'm'#20'BorderSpacing.Around'#2#6#7 +'SideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'Z'#5'Width'
+'Caption'#6#12'radOptLevel3'#8'TabOrder'#2#3#0#0#9'TCheckBox'#15'chkOptVarsI' +#2'm'#20'BorderSpacing.Around'#2#6#7'Caption'#6#12'radOptLevel3'#8'TabOrder'
+'nReg'#21'AnchorSideTop.Control'#7#16'grpOptimizations'#4'Left'#3#205#0#6'He' +#2#3#0#0#9'TCheckBox'#15'chkOptVarsInReg'#21'AnchorSideTop.Control'#7#16'grp'
+'ight'#2#22#3'Top'#2#6#5'Width'#3#131#0#20'BorderSpacing.Around'#2#6#7'Capti' +'Optimizations'#4'Left'#3#205#0#6'Height'#2#22#3'Top'#2#6#5'Width'#3#131#0#20
+'on'#6#15'chkOptVarsInReg'#8'TabOrder'#2#4#0#0#9'TCheckBox'#15'chkOptUncerta' +'BorderSpacing.Around'#2#6#7'Caption'#6#15'chkOptVarsInReg'#8'TabOrder'#2#4#0
+'in'#21'AnchorSideTop.Control'#7#15'chkOptVarsInReg'#18'AnchorSideTop.Side'#7 +#0#9'TCheckBox'#15'chkOptUncertain'#21'AnchorSideTop.Control'#7#15'chkOptVar'
+#9'asrBottom'#4'Left'#3#205#0#6'Height'#2#22#3'Top'#2'"'#5'Width'#3#131#0#20 +'sInReg'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#3#205#0#6'Height'#2#22
+'BorderSpacing.Around'#2#6#7'Caption'#6#15'chkOptUncertain'#8'TabOrder'#2#5#0 +#3'Top'#2'"'#5'Width'#3#131#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#15'c'
+#0#0#0#5'TPage'#11'LinkingPage'#7'Caption'#6#11'LinkingPage'#11'ClientWidth' +'hkOptUncertain'#8'TabOrder'#2#5#0#0#0#0#5'TPage'#11'LinkingPage'#7'Caption'
+#3#155#2#12'ClientHeight'#3#197#1#0#9'TGroupBox'#16'grpLinkLibraries'#4'Left' +#6#11'LinkingPage'#11'ClientWidth'#3#155#2#12'ClientHeight'#3#197#1#0#9'TGro'
+#2#6#6'Height'#2'5'#3'Top'#3#233#0#5'Width'#3#143#2#5'Align'#7#5'alTop'#8'Au' +'upBox'#16'grpLinkLibraries'#4'Left'#2#6#6'Height'#2'5'#3'Top'#3#233#0#5'Wid'
+'toSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#16'grpLinkLibraries'#12 +'th'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7
+'ClientHeight'#2'"'#11'ClientWidth'#3#139#2#8'TabOrder'#2#0#0#9'TCheckBox'#12 +'Caption'#6#16'grpLinkLibraries'#12'ClientHeight'#2'"'#11'ClientWidth'#3#139
+'chkLinkSmart'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#6#5'Width'#3''#2#5'Align' +#2#8'TabOrder'#2#0#0#9'TCheckBox'#12'chkLinkSmart'#4'Left'#2#6#6'Height'#2#22
+#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#12'chkLinkSmart'#8'Tab' +#3'Top'#2#6#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6
+'Order'#2#0#0#0#0#9'TGroupBox'#21'TargetSpecificsGrpBox'#4'Left'#2#6#6'Heigh' +#7'Caption'#6#12'chkLinkSmart'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#21'TargetS'
+'t'#2'5'#3'Top'#3'$'#1#5'Width'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize'#9#20 +'pecificsGrpBox'#4'Left'#2#6#6'Height'#2'5'#3'Top'#3'$'#1#5'Width'#3#143#2#5
+'BorderSpacing.Around'#2#6#7'Caption'#6#21'TargetSpecificsGrpBox'#12'ClientH' +'Align'#7#5'alTop'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#21
+'eight'#2'"'#11'ClientWidth'#3#139#2#8'TabOrder'#2#1#0#9'TCheckBox'#18'chkWi' +'TargetSpecificsGrpBox'#12'ClientHeight'#2'"'#11'ClientWidth'#3#139#2#8'TabO'
+'n32GraphicApp'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#6#5'Width'#3''#2#5'Alig' +'rder'#2#1#0#9'TCheckBox'#18'chkWin32GraphicApp'#4'Left'#2#6#6'Height'#2#22#3
+'n'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#18'chkWin32GraphicA' +'Top'#2#6#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7
+'pp'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#10'grpOptions'#4'Left'#2#6#6'Height' +'Caption'#6#18'chkWin32GraphicApp'#8'TabOrder'#2#0#0#0#0#9'TGroupBox'#10'grp'
+#2'R'#3'Top'#3'_'#1#5'Width'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize'#9#20'Bo' +'Options'#4'Left'#2#6#6'Height'#2'R'#3'Top'#3'_'#1#5'Width'#3#143#2#5'Align'
+'rderSpacing.Around'#2#6#7'Caption'#6#10'grpOptions'#12'ClientHeight'#2'?'#11 +#7#5'alTop'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#10'grpOp'
+'ClientWidth'#3#139#2#8'TabOrder'#2#2#0#9'TCheckBox'#17'chkOptionsLinkOpt'#4 +'tions'#12'ClientHeight'#2'?'#11'ClientWidth'#3#139#2#8'TabOrder'#2#2#0#9'TC'
+'Left'#2#6#6'Height'#2#22#3'Top'#2#6#5'Width'#3''#2#5'Align'#7#5'alTop'#20 +'heckBox'#17'chkOptionsLinkOpt'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#6#5'Widt'
+'BorderSpacing.Around'#2#6#7'Caption'#6#17'chkOptionsLinkOpt'#8'TabOrder'#2#0 +'h'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#17
+#0#0#5'TEdit'#17'edtOptionsLinkOpt'#4'Left'#2#6#6'Height'#2#23#3'Top'#2'"'#5 +'chkOptionsLinkOpt'#8'TabOrder'#2#0#0#0#5'TEdit'#17'edtOptionsLinkOpt'#4'Lef'
+'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#8'TabOrder'#2 +'t'#2#6#6'Height'#2#23#3'Top'#2'"'#5'Width'#3''#2#5'Align'#7#5'alTop'#20'Bo'
+#1#4'Text'#6#17'edtOptionsLinkOpt'#0#0#0#9'TGroupBox'#12'grpDebugging'#4'Lef' +'rderSpacing.Around'#2#6#8'TabOrder'#2#1#4'Text'#6#17'edtOptionsLinkOpt'#0#0
+'t'#2#6#6'Height'#3#221#0#3'Top'#2#6#5'Width'#3#143#2#5'Align'#7#5'alTop'#8 +#0#9'TGroupBox'#12'grpDebugging'#4'Left'#2#6#6'Height'#3#221#0#3'Top'#2#6#5
,'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#12'grpDebugging'#12'C' ,'Width'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize'#9#20'BorderSpacing.Around'#2
+'lientHeight'#3#202#0#11'ClientWidth'#3#139#2#8'TabOrder'#2#3#0#9'TCheckBox' +#6#7'Caption'#6#12'grpDebugging'#12'ClientHeight'#3#202#0#11'ClientWidth'#3
+#11'chkDebugGDB'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#6#5'Width'#3''#2#5'Ali' +#139#2#8'TabOrder'#2#3#0#9'TCheckBox'#11'chkDebugGDB'#4'Left'#2#6#6'Height'#2
+'gn'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#11'chkDebugGDB'#8 +#22#3'Top'#2#6#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2
+'TabOrder'#2#0#0#0#9'TCheckBox'#11'chkDebugDBX'#4'Left'#2#6#6'Height'#2#22#3 +#6#7'Caption'#6#11'chkDebugGDB'#8'TabOrder'#2#0#0#0#9'TCheckBox'#11'chkDebug'
+'Top'#2'"'#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7 +'DBX'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'"'#5'Width'#3''#2#5'Align'#7#5'al'
+'Caption'#6#11'chkDebugDBX'#8'TabOrder'#2#1#0#0#9'TCheckBox'#18'chkUseLineIn' +'Top'#20'BorderSpacing.Around'#2#6#7'Caption'#6#11'chkDebugDBX'#8'TabOrder'#2
+'foUnit'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'>'#5'Width'#3''#2#5'Align'#7#5 +#1#0#0#9'TCheckBox'#18'chkUseLineInfoUnit'#4'Left'#2#6#6'Height'#2#22#3'Top'
+'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#18'chkUseLineInfoUnit'#8'T' +#2'>'#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Cap'
+'abOrder'#2#2#0#0#9'TCheckBox'#13'chkUseHeaptrc'#4'Left'#2#6#6'Height'#2#22#3 +'tion'#6#18'chkUseLineInfoUnit'#8'TabOrder'#2#2#0#0#9'TCheckBox'#13'chkUseHe'
+'Top'#2'Z'#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7 +'aptrc'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'Z'#5'Width'#3''#2#5'Align'#7#5
+'Caption'#6#13'chkUseHeaptrc'#8'TabOrder'#2#3#0#0#9'TCheckBox'#14'chkUseValg' +'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#13'chkUseHeaptrc'#8'TabOrd'
+'rind'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'v'#5'Width'#3''#2#5'Align'#7#5'a' +'er'#2#3#0#0#9'TCheckBox'#14'chkUseValgrind'#4'Left'#2#6#6'Height'#2#22#3'To'
+'lTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#14'chkUseValgrind'#8'TabOrd' +'p'#2'v'#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7
+'er'#2#4#0#0#9'TCheckBox'#15'chkGenGProfCode'#4'Left'#2#6#6'Height'#2#22#3'T' +'Caption'#6#14'chkUseValgrind'#8'TabOrder'#2#4#0#0#9'TCheckBox'#15'chkGenGPr'
+'op'#3#146#0#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6 +'ofCode'#4'Left'#2#6#6'Height'#2#22#3'Top'#3#146#0#5'Width'#3''#2#5'Align'#7
+#7'Caption'#6#15'chkGenGProfCode'#8'TabOrder'#2#5#0#0#9'TCheckBox'#15'chkSym' +#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#15'chkGenGProfCode'#8'Ta'
+'bolsStrip'#4'Left'#2#6#6'Height'#2#22#3'Top'#3#174#0#5'Width'#3''#2#5'Alig' +'bOrder'#2#5#0#0#9'TCheckBox'#15'chkSymbolsStrip'#4'Left'#2#6#6'Height'#2#22
+'n'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#15'chkSymbolsStrip' +#3'Top'#3#174#0#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'
+#8'TabOrder'#2#6#0#0#0#0#5'TPage'#7'MsgPage'#7'Caption'#6#7'MsgPage'#11'Clie' +#2#6#7'Caption'#6#15'chkSymbolsStrip'#8'TabOrder'#2#6#0#0#0#0#5'TPage'#7'Msg'
+'ntWidth'#3#155#2#12'ClientHeight'#3#197#1#0#11'TCheckGroup'#12'grpVerbosity' +'Page'#7'Caption'#6#7'MsgPage'#11'ClientWidth'#3#155#2#12'ClientHeight'#3#197
+#4'Left'#2#6#6'Height'#3#196#0#3'Top'#2#6#5'Width'#3#143#2#5'Align'#7#5'alTo' +#1#0#11'TCheckGroup'#12'grpVerbosity'#4'Left'#2#6#6'Height'#3#196#0#3'Top'#2
+'p'#8'AutoFill'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#12'grpVerbosity' +#6#5'Width'#3#143#2#5'Align'#7#5'alTop'#8'AutoFill'#9#20'BorderSpacing.Aroun'
+#28'ChildSizing.LeftRightSpacing'#2#6#28'ChildSizing.TopBottomSpacing'#2#6#29 +'d'#2#6#7'Caption'#6#12'grpVerbosity'#28'ChildSizing.LeftRightSpacing'#2#6#28
+'ChildSizing.EnlargeHorizontal'#7#24'crsHomogenousChildResize'#27'ChildSizin' +'ChildSizing.TopBottomSpacing'#2#6#29'ChildSizing.EnlargeHorizontal'#7#24'cr'
+'g.EnlargeVertical'#7#24'crsHomogenousChildResize'#28'ChildSizing.ShrinkHori' +'sHomogenousChildResize'#27'ChildSizing.EnlargeVertical'#7#24'crsHomogenousC'
+'zontal'#7#14'crsScaleChilds'#26'ChildSizing.ShrinkVertical'#7#14'crsScaleCh' +'hildResize'#28'ChildSizing.ShrinkHorizontal'#7#14'crsScaleChilds'#26'ChildS'
+'ilds'#18'ChildSizing.Layout'#7#29'cclLeftToRightThenTopToBottom'#27'ChildSi' +'izing.ShrinkVertical'#7#14'crsScaleChilds'#18'ChildSizing.Layout'#7#29'cclL'
+'zing.ControlsPerLine'#2#2#7'Columns'#2#2#8'TabOrder'#2#0#0#0#9'TGroupBox'#11 +'eftToRightThenTopToBottom'#27'ChildSizing.ControlsPerLine'#2#2#7'Columns'#2
+'grpErrorCnt'#4'Left'#2#6#6'Height'#2'6'#3'Top'#3#208#0#5'Width'#3#143#2#5'A' +#2#8'TabOrder'#2#0#0#0#9'TGroupBox'#11'grpErrorCnt'#4'Left'#2#6#6'Height'#2
+'lign'#7#5'alTop'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#11 +'6'#3'Top'#3#208#0#5'Width'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize'#9#20'Bor'
+'grpErrorCnt'#12'ClientHeight'#2'#'#11'ClientWidth'#3#139#2#8'TabOrder'#2#1#0 +'derSpacing.Around'#2#6#7'Caption'#6#11'grpErrorCnt'#12'ClientHeight'#2'#'#11
+#5'TEdit'#11'edtErrorCnt'#4'Left'#2#6#6'Height'#2#23#3'Top'#2#6#5'Width'#3'' +'ClientWidth'#3#139#2#8'TabOrder'#2#1#0#5'TEdit'#11'edtErrorCnt'#4'Left'#2#6
+#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#8'TabOrder'#2#0#4'Text'#6 +#6'Height'#2#23#3'Top'#2#6#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpac'
+#11'edtErrorCnt'#0#0#0#0#5'TPage'#9'OtherPage'#7'Caption'#6#9'OtherPage'#11 +'ing.Around'#2#6#8'TabOrder'#2#0#4'Text'#6#11'edtErrorCnt'#0#0#0#0#5'TPage'#9
+'ClientWidth'#3#155#2#12'ClientHeight'#3#197#1#0#9'TGroupBox'#13'grpConfigFi' +'OtherPage'#7'Caption'#6#9'OtherPage'#11'ClientWidth'#3#155#2#12'ClientHeigh'
+'le'#4'Left'#2#6#6'Height'#2'n'#3'Top'#2#6#5'Width'#3#143#2#5'Align'#7#5'alT' +'t'#3#197#1#0#9'TGroupBox'#13'grpConfigFile'#4'Left'#2#6#6'Height'#2'n'#3'To'
+'op'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#13'grpConfigFil' +'p'#2#6#5'Width'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize'#9#20'BorderSpacing.'
+'e'#12'ClientHeight'#2'['#11'ClientWidth'#3#139#2#8'TabOrder'#2#0#0#9'TCheck' +'Around'#2#6#7'Caption'#6#13'grpConfigFile'#12'ClientHeight'#2'['#11'ClientW'
+'Box'#13'chkConfigFile'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#6#5'Width'#3''#2 +'idth'#3#139#2#8'TabOrder'#2#0#0#9'TCheckBox'#13'chkConfigFile'#4'Left'#2#6#6
+#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#13'chkConfigF' +'Height'#2#22#3'Top'#2#6#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpacin'
+'ile'#8'TabOrder'#2#0#0#0#9'TCheckBox'#19'chkCustomConfigFile'#4'Left'#2#6#6 +'g.Around'#2#6#7'Caption'#6#13'chkConfigFile'#8'TabOrder'#2#0#0#0#9'TCheckBo'
+'Height'#2#22#3'Top'#2'"'#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderSpaci' +'x'#19'chkCustomConfigFile'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'"'#5'Width'#3
+'ng.Around'#2#6#7'Caption'#6#19'chkCustomConfigFile'#7'OnClick'#7#24'chkCust' +''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#19'chkCu'
+'omConfigFileClick'#8'TabOrder'#2#1#0#0#5'TEdit'#13'edtConfigPath'#4'Left'#2 +'stomConfigFile'#7'OnClick'#7#24'chkCustomConfigFileClick'#8'TabOrder'#2#1#0
+#6#6'Height'#2#23#3'Top'#2'>'#5'Width'#3''#2#5'Align'#7#5'alTop'#20'BorderS' +#0#5'TEdit'#13'edtConfigPath'#4'Left'#2#6#6'Height'#2#23#3'Top'#2'>'#5'Width'
+'pacing.Around'#2#6#8'TabOrder'#2#2#4'Text'#6#13'edtConfigPath'#0#0#0#9'TGro' +#3''#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#8'TabOrder'#2#2#4'T'
+'upBox'#16'grpCustomOptions'#4'Left'#2#6#6'Height'#3'E'#1#3'Top'#2'z'#5'Widt' +'ext'#6#13'edtConfigPath'#0#0#0#9'TGroupBox'#16'grpCustomOptions'#4'Left'#2#6
+'h'#3#143#2#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#7'Caption'#6 +#6'Height'#3'E'#1#3'Top'#2'z'#5'Width'#3#143#2#5'Align'#7#8'alClient'#20'Bor'
+#16'grpCustomOptions'#12'ClientHeight'#3'2'#1#11'ClientWidth'#3#139#2#8'TabO' +'derSpacing.Around'#2#6#7'Caption'#6#16'grpCustomOptions'#12'ClientHeight'#3
+'rder'#2#1#0#5'TMemo'#16'memCustomOptions'#4'Left'#2#6#6'Height'#3'&'#1#3'To' +'2'#1#11'ClientWidth'#3#139#2#8'TabOrder'#2#1#0#5'TMemo'#16'memCustomOptions'
+'p'#2#6#5'Width'#3''#2#5'Align'#7#8'alClient'#20'BorderSpacing.Around'#2#6#8 +#4'Left'#2#6#6'Height'#3'&'#1#3'Top'#2#6#5'Width'#3''#2#5'Align'#7#8'alClie'
+'TabOrder'#2#0#0#0#0#0#5'TPage'#13'InheritedPage'#7'Caption'#6#13'InheritedP' +'nt'#20'BorderSpacing.Around'#2#6#8'TabOrder'#2#0#0#0#0#0#5'TPage'#13'Inheri'
+'age'#11'ClientWidth'#3#155#2#12'ClientHeight'#3#197#1#0#6'TLabel'#12'InhNot' +'tedPage'#7'Caption'#6#13'InheritedPage'#11'ClientWidth'#3#155#2#12'ClientHe'
+'eLabel'#4'Left'#2#6#6'Height'#2#20#3'Top'#2#6#5'Width'#3#143#2#5'Align'#7#5 +'ight'#3#197#1#0#6'TLabel'#12'InhNoteLabel'#4'Left'#2#6#6'Height'#2#20#3'Top'
+'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#12'InhNoteLabel'#11'Parent' +#2#6#5'Width'#3#143#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Cap'
+'Color'#8#0#0#9'TTreeView'#11'InhTreeView'#4'Left'#2#6#6'Height'#3#247#0#3'T' +'tion'#6#12'InhNoteLabel'#11'ParentColor'#8#0#0#9'TTreeView'#11'InhTreeView'
+'op'#2' '#5'Width'#3#143#2#5'Align'#7#5'alTop'#18'BorderSpacing.Left'#2#6#19 +#4'Left'#2#6#6'Height'#3#247#0#3'Top'#2' '#5'Width'#3#143#2#5'Align'#7#5'alT'
+'BorderSpacing.Right'#2#6#17'DefaultItemHeight'#2#19#8'TabOrder'#2#0#18'OnSe' +'op'#18'BorderSpacing.Left'#2#6#19'BorderSpacing.Right'#2#6#17'DefaultItemHe'
+'lectionChanged'#7#27'InhTreeViewSelectionChanged'#0#0#5'TMemo'#11'InhItemMe' +'ight'#2#19#8'TabOrder'#2#0#18'OnSelectionChanged'#7#27'InhTreeViewSelection'
+'mo'#4'Left'#2#6#6'Height'#3#163#0#3'Top'#3#28#1#5'Width'#3#143#2#5'Align'#7 +'Changed'#0#0#5'TMemo'#11'InhItemMemo'#4'Left'#2#6#6'Height'#3#163#0#3'Top'#3
+#8'alClient'#18'BorderSpacing.Left'#2#6#19'BorderSpacing.Right'#2#6#20'Borde' +#28#1#5'Width'#3#143#2#5'Align'#7#8'alClient'#18'BorderSpacing.Left'#2#6#19
+'rSpacing.Bottom'#2#6#8'ReadOnly'#9#10'ScrollBars'#7#14'ssAutoVertical'#8'Ta' +'BorderSpacing.Right'#2#6#20'BorderSpacing.Bottom'#2#6#8'ReadOnly'#9#10'Scro'
+'bOrder'#2#1#0#0#9'TSplitter'#11'InhSplitter'#6'Cursor'#7#8'crVSplit'#6'Heig' +'llBars'#7#14'ssAutoVertical'#8'TabOrder'#2#1#0#0#9'TSplitter'#11'InhSplitte'
,'ht'#2#5#3'Top'#3#23#1#5'Width'#3#155#2#5'Align'#7#5'alTop'#12'ResizeAnchor' ,'r'#6'Cursor'#7#8'crVSplit'#6'Height'#2#5#3'Top'#3#23#1#5'Width'#3#155#2#5'A'
+#7#5'akTop'#0#0#0#5'TPage'#15'CompilationPage'#7'Caption'#6#15'CompilationPa' +'lign'#7#5'alTop'#12'ResizeAnchor'#7#5'akTop'#0#0#0#5'TPage'#15'CompilationP'
+'ge'#11'ClientWidth'#3#155#2#12'ClientHeight'#3#197#1#0#9'TCheckBox'#17'chkC' +'age'#7'Caption'#6#15'CompilationPage'#11'ClientWidth'#3#155#2#12'ClientHeig'
+'reateMakefile'#4'Left'#2#6#6'Height'#2#22#3'Top'#2#6#5'Width'#3#143#2#5'Ali' +'ht'#3#197#1#0#9'TCheckBox'#17'chkCreateMakefile'#4'Left'#2#6#6'Height'#2#22
+'gn'#7#5'alTop'#20'BorderSpacing.Around'#2#6#7'Caption'#6#17'chkCreateMakefi' +#3'Top'#2#6#5'Width'#3#143#2#5'Align'#7#5'alTop'#20'BorderSpacing.Around'#2#6
+'le'#8'TabOrder'#2#0#0#0#9'TGroupBox'#20'ExecuteAfterGroupBox'#4'Left'#2#6#6 +#7'Caption'#6#17'chkCreateMakefile'#8'TabOrder'#2#0#0#0#9'TGroupBox'#20'Exec'
+'Height'#2'l'#3'Top'#3#233#0#5'Width'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize' +'uteAfterGroupBox'#4'Left'#2#6#6'Height'#2'l'#3'Top'#3#233#0#5'Width'#3#143#2
+#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#20'ExecuteAfterGroupBox'#12'Cli' +#5'Align'#7#5'alTop'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6
+'entHeight'#2'Y'#11'ClientWidth'#3#139#2#8'TabOrder'#2#1#0#6'TLabel'#17'lblR' +#20'ExecuteAfterGroupBox'#12'ClientHeight'#2'Y'#11'ClientWidth'#3#139#2#8'Ta'
+'unIfExecAfter'#22'AnchorSideLeft.Control'#7#20'ExecuteAfterGroupBox'#21'Anc' +'bOrder'#2#1#0#6'TLabel'#17'lblRunIfExecAfter'#22'AnchorSideLeft.Control'#7
+'horSideTop.Control'#7#20'ExecuteAfterGroupBox'#4'Left'#2#6#6'Height'#2#20#3 +#20'ExecuteAfterGroupBox'#21'AnchorSideTop.Control'#7#20'ExecuteAfterGroupBo'
+'Top'#2#6#5'Width'#2'j'#20'BorderSpacing.Around'#2#6#7'Caption'#6#17'lblRunI' +'x'#4'Left'#2#6#6'Height'#2#20#3'Top'#2#6#5'Width'#2'j'#20'BorderSpacing.Aro'
+'fExecAfter'#11'ParentColor'#8#0#0#6'TLabel'#24'ExecuteAfterCommandLabel'#22 +'und'#2#6#7'Caption'#6#17'lblRunIfExecAfter'#11'ParentColor'#8#0#0#6'TLabel'
+'AnchorSideLeft.Control'#7#20'ExecuteAfterGroupBox'#21'AnchorSideTop.Control' +#24'ExecuteAfterCommandLabel'#22'AnchorSideLeft.Control'#7#20'ExecuteAfterGr'
+#7#17'lblRunIfExecAfter'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6 +'oupBox'#21'AnchorSideTop.Control'#7#17'lblRunIfExecAfter'#18'AnchorSideTop.'
+'Height'#2#20#3'Top'#2' '#5'Width'#3#184#0#20'BorderSpacing.Around'#2#6#7'Ca' +'Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#20#3'Top'#2' '#5'Width'#3#184#0
+'ption'#6#24'ExecuteAfterCommandLabel'#11'ParentColor'#8#0#0#9'TCheckBox'#19 +#20'BorderSpacing.Around'#2#6#7'Caption'#6#24'ExecuteAfterCommandLabel'#11'P'
+'chkExecAfterCompile'#22'AnchorSideLeft.Control'#7#17'lblRunIfExecAfter'#19 +'arentColor'#8#0#0#9'TCheckBox'#19'chkExecAfterCompile'#22'AnchorSideLeft.Co'
+'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#20'ExecuteA' +'ntrol'#7#17'lblRunIfExecAfter'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'An'
+'fterGroupBox'#4'Left'#3#142#0#6'Height'#2#22#3'Top'#2#6#5'Width'#3#159#0#18 +'chorSideTop.Control'#7#20'ExecuteAfterGroupBox'#4'Left'#3#142#0#6'Height'#2
+'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#19'chkEx' +#22#3'Top'#2#6#5'Width'#3#159#0#18'BorderSpacing.Left'#2#24#20'BorderSpacing'
+'ecAfterCompile'#8'TabOrder'#2#0#0#0#9'TCheckBox'#17'chkExecAfterBuild'#22'A' +'.Around'#2#6#7'Caption'#6#19'chkExecAfterCompile'#8'TabOrder'#2#0#0#0#9'TCh'
+'nchorSideLeft.Control'#7#19'chkExecAfterCompile'#19'AnchorSideLeft.Side'#7#9 +'eckBox'#17'chkExecAfterBuild'#22'AnchorSideLeft.Control'#7#19'chkExecAfterC'
+'asrBottom'#21'AnchorSideTop.Control'#7#20'ExecuteAfterGroupBox'#4'Left'#3'K' +'ompile'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7
+#1#6'Height'#2#22#3'Top'#2#6#5'Width'#3#138#0#18'BorderSpacing.Left'#2#24#20 +#20'ExecuteAfterGroupBox'#4'Left'#3'K'#1#6'Height'#2#22#3'Top'#2#6#5'Width'#3
+'BorderSpacing.Around'#2#6#7'Caption'#6#17'chkExecAfterBuild'#8'TabOrder'#2#1 +#138#0#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6
+#0#0#9'TCheckBox'#15'chkExecAfterRun'#22'AnchorSideLeft.Control'#7#17'chkExe' +#17'chkExecAfterBuild'#8'TabOrder'#2#1#0#0#9'TCheckBox'#15'chkExecAfterRun'
+'cAfterBuild'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Contro' +#22'AnchorSideLeft.Control'#7#17'chkExecAfterBuild'#19'AnchorSideLeft.Side'#7
+'l'#7#20'ExecuteAfterGroupBox'#4'Left'#3#243#1#6'Height'#2#22#3'Top'#2#6#5'W' +#9'asrBottom'#21'AnchorSideTop.Control'#7#20'ExecuteAfterGroupBox'#4'Left'#3
+'idth'#3#130#0#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Ca' +#243#1#6'Height'#2#22#3'Top'#2#6#5'Width'#3#130#0#18'BorderSpacing.Left'#2#24
+'ption'#6#15'chkExecAfterRun'#8'TabOrder'#2#2#0#0#5'TEdit'#23'ExecuteAfterCo' +#20'BorderSpacing.Around'#2#6#7'Caption'#6#15'chkExecAfterRun'#8'TabOrder'#2
+'mmandEdit'#22'AnchorSideLeft.Control'#7#24'ExecuteAfterCommandLabel'#19'Anc' +#2#0#0#5'TEdit'#23'ExecuteAfterCommandEdit'#22'AnchorSideLeft.Control'#7#24
+'horSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#17'lblRunIfExe' +'ExecuteAfterCommandLabel'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorS'
+'cAfter'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7 +'ideTop.Control'#7#17'lblRunIfExecAfter'#18'AnchorSideTop.Side'#7#9'asrBotto'
+#20'ExecuteAfterGroupBox'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3 +'m'#23'AnchorSideRight.Control'#7#20'ExecuteAfterGroupBox'#20'AnchorSideRigh'
+#208#0#6'Height'#2#23#3'Top'#2' '#5'Width'#3#181#1#7'Anchors'#11#5'akTop'#6 +'t.Side'#7#9'asrBottom'#4'Left'#3#208#0#6'Height'#2#23#3'Top'#2' '#5'Width'#3
+'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#12#20'BorderSpacing.Around'#2 +#181#1#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2
+#6#8'TabOrder'#2#3#4'Text'#6#23'ExecuteAfterCommandEdit'#0#0#9'TCheckBox'#27 +#12#20'BorderSpacing.Around'#2#6#8'TabOrder'#2#3#4'Text'#6#23'ExecuteAfterCo'
+'ExecuteAfterScanFPCCheckBox'#22'AnchorSideLeft.Control'#7#28'ExecuteAfterSc' +'mmandEdit'#0#0#9'TCheckBox'#27'ExecuteAfterScanFPCCheckBox'#22'AnchorSideLe'
+'anMakeCheckBox'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Con' +'ft.Control'#7#28'ExecuteAfterScanMakeCheckBox'#19'AnchorSideLeft.Side'#7#9
+'trol'#7#23'ExecuteAfterCommandEdit'#18'AnchorSideTop.Side'#7#9'asrBottom'#4 +'asrBottom'#21'AnchorSideTop.Control'#7#23'ExecuteAfterCommandEdit'#18'Ancho'
+'Left'#3#15#1#6'Height'#2#22#3'Top'#2'='#5'Width'#3#225#0#18'BorderSpacing.L' +'rSideTop.Side'#7#9'asrBottom'#4'Left'#3#15#1#6'Height'#2#22#3'Top'#2'='#5'W'
+'eft'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#27'ExecuteAfterScanFPCC' +'idth'#3#225#0#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Ca'
+'heckBox'#8'TabOrder'#2#4#0#0#9'TCheckBox'#28'ExecuteAfterScanMakeCheckBox' +'ption'#6#27'ExecuteAfterScanFPCCheckBox'#8'TabOrder'#2#4#0#0#9'TCheckBox'#28
+#22'AnchorSideLeft.Control'#7#20'ExecuteAfterGroupBox'#21'AnchorSideTop.Cont' +'ExecuteAfterScanMakeCheckBox'#22'AnchorSideLeft.Control'#7#20'ExecuteAfterG'
+'rol'#7#23'ExecuteAfterCommandEdit'#18'AnchorSideTop.Side'#7#9'asrBottom'#4 +'roupBox'#21'AnchorSideTop.Control'#7#23'ExecuteAfterCommandEdit'#18'AnchorS'
+'Left'#2#6#6'Height'#2#22#3'Top'#2'='#5'Width'#3#235#0#20'BorderSpacing.Arou' +'ideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'='#5'Width'
+'nd'#2#6#7'Caption'#6#28'ExecuteAfterScanMakeCheckBox'#8'TabOrder'#2#5#0#0#9 +#3#235#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#28'ExecuteAfterScanMakeCh'
+'TCheckBox'#27'ExecuteAfterShowAllCheckBox'#22'AnchorSideLeft.Control'#7#27 +'eckBox'#8'TabOrder'#2#5#0#0#9'TCheckBox'#27'ExecuteAfterShowAllCheckBox'#22
+'ExecuteAfterScanFPCCheckBox'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'Anch' +'AnchorSideLeft.Control'#7#27'ExecuteAfterScanFPCCheckBox'#19'AnchorSideLeft'
+'orSideTop.Control'#7#23'ExecuteAfterCommandEdit'#18'AnchorSideTop.Side'#7#9 +'.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#23'ExecuteAfterCommandEdi'
+'asrBottom'#4'Left'#3#14#2#6'Height'#2#22#3'Top'#2'='#5'Width'#3#218#0#18'Bo' +'t'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#3#14#2#6'Height'#2#22#3'To'
+'rderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#27'Execute' +'p'#2'='#5'Width'#3#218#0#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Aroun'
+'AfterShowAllCheckBox'#8'TabOrder'#2#6#0#0#0#9'TGroupBox'#11'grpCompiler'#4 +'d'#2#6#7'Caption'#6#27'ExecuteAfterShowAllCheckBox'#8'TabOrder'#2#6#0#0#0#9
+'Left'#2#6#6'Height'#2'O'#3'Top'#3#148#0#5'Width'#3#143#2#5'Align'#7#5'alTop' +'TGroupBox'#11'grpCompiler'#4'Left'#2#6#6'Height'#2'O'#3'Top'#3#148#0#5'Widt'
+#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#11'grpCompiler'#12 +'h'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7
+'ClientHeight'#2'<'#11'ClientWidth'#3#139#2#8'TabOrder'#2#2#0#6'TLabel'#16'l' +'Caption'#6#11'grpCompiler'#12'ClientHeight'#2'<'#11'ClientWidth'#3#139#2#8
+'blRunIfCompiler'#22'AnchorSideLeft.Control'#7#11'grpCompiler'#21'AnchorSide' +'TabOrder'#2#2#0#6'TLabel'#16'lblRunIfCompiler'#22'AnchorSideLeft.Control'#7
+'Top.Control'#7#11'grpCompiler'#4'Left'#2#6#6'Height'#2#20#3'Top'#2#6#5'Widt' +#11'grpCompiler'#21'AnchorSideTop.Control'#7#11'grpCompiler'#4'Left'#2#6#6'H'
+'h'#2'f'#20'BorderSpacing.Around'#2#6#7'Caption'#6#16'lblRunIfCompiler'#11'P' +'eight'#2#20#3'Top'#2#6#5'Width'#2'f'#20'BorderSpacing.Around'#2#6#7'Caption'
+'arentColor'#8#0#0#6'TLabel'#11'lblCompiler'#22'AnchorSideLeft.Control'#7#11 +#6#16'lblRunIfCompiler'#11'ParentColor'#8#0#0#6'TLabel'#11'lblCompiler'#22'A'
+'grpCompiler'#21'AnchorSideTop.Control'#7#16'lblRunIfCompiler'#18'AnchorSide' +'nchorSideLeft.Control'#7#11'grpCompiler'#21'AnchorSideTop.Control'#7#16'lbl'
+'Top.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#20#3'Top'#2' '#5'Width'#2 +'RunIfCompiler'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2
+'H'#18'BorderSpacing.Left'#2#6#17'BorderSpacing.Top'#2#6#19'BorderSpacing.Ri' +#20#3'Top'#2' '#5'Width'#2'H'#18'BorderSpacing.Left'#2#6#17'BorderSpacing.To'
,'ght'#2#6#20'BorderSpacing.Bottom'#2#6#7'Caption'#6#11'lblCompiler'#11'Paren' ,'p'#2#6#19'BorderSpacing.Right'#2#6#20'BorderSpacing.Bottom'#2#6#7'Caption'#6
+'tColor'#8#0#0#9'TCheckBox'#18'chkCompilerCompile'#22'AnchorSideLeft.Control' +#11'lblCompiler'#11'ParentColor'#8#0#0#9'TCheckBox'#18'chkCompilerCompile'#22
+#7#16'lblRunIfCompiler'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSide' +'AnchorSideLeft.Control'#7#16'lblRunIfCompiler'#19'AnchorSideLeft.Side'#7#9
+'Top.Control'#7#11'grpCompiler'#4'Left'#3#138#0#6'Height'#2#22#3'Top'#2#6#5 +'asrBottom'#21'AnchorSideTop.Control'#7#11'grpCompiler'#4'Left'#3#138#0#6'He'
+'Width'#3#155#0#18'BorderSpacing.Left'#2#30#17'BorderSpacing.Top'#2#6#7'Capt' +'ight'#2#22#3'Top'#2#6#5'Width'#3#155#0#18'BorderSpacing.Left'#2#30#17'Borde'
+'ion'#6#18'chkCompilerCompile'#8'TabOrder'#2#0#0#0#9'TCheckBox'#16'chkCompil' +'rSpacing.Top'#2#6#7'Caption'#6#18'chkCompilerCompile'#8'TabOrder'#2#0#0#0#9
+'erBuild'#22'AnchorSideLeft.Control'#7#18'chkCompilerCompile'#19'AnchorSideL' +'TCheckBox'#16'chkCompilerBuild'#22'AnchorSideLeft.Control'#7#18'chkCompiler'
+'eft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#11'grpCompiler'#4'Left' +'Compile'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7
+#3'C'#1#6'Height'#2#22#3'Top'#2#6#5'Width'#3#134#0#18'BorderSpacing.Left'#2 +#11'grpCompiler'#4'Left'#3'C'#1#6'Height'#2#22#3'Top'#2#6#5'Width'#3#134#0#18
+#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#16'chkCompilerBuild'#8'TabOrde' +'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#16'chkCo'
+'r'#2#1#0#0#9'TCheckBox'#14'chkCompilerRun'#22'AnchorSideLeft.Control'#7#16 +'mpilerBuild'#8'TabOrder'#2#1#0#0#9'TCheckBox'#14'chkCompilerRun'#22'AnchorS'
+'chkCompilerBuild'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.C' +'ideLeft.Control'#7#16'chkCompilerBuild'#19'AnchorSideLeft.Side'#7#9'asrBott'
+'ontrol'#7#11'grpCompiler'#4'Left'#3#231#1#6'Height'#2#22#3'Top'#2#6#5'Width' +'om'#21'AnchorSideTop.Control'#7#11'grpCompiler'#4'Left'#3#231#1#6'Height'#2
+#2'~'#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6 +#22#3'Top'#2#6#5'Width'#2'~'#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Ar'
+#14'chkCompilerRun'#8'TabOrder'#2#2#0#0#5'TEdit'#11'edtCompiler'#22'AnchorSi' +'ound'#2#6#7'Caption'#6#14'chkCompilerRun'#8'TabOrder'#2#2#0#0#5'TEdit'#11'e'
+'deLeft.Control'#7#11'lblCompiler'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21 +'dtCompiler'#22'AnchorSideLeft.Control'#7#11'lblCompiler'#19'AnchorSideLeft.'
+'AnchorSideTop.Control'#7#11'lblCompiler'#18'AnchorSideTop.Side'#7#9'asrCent' +'Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#11'lblCompiler'#18'AnchorS'
+'er'#23'AnchorSideRight.Control'#7#11'grpCompiler'#20'AnchorSideRight.Side'#7 +'ideTop.Side'#7#9'asrCenter'#23'AnchorSideRight.Control'#7#11'grpCompiler'#20
+#9'asrBottom'#4'Left'#2'`'#6'Height'#2#23#3'Top'#2#31#5'Width'#3'%'#2#7'Anch' +'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#2'`'#6'Height'#2#23#3'Top'#2#31
+'ors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#12#20'Bord' +#5'Width'#3'%'#2#7'Anchors'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpac'
+'erSpacing.Around'#2#6#8'TabOrder'#2#3#4'Text'#6#11'edtCompiler'#0#0#0#9'TGr' +'ing.Left'#2#12#20'BorderSpacing.Around'#2#6#8'TabOrder'#2#3#4'Text'#6#11'ed'
+'oupBox'#21'ExecuteBeforeGroupBox'#4'Left'#2#6#6'Height'#2'l'#3'Top'#2'"'#5 +'tCompiler'#0#0#0#9'TGroupBox'#21'ExecuteBeforeGroupBox'#4'Left'#2#6#6'Heigh'
+'Width'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize'#9#20'BorderSpacing.Around'#2 +'t'#2'l'#3'Top'#2'"'#5'Width'#3#143#2#5'Align'#7#5'alTop'#8'AutoSize'#9#20'B'
+#6#7'Caption'#6#21'ExecuteBeforeGroupBox'#12'ClientHeight'#2'Y'#11'ClientWid' +'orderSpacing.Around'#2#6#7'Caption'#6#21'ExecuteBeforeGroupBox'#12'ClientHe'
+'th'#3#139#2#8'TabOrder'#2#3#0#6'TLabel'#18'lblRunIfExecBefore'#22'AnchorSid' +'ight'#2'Y'#11'ClientWidth'#3#139#2#8'TabOrder'#2#3#0#6'TLabel'#18'lblRunIfE'
+'eLeft.Control'#7#21'ExecuteBeforeGroupBox'#21'AnchorSideTop.Control'#7#21'E' +'xecBefore'#22'AnchorSideLeft.Control'#7#21'ExecuteBeforeGroupBox'#21'Anchor'
+'xecuteBeforeGroupBox'#4'Left'#2#6#6'Height'#2#20#3'Top'#2#6#5'Width'#2'u'#20 +'SideTop.Control'#7#21'ExecuteBeforeGroupBox'#4'Left'#2#6#6'Height'#2#20#3'T'
+'BorderSpacing.Around'#2#6#7'Caption'#6#18'lblRunIfExecBefore'#11'ParentColo' +'op'#2#6#5'Width'#2'u'#20'BorderSpacing.Around'#2#6#7'Caption'#6#18'lblRunIf'
+'r'#8#0#0#6'TLabel'#25'ExecuteBeforeCommandLabel'#22'AnchorSideLeft.Control' +'ExecBefore'#11'ParentColor'#8#0#0#6'TLabel'#25'ExecuteBeforeCommandLabel'#22
+#7#21'ExecuteBeforeGroupBox'#21'AnchorSideTop.Control'#7#18'lblRunIfExecBefo' +'AnchorSideLeft.Control'#7#21'ExecuteBeforeGroupBox'#21'AnchorSideTop.Contro'
+'re'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#20#3'Top' +'l'#7#18'lblRunIfExecBefore'#18'AnchorSideTop.Side'#7#9'asrBottom'#4'Left'#2
+#2' '#5'Width'#3#195#0#20'BorderSpacing.Around'#2#6#7'Caption'#6#25'ExecuteB' +#6#6'Height'#2#20#3'Top'#2' '#5'Width'#3#195#0#20'BorderSpacing.Around'#2#6#7
+'eforeCommandLabel'#11'ParentColor'#8#0#0#9'TCheckBox'#20'chkExecBeforeCompi' +'Caption'#6#25'ExecuteBeforeCommandLabel'#11'ParentColor'#8#0#0#9'TCheckBox'
+'le'#22'AnchorSideLeft.Control'#7#18'lblRunIfExecBefore'#19'AnchorSideLeft.S' +#20'chkExecBeforeCompile'#22'AnchorSideLeft.Control'#7#18'lblRunIfExecBefore'
+'ide'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#21'ExecuteBeforeGroupBox'#4 +#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#21'Execu'
+'Left'#3#153#0#6'Height'#2#22#3'Top'#2#6#5'Width'#3#170#0#18'BorderSpacing.L' +'teBeforeGroupBox'#4'Left'#3#153#0#6'Height'#2#22#3'Top'#2#6#5'Width'#3#170#0
+'eft'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#20'chkExecBeforeCompile' +#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#20'ch'
+#8'TabOrder'#2#0#0#0#9'TCheckBox'#18'chkExecBeforeBuild'#22'AnchorSideLeft.C' +'kExecBeforeCompile'#8'TabOrder'#2#0#0#0#9'TCheckBox'#18'chkExecBeforeBuild'
+'ontrol'#7#20'chkExecBeforeCompile'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21 +#22'AnchorSideLeft.Control'#7#20'chkExecBeforeCompile'#19'AnchorSideLeft.Sid'
+'AnchorSideTop.Control'#7#21'ExecuteBeforeGroupBox'#4'Left'#3'a'#1#6'Height' +'e'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#21'ExecuteBeforeGroupBox'#4'L'
+#2#22#3'Top'#2#6#5'Width'#3#149#0#18'BorderSpacing.Left'#2#24#20'BorderSpaci' +'eft'#3'a'#1#6'Height'#2#22#3'Top'#2#6#5'Width'#3#149#0#18'BorderSpacing.Lef'
+'ng.Around'#2#6#7'Caption'#6#18'chkExecBeforeBuild'#8'TabOrder'#2#1#0#0#9'TC' +'t'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#18'chkExecBeforeBuild'#8
+'heckBox'#16'chkExecBeforeRun'#22'AnchorSideLeft.Control'#7#18'chkExecBefore' +'TabOrder'#2#1#0#0#9'TCheckBox'#16'chkExecBeforeRun'#22'AnchorSideLeft.Contr'
+'Build'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#21 +'ol'#7#18'chkExecBeforeBuild'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'Anch'
+'ExecuteBeforeGroupBox'#4'Left'#3#20#2#6'Height'#2#22#3'Top'#2#6#5'Width'#3 +'orSideTop.Control'#7#21'ExecuteBeforeGroupBox'#4'Left'#3#20#2#6'Height'#2#22
+#141#0#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6 +#3'Top'#2#6#5'Width'#3#141#0#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Ar'
+#16'chkExecBeforeRun'#8'TabOrder'#2#2#0#0#5'TEdit'#24'ExecuteBeforeCommandEd' +'ound'#2#6#7'Caption'#6#16'chkExecBeforeRun'#8'TabOrder'#2#2#0#0#5'TEdit'#24
+'it'#22'AnchorSideLeft.Control'#7#25'ExecuteBeforeCommandLabel'#19'AnchorSid' +'ExecuteBeforeCommandEdit'#22'AnchorSideLeft.Control'#7#25'ExecuteBeforeComm'
+'eLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7#18'lblRunIfExecBefor' +'andLabel'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Control'#7
+'e'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideRight.Control'#7#21'E' +#18'lblRunIfExecBefore'#18'AnchorSideTop.Side'#7#9'asrBottom'#23'AnchorSideR'
+'xecuteBeforeGroupBox'#20'AnchorSideRight.Side'#7#9'asrBottom'#4'Left'#3#219 +'ight.Control'#7#21'ExecuteBeforeGroupBox'#20'AnchorSideRight.Side'#7#9'asrB'
+#0#6'Height'#2#23#3'Top'#2' '#5'Width'#3#170#1#7'Anchors'#11#5'akTop'#6'akLe' +'ottom'#4'Left'#3#219#0#6'Height'#2#23#3'Top'#2' '#5'Width'#3#170#1#7'Anchor'
+'ft'#7'akRight'#0#18'BorderSpacing.Left'#2#12#20'BorderSpacing.Around'#2#6#8 +'s'#11#5'akTop'#6'akLeft'#7'akRight'#0#18'BorderSpacing.Left'#2#12#20'Border'
+'TabOrder'#2#3#4'Text'#6#24'ExecuteBeforeCommandEdit'#0#0#9'TCheckBox'#28'Ex' +'Spacing.Around'#2#6#8'TabOrder'#2#3#4'Text'#6#24'ExecuteBeforeCommandEdit'#0
+'ecuteBeforeScanFPCCheckBox'#22'AnchorSideLeft.Control'#7#29'ExecuteBeforeSc' +#0#9'TCheckBox'#28'ExecuteBeforeScanFPCCheckBox'#22'AnchorSideLeft.Control'#7
+'anMakeCheckBox'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'AnchorSideTop.Con' +#29'ExecuteBeforeScanMakeCheckBox'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21
+'trol'#7#24'ExecuteBeforeCommandEdit'#18'AnchorSideTop.Side'#7#9'asrBottom'#4 +'AnchorSideTop.Control'#7#24'ExecuteBeforeCommandEdit'#18'AnchorSideTop.Side'
+'Left'#3#26#1#6'Height'#2#22#3'Top'#2'='#5'Width'#3#236#0#18'BorderSpacing.L' +#7#9'asrBottom'#4'Left'#3#26#1#6'Height'#2#22#3'Top'#2'='#5'Width'#3#236#0#18
+'eft'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#28'ExecuteBeforeScanFPC'
+'CheckBox'#8'TabOrder'#2#4#0#0#9'TCheckBox'#29'ExecuteBeforeScanMakeCheckBox'
+#22'AnchorSideLeft.Control'#7#21'ExecuteBeforeGroupBox'#21'AnchorSideTop.Con'
+'trol'#7#24'ExecuteBeforeCommandEdit'#18'AnchorSideTop.Side'#7#9'asrBottom'#4
+'Left'#2#6#6'Height'#2#22#3'Top'#2'='#5'Width'#3#246#0#20'BorderSpacing.Arou'
+'nd'#2#6#7'Caption'#6#29'ExecuteBeforeScanMakeCheckBox'#8'TabOrder'#2#5#0#0#9
,'TCheckBox'#28'ExecuteBeforeShowAllCheckBox'#22'AnchorSideLeft.Control'#7#28
+'ExecuteBeforeScanFPCCheckBox'#19'AnchorSideLeft.Side'#7#9'asrBottom'#21'Anc'
+'horSideTop.Control'#7#24'ExecuteBeforeCommandEdit'#18'AnchorSideTop.Side'#7
+#9'asrBottom'#4'Left'#3'$'#2#6'Height'#2#22#3'Top'#2'='#5'Width'#3#229#0#18
+'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#28'Execu' +'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'Caption'#6#28'Execu'
+'teBeforeShowAllCheckBox'#8'TabOrder'#2#6#0#0#0#0#0#6'TPanel'#8'BtnPanel'#6 +'teBeforeScanFPCCheckBox'#8'TabOrder'#2#4#0#0#9'TCheckBox'#29'ExecuteBeforeS'
+'Height'#2'0'#3'Top'#3#224#1#5'Width'#3#157#2#5'Align'#7#8'alBottom'#8'AutoS' +'canMakeCheckBox'#22'AnchorSideLeft.Control'#7#21'ExecuteBeforeGroupBox'#21
+'ize'#9#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'0'#11'ClientWidth'#3 +'AnchorSideTop.Control'#7#24'ExecuteBeforeCommandEdit'#18'AnchorSideTop.Side'
+#157#2#8'TabOrder'#2#1#0#7'TBitBtn'#10'HelpButton'#21'AnchorSideBottom.Side' +#7#9'asrBottom'#4'Left'#2#6#6'Height'#2#22#3'Top'#2'='#5'Width'#3#246#0#20'B'
+#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'$'#3'Top'#2#6#5'Width'#2'K'#5'Align' +'orderSpacing.Around'#2#6#7'Caption'#6#29'ExecuteBeforeScanMakeCheckBox'#8'T'
+#7#6'alLeft'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#5'&Help' ,'abOrder'#2#5#0#0#9'TCheckBox'#28'ExecuteBeforeShowAllCheckBox'#22'AnchorSid'
+#21'Constraints.MinHeight'#2#25#20'Constraints.MinWidth'#2'K'#4'Kind'#7#6'bk' +'eLeft.Control'#7#28'ExecuteBeforeScanFPCCheckBox'#19'AnchorSideLeft.Side'#7
+'Help'#9'NumGlyphs'#2#0#7'OnClick'#7#15'HelpButtonClick'#8'TabOrder'#2#0#0#0 +#9'asrBottom'#21'AnchorSideTop.Control'#7#24'ExecuteBeforeCommandEdit'#18'An'
+#7'TBitBtn'#14'btnShowOptions'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Le' +'chorSideTop.Side'#7#9'asrBottom'#4'Left'#3'$'#2#6'Height'#2#22#3'Top'#2'='#5
+'ft'#3#161#0#6'Height'#2'$'#3'Top'#2#6#5'Width'#3#135#0#5'Align'#7#7'alRight' +'Width'#3#229#0#18'BorderSpacing.Left'#2#24#20'BorderSpacing.Around'#2#6#7'C'
+#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#14'btnShowOptions' +'aption'#6#28'ExecuteBeforeShowAllCheckBox'#8'TabOrder'#2#6#0#0#0#0#0#6'TPan'
+#21'Constraints.MinHeight'#2#25#20'Constraints.MinWidth'#2'K'#10'Glyph.Data' +'el'#8'BtnPanel'#6'Height'#2'0'#3'Top'#3#224#1#5'Width'#3#157#2#5'Align'#7#8
+#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0 +'alBottom'#8'AutoSize'#9#10'BevelOuter'#7#6'bvNone'#12'ClientHeight'#2'0'#11
+#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#4'_'#205#255#4'_' +'ClientWidth'#3#157#2#8'TabOrder'#2#1#0#7'TBitBtn'#10'HelpButton'#21'AnchorS'
+#205#255#4'_'#205#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0 +'ideBottom.Side'#7#9'asrBottom'#4'Left'#2#6#6'Height'#2'$'#3'Top'#2#6#5'Widt'
+#255#255#255#0'{'#196#232#255#133#165#188#255#255#255#255#0#255#255#255#0#255 +'h'#2'K'#5'Align'#7#6'alLeft'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'C'
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#4'_'#205#255'7'#149#247 +'aption'#6#5'&Help'#21'Constraints.MinHeight'#2#25#20'Constraints.MinWidth'#2
+#255'7'#149#247#255#4'_'#205#255#225#227#226#255#185#187#186#255#185#187#186 +'K'#4'Kind'#7#6'bkHelp'#9'NumGlyphs'#2#0#7'OnClick'#7#15'HelpButtonClick'#8
+#255'{'#196#232#255'{'#196#232#255#133#165#188#255#133#165#188#255#225#227 +'TabOrder'#2#0#0#0#7'TBitBtn'#14'btnShowOptions'#21'AnchorSideBottom.Side'#7
+#226#255#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#4'_'#205#255 +#9'asrBottom'#4'Left'#3#161#0#6'Height'#2'$'#3'Top'#2#6#5'Width'#3#135#0#5'A'
+'7'#149#247#255'7'#149#247#255'7'#149#247#255#4'_'#205#255#185#187#186#255'{' +'lign'#7#7'alRight'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6
+#196#232#255'{'#196#232#255'{'#196#232#255#133#165#188#255#133#165#188#255 +#14'btnShowOptions'#21'Constraints.MinHeight'#2#25#20'Constraints.MinWidth'#2
+#133#165#188#255#185#187#186#255#225#227#226#255#255#255#255#0#255#255#255#0 +'K'#10'Glyph.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0
+#255#255#255#0#4'_'#205#255'7'#149#247#255'7'#149#247#255'7'#149#247#255#4'_' +#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0
+#205#255'{'#196#232#255'{'#196#232#255#174#228#253#255#174#228#253#255#133 +#4'_'#205#255#4'_'#205#255#4'_'#205#255#255#255#255#0#255#255#255#0#255#255
+#165#188#255#133#165#188#255#185#187#186#255#185#187#186#255#255#255#255#0 +#255#0#255#255#255#0#255#255#255#0'{'#196#232#255#133#165#188#255#255#255#255
+#255#255#255#0#255#255#255#0#225#227#226#255#4'_'#205#255'7'#149#247#255#4'_' +#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#4'_'
+#205#255#0#0#0#255#0#0#0#255'jjj'#255#170#228#251#255#174#228#253#255#174#228 +#205#255'7'#149#247#255'7'#149#247#255#4'_'#205#255#225#227#226#255#185#187
+#253#255#133#165#188#255#225#227#226#255#185#187#186#255#225#227#226#255#255 +#186#255#185#187#186#255'{'#196#232#255'{'#196#232#255#133#165#188#255#133
+#255#255#0#255#255#255#0#185#187#186#255#185#187#186#255#4'_'#205#255#0#0#0 +#165#188#255#225#227#226#255#255#255#255#0#255#255#255#0#255#255#255#0#255
+#255#213#213#213#255#187#187#187#255#0#0#0#255#0#0#0#255#0#0#0#255#174#228 +#255#255#0#4'_'#205#255'7'#149#247#255'7'#149#247#255'7'#149#247#255#4'_'#205
+#253#255#174#228#253#255#255#255#255#0#185#187#186#255#185#187#186#255#255 +#255#185#187#186#255'{'#196#232#255'{'#196#232#255'{'#196#232#255#133#165#188
+#255#255#0#255#255#255#0#185#187#186#255#192#140#134#255#205#147#138#255#0#0 +#255#133#165#188#255#133#165#188#255#185#187#186#255#225#227#226#255#255#255
+#0#255#203#203#203#255#210#210#210#255#201#201#201#255#210#210#210#255#198 +#255#0#255#255#255#0#255#255#255#0#4'_'#205#255'7'#149#247#255'7'#149#247#255
+#198#198#255#0#0#0#255#236#245#252'_'#255#255#255#0#225#227#226#255#185#187 +'7'#149#247#255#4'_'#205#255'{'#196#232#255'{'#196#232#255#174#228#253#255
+#186#255#255#255#255#0#255#255#255#0#185#128'x'#255#211#147#140#255#211#155 +#174#228#253#255#133#165#188#255#133#165#188#255#185#187#186#255#185#187#186
+#149#255'jjj'#255#0#0#0#255#214#214#214#255#0#0#0#255#0#0#0#255#192#192#192 +#255#255#255#255#0#255#255#255#0#255#255#255#0#225#227#226#255#4'_'#205#255
+#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#185#187#186#255#255 +'7'#149#247#255#4'_'#205#255#0#0#0#255#0#0#0#255'jjj'#255#170#228#251#255#174
+#255#255#0#174#128'w'#255#205#147#139#255#215#165#160#255#220#175#171#255#226 +#228#253#255#174#228#253#255#133#165#188#255#225#227#226#255#185#187#186#255
+#187#183#255#0#0#0#255#230#230#230#255#0#0#0#255#249#249#250#0#0#0#0#255'jjj' +#225#227#226#255#255#255#255#0#255#255#255#0#185#187#186#255#185#187#186#255
+#255#128#133#173#255#255#255#255#0#255#255#255#0#185#187#186#255#255#255#255 +#4'_'#205#255#0#0#0#255#213#213#213#255#187#187#187#255#0#0#0#255#0#0#0#255#0
+#0#183#128'z'#255#215#155#149#255#218#177#172#255#233#202#197#255#227#197#191 +#0#0#255#174#228#253#255#174#228#253#255#255#255#255#0#185#187#186#255#185
+#255#0#0#0#255#225#225#225#255#210#210#210#255#0#0#0#255#255#255#255#0#128 +#187#186#255#255#255#255#0#255#255#255#0#185#187#186#255#192#140#134#255#205
+#133#173#255#128#133#173#255'u'#148#243#255#146#163#224#255#185#187#186#255 +#147#138#255#0#0#0#255#203#203#203#255#210#210#210#255#201#201#201#255#210
+#255#255#255#0#197#155#150#255#209#155#148#255#218#180#173#255#238#214#205 +#210#210#255#198#198#198#255#0#0#0#255#236#245#252'_'#255#255#255#0#225#227
+#255#226#194#186#255'jjj'#255#0#0#0#255#0#0#0#255'jjj'#255#128#133#173#255 +#226#255#185#187#186#255#255#255#255#0#255#255#255#0#185#128'x'#255#211#147
+#128#133#173#255#128#133#173#255'u'#148#243#255'u'#148#243#255#179#190#225 +#140#255#211#155#149#255'jjj'#255#0#0#0#255#214#214#214#255#0#0#0#255#0#0#0
+#255#255#255#255#0#255#255#255#0#204#155#151#255#214#163#157#255#220#174#170 +#255#192#192#192#255#0#0#0#255#255#255#255#0#255#255#255#0#255#255#255#0#185
+#255#218#173#168#255#209#165#159#255#255#255#255#0#255#255#255#0#191#191#207 +#187#186#255#255#255#255#0#174#128'w'#255#205#147#139#255#215#165#160#255#220
+#255#128#133#173#255#128#133#173#255'p'#128#190#255'u'#148#243#255'u'#148#243 +#175#171#255#226#187#183#255#0#0#0#255#230#230#230#255#0#0#0#255#249#249#250
+#255'u'#148#243#255#255#255#255#0#255#255#255#0#255#255#255#0#185#187#186#255 +#0#0#0#0#255'jjj'#255#128#133#173#255#255#255#255#0#255#255#255#0#185#187#186
+#212#172#170#255#213#174#173#255#255#255#255#0#254#254#253#0#255#255#255#0 +#255#255#255#255#0#183#128'z'#255#215#155#149#255#218#177#172#255#233#202#197
+#255#255#255#0#128#133#173#255#128#133#173#255't'#128#204#255'u'#148#243#255 +#255#227#197#191#255#0#0#0#255#225#225#225#255#210#210#210#255#0#0#0#255#255
+'u'#148#243#255#158#167#218#255#255#255#255#0#255#255#255#0#255#255#255#0#255 +#255#255#0#128#133#173#255#128#133#173#255'u'#148#243#255#146#163#224#255#185
+#255#255#0#185#187#186#255#185#187#186#255#189#191#190#255#225#227#226#255 +#187#186#255#255#255#255#0#197#155#150#255#209#155#148#255#218#180#173#255
+#255#255#255#0#255#255#255#0#170#170#193#255#128#133#173#255'u'#135#214#255 +#238#214#205#255#226#194#186#255'jjj'#255#0#0#0#255#0#0#0#255'jjj'#255#128
+'q'#147#243#255#149#164#224#255#254#254#254#0#255#255#255#0#255#255#255#0#255 +#133#173#255#128#133#173#255#128#133#173#255'u'#148#243#255'u'#148#243#255
+#255#255#0#255#255#255#0#255#255#255#0#225#227#226#255#185#187#186#255#185 +#179#190#225#255#255#255#255#0#255#255#255#0#204#155#151#255#214#163#157#255
+#187#186#255#185#187#186#255#185#187#186#255#185#187#186#255#128#131#176#255 +#220#174#170#255#218#173#168#255#209#165#159#255#255#255#255#0#255#255#255#0
,'u'#140#222#255'u'#148#243#255#254#254#254#0#250#250#252#0#255#255#255#0#255 +#191#191#207#255#128#133#173#255#128#133#173#255'p'#128#190#255'u'#148#243
+#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255 +#255'u'#148#243#255'u'#148#243#255#255#255#255#0#255#255#255#0#255#255#255#0
+#255#0#255#255#255#0#255#255#255#0#255#255#255#0#254#254#254#0#165#170#202 +#185#187#186#255#212#172#170#255#213#174#173#255#255#255#255#0#254#254#253#0
+#255#128#146#218#255#254#254#254#0#247#247#251#0#254#254#254#0#255#255#255#0 +#255#255#255#0#255#255#255#0#128#133#173#255#128#133#173#255't'#128#204#255
+#9'NumGlyphs'#2#0#7'OnClick'#7#24'ButtonShowOptionsClicked'#8'TabOrder'#2#1#0 +'u'#148#243#255'u'#148#243#255#158#167#218#255#255#255#255#0#255#255#255#0
+#0#7'TBitBtn'#8'btnCheck'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#3 +#255#255#255#0#255#255#255#0#185#187#186#255#185#187#186#255#189#191#190#255
+'.'#1#6'Height'#2'$'#3'Top'#2#6#5'Width'#2'K'#5'Align'#7#7'alRight'#8'AutoSi' +#225#227#226#255#255#255#255#0#255#255#255#0#170#170#193#255#128#133#173#255
+'ze'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#4'&Yes'#21'Constraints.MinH' +'u'#135#214#255'q'#147#243#255#149#164#224#255#254#254#254#0#255#255#255#0
+'eight'#2#25#20'Constraints.MinWidth'#2'K'#7'Default'#9#4'Kind'#7#5'bkYes'#9 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#225#227#226#255#185
+'NumGlyphs'#2#0#7'OnClick'#7#14'btnTestClicked'#8'TabOrder'#2#2#0#0#7'TBitBt' +#187#186#255#185#187#186#255#185#187#186#255#185#187#186#255#185#187#186#255
+'n'#11'btnLoadSave'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#3''#1#6 ,#128#131#176#255'u'#140#222#255'u'#148#243#255#254#254#254#0#250#250#252#0
+'Height'#2'$'#3'Top'#2#6#5'Width'#2's'#5'Align'#7#7'alRight'#8'AutoSize'#9#20 +#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255
+'BorderSpacing.Around'#2#6#7'Caption'#6#11'btnLoadSave'#10'Glyph.Data'#10':' +#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#255#255#255#0#254#254
+#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0#16#0#0#0#16#0#0#0#1#0' ' +#254#0#165#170#202#255#128#146#218#255#254#254#254#0#247#247#251#0#254#254
+#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0#186'j6'#143#185'i5'#181 +#254#0#255#255#255#0#9'NumGlyphs'#2#0#7'OnClick'#7#24'ButtonShowOptionsClick'
+#184'i5'#238#183'h5'#255#181'h5'#255#180'g4'#255#178'f4'#255#176'e3'#255#174 +'ed'#8'TabOrder'#2#1#0#0#7'TBitBtn'#8'btnCheck'#21'AnchorSideBottom.Side'#7#9
+'d3'#255#172'c2'#255#170'b2'#255#169'a2'#255#168'`1'#255#167'`1'#254#166'`1' +'asrBottom'#4'Left'#3'.'#1#6'Height'#2'$'#3'Top'#2#6#5'Width'#2'K'#5'Align'#7
+#241#168'a1'#196#186'j5'#222#235#198#173#255#234#197#173#255#254#251#248#255 +#7'alRight'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#4'&Yes'
+#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248 +#21'Constraints.MinHeight'#2#25#20'Constraints.MinWidth'#2'K'#7'Default'#9#4
+#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#200#154 +'Kind'#7#5'bkYes'#9'NumGlyphs'#2#0#7'OnClick'#7#14'btnTestClicked'#8'TabOrde'
+'|'#255#199#152'y'#255#167'`1'#237#186'k7'#254#237#202#179#255#224#162'z'#255 +'r'#2#2#0#0#7'TBitBtn'#11'btnLoadSave'#21'AnchorSideBottom.Side'#7#9'asrBott'
+#254#250#247#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255 +'om'#4'Left'#3''#1#6'Height'#2'$'#3'Top'#2#6#5'Width'#2's'#5'Align'#7#7'alR'
+'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255#253#249#246#255 +'ight'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#11'btnLoadSav'
+#202#141'e'#255#201#155'|'#255#167'`1'#254#187'l8'#255#238#204#182#255#225 +'e'#10'Glyph.Data'#10':'#4#0#0'6'#4#0#0'BM6'#4#0#0#0#0#0#0'6'#0#0#0'('#0#0#0
+#162'z'#255#254#250#247#255#191#220#194#255#191#220#194#255#191#220#194#255 +#16#0#0#0#16#0#0#0#1#0' '#0#0#0#0#0#0#4#0#0'd'#0#0#0'd'#0#0#0#0#0#0#0#0#0#0#0
+#191#220#194#255#191#220#194#255#191#220#194#255#191#220#194#255#191#220#194 +#186'j6'#143#185'i5'#181#184'i5'#238#183'h5'#255#181'h5'#255#180'g4'#255#178
+#255#253#249#246#255#205#144'h'#255#204#158#129#255#168'a2'#255#187'k8'#255 +'f4'#255#176'e3'#255#174'd3'#255#172'c2'#255#170'b2'#255#169'a2'#255#168'`1'
+#239#206#184#255#225#162'y'#255#254#250#247#255'b'#192#136#255'b'#192#136#255 +#255#167'`1'#254#166'`1'#241#168'a1'#196#186'j5'#222#235#198#173#255#234#197
+#173#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254
+#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255
+#254#251#248#255#200#154'|'#255#199#152'y'#255#167'`1'#237#186'k7'#254#237
+#202#179#255#224#162'z'#255#254#250#247#255'b'#192#136#255'b'#192#136#255'b'
+#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'
+#192#136#255#253#249#246#255#202#141'e'#255#201#155'|'#255#167'`1'#254#187'l'
+'8'#255#238#204#182#255#225#162'z'#255#254#250#247#255#191#220#194#255#191
+#220#194#255#191#220#194#255#191#220#194#255#191#220#194#255#191#220#194#255
+#191#220#194#255#191#220#194#255#253#249#246#255#205#144'h'#255#204#158#129
+#255#168'a2'#255#187'k8'#255#239#206#184#255#225#162'y'#255#254#250#247#255
+'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255 +'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255'b'#192#136#255
+'b'#192#136#255#253#249#246#255#207#147'j'#255#206#163#132#255#170'a2'#255 +'b'#192#136#255'b'#192#136#255'b'#192#136#255#253#249#246#255#207#147'j'#255
+#186'j6'#255#239#208#187#255#226#162'z'#255#254#251#248#255#254#251#248#255 +#206#163#132#255#170'a2'#255#186'j6'#255#239#208#187#255#226#162'z'#255#254
+#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255
+#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248 +#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248#255#254#251#248
+#255#254#251#248#255#254#251#248#255#254#251#248#255#211#150'm'#255#210#167 +#255#211#150'm'#255#210#167#138#255#171'b2'#255#187'j6'#255#240#210#190#255
+#138#255#171'b2'#255#187'j6'#255#240#210#190#255#226#163'z'#255#226#163'z' +#226#163'z'#255#226#163'z'#255#225#163'z'#255#226#163'{'#255#225#163'{'#255
+#255#225#163'z'#255#226#163'{'#255#225#163'{'#255#224#161'x'#255#222#159'w' +#224#161'x'#255#222#159'w'#255#221#159'v'#255#220#157't'#255#217#155'r'#255
+#255#221#159'v'#255#220#157't'#255#217#155'r'#255#216#153'q'#255#214#153'p' +#216#153'q'#255#214#153'p'#255#213#171#142#255#173'c3'#255#187'j6'#255#242
+#255#213#171#142#255#173'c3'#255#187'j6'#255#242#213#194#255#227#163'z'#255 +#213#194#255#227#163'z'#255#227#163'z'#255#226#163'{'#255#226#163'{'#255#226
+#227#163'z'#255#226#163'{'#255#226#163'{'#255#226#164'{'#255#225#162'y'#255 +#164'{'#255#225#162'y'#255#224#161'x'#255#222#160'w'#255#222#158'u'#255#220
+#224#161'x'#255#222#160'w'#255#222#158'u'#255#220#157't'#255#218#155's'#255 +#157't'#255#218#155's'#255#217#155's'#255#218#176#149#255#175'd3'#255#187'j6'
+#217#155's'#255#218#176#149#255#175'd3'#255#187'j6'#255#242#216#197#255#227 +#255#242#216#197#255#227#164'{'#255#227#163'z'#255#227#164'z'#255#226#164'{'
+#164'{'#255#227#163'z'#255#227#164'z'#255#226#164'{'#255#226#163'{'#255#225 +#255#226#163'{'#255#225#163'{'#255#225#162'y'#255#223#160'w'#255#222#159'v'
+#163'{'#255#225#162'y'#255#223#160'w'#255#222#159'v'#255#221#158't'#255#219 +#255#221#158't'#255#219#156'r'#255#220#157't'#255#221#181#154#255#177'e4'#255
+#156'r'#255#220#157't'#255#221#181#154#255#177'e4'#255#187'k6'#255#244#217 +#187'k6'#255#244#217#199#255#230#166'}'#255#200#140'd'#255#201#141'e'#255#201
+#199#255#230#166'}'#255#200#140'd'#255#201#141'e'#255#201#142'g'#255#203#146 +#142'g'#255#203#146'l'#255#203#146'm'#255#202#144'i'#255#200#140'e'#255#200
+'l'#255#203#146'm'#255#202#144'i'#255#200#140'e'#255#200#140'd'#255#200#140 +#140'd'#255#200#140'd'#255#200#140'd'#255#218#156't'#255#225#186#159#255#179
+'d'#255#200#140'd'#255#218#156't'#255#225#186#159#255#179'f4'#255#187'k6'#254 +'f4'#255#187'k6'#254#244#220#201#255#231#167'}'#255#249#236#225#255#249#236
+#244#220#201#255#231#167'}'#255#249#236#225#255#249#236#225#255#249#237#227 +#225#255#249#237#227#255#252#244#238#255#253#250#247#255#253#247#243#255#250
+#255#252#244#238#255#253#250#247#255#253#247#243#255#250#237#229#255#247#231 +#237#229#255#247#231#219#255#247#229#217#255#246#229#216#255#222#160'w'#255
+#219#255#247#229#217#255#246#229#216#255#222#160'w'#255#228#190#164#255#180 +#228#190#164#255#180'g4'#255#188'k6'#250#245#221#204#255#231#168'~'#255#250
+'g4'#255#188'k6'#250#245#221#204#255#231#168'~'#255#250#240#232#255#250#240 +#240#232#255#250#240#232#255#201#141'f'#255#250#240#233#255#253#248#243#255
+#232#255#201#141'f'#255#250#240#233#255#253#248#243#255#254#250#248#255#252 +#254#250#248#255#252#244#239#255#249#233#223#255#247#231#219#255#247#229#217
+#244#239#255#249#233#223#255#247#231#219#255#247#229#217#255#224#162'x'#255 +#255#224#162'x'#255#231#194#169#255#182'h5'#255#188'k6'#240#246#223#208#255
+#231#194#169#255#182'h5'#255#188'k6'#240#246#223#208#255#232#168'~'#255#252 +#232#168'~'#255#252#246#241#255#252#246#241#255#200#140'd'#255#250#241#233
+#246#241#255#252#246#241#255#200#140'd'#255#250#241#233#255#251#244#238#255 +#255#251#244#238#255#253#250#247#255#253#249#246#255#250#240#232#255#248#232
+#253#250#247#255#253#249#246#255#250#240#232#255#248#232#221#255#247#230#219 +#221#255#247#230#219#255#225#163'z'#255#239#213#195#255#183'i5'#254#188'k6'
+#255#225#163'z'#255#239#213#195#255#183'i5'#254#188'k6'#216#246#223#209#255 +#216#246#223#209#255#233#170#128#255#254#250#246#255#253#250#246#255#200#140
+#233#170#128#255#254#250#246#255#253#250#246#255#200#140'd'#255#251#243#238 +'d'#255#251#243#238#255#251#241#234#255#252#246#242#255#254#251#248#255#252
+#255#251#241#234#255#252#246#242#255#254#251#248#255#252#246#241#255#249#236 +#246#241#255#249#236#226#255#248#231#219#255#238#208#186#255#236#208#189#255
+#226#255#248#231#219#255#238#208#186#255#236#208#189#255#187'p>'#248#188'k6' +#187'p>'#248#188'k6'#155#246#224#209#255#247#224#209#255#254#251#248#255#254
+#155#246#224#209#255#247#224#209#255#254#251#248#255#254#251#247#255#253#249 +#251#247#255#253#249#246#255#252#245#240#255#250#240#234#255#251#242#237#255
+#246#255#252#245#240#255#250#240#234#255#251#242#237#255#253#249#246#255#253 +#253#249#246#255#253#250#247#255#251#241#235#255#248#233#223#254#236#208#189
+#250#247#255#251#241#235#255#248#233#223#254#236#208#189#251#201#137'^'#236 +#251#201#137'^'#236#181'i5c'#188'k6q'#188'k6'#144#188'k6'#204#188'k6'#238#188
+#181'i5c'#188'k6q'#188'k6'#144#188'k6'#204#188'k6'#238#188'k6'#250#187'k6' +'k6'#250#187'k6'#254#187'k6'#255#187'j6'#255#187'j6'#255#188'l9'#255#189'n;'
+#254#187'k6'#255#187'j6'#255#187'j6'#255#188'l9'#255#189'n;'#255#187'm:'#255 ,#255#187'm:'#255#187'k8'#239#187'p>'#203#182'i5T'#255#255#255#0#9'NumGlyphs'
,#187'k8'#239#187'p>'#203#182'i5T'#255#255#255#0#9'NumGlyphs'#2#0#7'OnClick'#7 +#2#0#7'OnClick'#7#19'ButtonLoadSaveClick'#14'ParentShowHint'#8#8'ShowHint'#9
+#19'ButtonLoadSaveClick'#14'ParentShowHint'#8#8'ShowHint'#9#8'TabOrder'#2#3#0 +#8'TabOrder'#2#3#0#0#7'TBitBtn'#5'btnOK'#21'AnchorSideBottom.Side'#7#9'asrBo'
+#0#7'TBitBtn'#5'btnOK'#21'AnchorSideBottom.Side'#7#9'asrBottom'#4'Left'#3#248 +'ttom'#4'Left'#3#248#1#6'Height'#2'$'#3'Top'#2#6#5'Width'#2'K'#5'Align'#7#7
+#1#6'Height'#2'$'#3'Top'#2#6#5'Width'#2'K'#5'Align'#7#7'alRight'#8'AutoSize' +'alRight'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#3'&OK'#21
+#9#20'BorderSpacing.Around'#2#6#7'Caption'#6#3'&OK'#21'Constraints.MinHeight' +'Constraints.MinHeight'#2#25#20'Constraints.MinWidth'#2'K'#4'Kind'#7#4'bkOK'
+#2#25#20'Constraints.MinWidth'#2'K'#4'Kind'#7#4'bkOK'#9'NumGlyphs'#2#0#7'OnC' +#9'NumGlyphs'#2#0#7'OnClick'#7#15'ButtonOKClicked'#8'TabOrder'#2#4#0#0#7'TBi'
+'lick'#7#15'ButtonOKClicked'#8'TabOrder'#2#4#0#0#7'TBitBtn'#9'btnCancel'#20 +'tBtn'#9'btnCancel'#20'AnchorSideRight.Side'#7#9'asrBottom'#21'AnchorSideBot'
+'AnchorSideRight.Side'#7#9'asrBottom'#21'AnchorSideBottom.Side'#7#9'asrBotto' +'tom.Side'#7#9'asrBottom'#4'Left'#3'I'#2#6'Height'#2'$'#3'Top'#2#6#5'Width'#2
+'m'#4'Left'#3'I'#2#6'Height'#2'$'#3'Top'#2#6#5'Width'#2'N'#5'Align'#7#7'alRi' +'N'#5'Align'#7#7'alRight'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#6'Cance'
+'ght'#8'AutoSize'#9#20'BorderSpacing.Around'#2#6#6'Cancel'#9#7'Caption'#6#6 +'l'#9#7'Caption'#6#6'Cancel'#21'Constraints.MinHeight'#2#25#20'Constraints.M'
+'Cancel'#21'Constraints.MinHeight'#2#25#20'Constraints.MinWidth'#2'K'#4'Kind' +'inWidth'#2'K'#4'Kind'#7#8'bkCancel'#11'ModalResult'#2#2#9'NumGlyphs'#2#0#8
+#7#8'bkCancel'#11'ModalResult'#2#2#9'NumGlyphs'#2#0#8'TabOrder'#2#5#0#0#0#0 +'TabOrder'#2#5#0#0#0#0
]); ]);

View File

@ -124,8 +124,8 @@ type
TargetOSComboBox: TComboBox; TargetOSComboBox: TComboBox;
lblTargetCPU : TLabel; lblTargetCPU : TLabel;
TargetCPUComboBox: TComboBox; TargetCPUComboBox: TComboBox;
lblTargeti386Proc : TLabel; lblTargetProcessorProc : TLabel;
Targeti386ProcComboBox: TComboBox; TargetProcessorProcComboBox: TComboBox;
grpOptimizations: TGroupBox; grpOptimizations: TGroupBox;
chkOptVarsInReg: TCheckBox; chkOptVarsInReg: TCheckBox;
@ -234,7 +234,6 @@ type
procedure PathEditBtnExecuted(Sender: TObject); procedure PathEditBtnExecuted(Sender: TObject);
procedure frmCompilerOptionsClose(Sender: TObject; var CloseAction: TCloseAction); procedure frmCompilerOptionsClose(Sender: TObject; var CloseAction: TCloseAction);
procedure grpOptimizationsResize(Sender: TObject); procedure grpOptimizationsResize(Sender: TObject);
procedure TargetCPUComboBoxChange(Sender: TObject);
private private
procedure SetupSearchPathsTab(Page: integer); procedure SetupSearchPathsTab(Page: integer);
procedure SetupParsingTab(Page: integer); procedure SetupParsingTab(Page: integer);
@ -257,7 +256,6 @@ type
procedure SetReadOnly(const AValue: boolean); procedure SetReadOnly(const AValue: boolean);
procedure UpdateInheritedTab; procedure UpdateInheritedTab;
procedure ClearInheritedTree; procedure ClearInheritedTree;
procedure UpdateI386Settings;
public public
CompilerOpts: TBaseCompilerOptions; CompilerOpts: TBaseCompilerOptions;
@ -280,6 +278,8 @@ var
function SyntaxModeToCaption(const Mode: string): string; function SyntaxModeToCaption(const Mode: string): string;
function CaptionToSyntaxMode(const Caption: string): string; function CaptionToSyntaxMode(const Caption: string): string;
function ProcessorToCaption(const Processor: string): string;
function CaptionToProcessor(const Caption: string): string;
implementation implementation
@ -320,6 +320,42 @@ begin
Result:='ObjFPC'; Result:='ObjFPC';
end; end;
function ProcessorToCaption(const Processor: string): string;
begin
if SysUtils.CompareText(Processor,'386')=0 then
Result:='386/486'+' (-Op386)'
else if SysUtils.CompareText(Processor,'pentium')=0 then
Result:='Pentium/Pentium MMX (-OpPENTIUM)'
else if SysUtils.CompareText(Processor,'pentium2')=0 then
Result:='Pentium Pro/Pentium II/C6x86/K6 (-OpPENTIUM2)'
else if SysUtils.CompareText(Processor,'pentium3')=0 then
Result:='Pentium III (-OpPENTIUM3)'
else if SysUtils.CompareText(Processor,'pentium4')=0 then
Result:='Pentium IV (-OpPENTIUM4)'
else if SysUtils.CompareText(Processor,'pentiumm')=0 then
Result:='Pentium M (-OpPENTIUMM)'
else
Result:='('+rsiwpDefault+')';
end;
function CaptionToProcessor(const Caption: string): string;
begin
if System.Pos('-Op386',Caption)>0 then
Result:='386'
else if System.Pos('-OpPENTIUM',Caption)>0 then
Result:='pentium'
else if System.Pos('-OpPENTIUM2',Caption)>0 then
Result:='pentium2'
else if System.Pos('-OpPENTIUM3',Caption)>0 then
Result:='pentium3'
else if System.Pos('-OpPENTIUM4',Caption)>0 then
Result:='pentium4'
else if System.Pos('-OpPENTIUMM',Caption)>0 then
Result:='pentiumm'
else
Result:='';
end;
{------------------------------------------------------------------------------ {------------------------------------------------------------------------------
TfrmCompilerOptions Constructor TfrmCompilerOptions Constructor
------------------------------------------------------------------------------} ------------------------------------------------------------------------------}
@ -572,12 +608,7 @@ begin
TargetCPUComboBox.ItemIndex:=i; TargetCPUComboBox.ItemIndex:=i;
TargetCPUComboBox.Text:=Options.TargetCPU; TargetCPUComboBox.Text:=Options.TargetCPU;
case Options.TargetProcessor of TargetProcessorProcComboBox.Text:=ProcessorToCaption(Options.TargetProcessor);
1..3: Targeti386ProcComboBox.ItemIndex:=Options.TargetProcessor;
else
Targeti386ProcComboBox.ItemIndex := 0;
end;
UpdateI386Settings;
chkOptVarsInReg.Checked := Options.VariablesInRegisters; chkOptVarsInReg.Checked := Options.VariablesInRegisters;
chkOptUncertain.Checked := Options.UncertainOptimizations; chkOptUncertain.Checked := Options.UncertainOptimizations;
@ -889,7 +920,7 @@ begin
NewTargetCPU:=''; NewTargetCPU:='';
Options.TargetCPU:=NewTargetCPU; Options.TargetCPU:=NewTargetCPU;
Options.TargetProcessor := Targeti386ProcComboBox.ItemIndex; Options.TargetProcessor := CaptionToProcessor(TargetProcessorProcComboBox.Text);
Options.VariablesInRegisters := chkOptVarsInReg.Checked; Options.VariablesInRegisters := chkOptVarsInReg.Checked;
Options.UncertainOptimizations := chkOptUncertain.Checked; Options.UncertainOptimizations := chkOptUncertain.Checked;
@ -1131,16 +1162,6 @@ begin
InhTreeView.EndUpdate; InhTreeView.EndUpdate;
end; end;
procedure TfrmCompilerOptions.UpdateI386Settings;
var
EnableI386: Boolean;
begin
EnableI386:=(CompareText(TargetCPUComboBox.Text,'i386')=0)
or ((TargetCPUComboBox.ItemIndex<=0) and (GetDefaultTargetCPU='i386'));
Targeti386ProcComboBox.Enabled:=EnableI386;
lblTargeti386Proc.Enabled:=EnableI386;
end;
{------------------------------------------------------------------------------ {------------------------------------------------------------------------------
TfrmCompilerOptions SetupParsingTab TfrmCompilerOptions SetupParsingTab
------------------------------------------------------------------------------} ------------------------------------------------------------------------------}
@ -1213,7 +1234,7 @@ begin
grpGenerate.Caption := dlgCOGenerate; grpGenerate.Caption := dlgCOGenerate;
radGenNormal.Caption := dlgCONormal+' (none)'; radGenNormal.Caption := dlgCONormal+' (none)';
radGenFaster.Caption := dlgCOFast+' (-OG)'; radGenFaster.Caption := dlgCOFast+' (-OG)';
radGenSmaller.Caption := dlgCOSmaller+' (-Og)'; radGenSmaller.Caption := dlgCOSmaller+' (-Os)';
grpTargetPlatform.Caption := dlgTargetPlatform; grpTargetPlatform.Caption := dlgTargetPlatform;
lblTargetOS.Caption := dlgTargetOS+' (-T)'; lblTargetOS.Caption := dlgTargetOS+' (-T)';
@ -1264,14 +1285,18 @@ begin
ItemIndex:=0; ItemIndex:=0;
end; end;
lblTargeti386Proc.Caption := dlgTargetProc; lblTargetProcessorProc.Caption := dlgTargetProc;
with Targeti386ProcComboBox do begin with TargetProcessorProcComboBox do begin
with Items do begin with Items do begin
Add('('+rsiwpDefault+')'); Clear;
Add('386/486 (-Op1)'); Add(ProcessorToCaption(''));
Add('Pentium/Pentium MMX (-Op2)'); Add(ProcessorToCaption('386'));
Add('Pentium Pro/Pentium II/C6x86/K6 (-Op3)'); Add(ProcessorToCaption('Pentium'));
Add(ProcessorToCaption('Pentium2'));
Add(ProcessorToCaption('Pentium3'));
Add(ProcessorToCaption('Pentium4'));
Add(ProcessorToCaption('PentiumM'));
end; end;
ItemIndex:=0; ItemIndex:=0;
end; end;
@ -1753,11 +1778,6 @@ begin
chkOptUncertain.Left:=x; chkOptUncertain.Left:=x;
end; end;
procedure TfrmCompilerOptions.TargetCPUComboBoxChange(Sender: TObject);
begin
UpdateI386Settings;
end;
procedure TfrmCompilerOptions.SetReadOnly(const AValue: boolean); procedure TfrmCompilerOptions.SetReadOnly(const AValue: boolean);
begin begin
if FReadOnly=AValue then exit; if FReadOnly=AValue then exit;

View File

@ -1249,7 +1249,7 @@ resourcestring
dlgCONormal = 'Normal Code'; dlgCONormal = 'Normal Code';
dlgCOFast = 'Faster Code'; dlgCOFast = 'Faster Code';
dlgCOSmaller = 'Smaller Code'; dlgCOSmaller = 'Smaller Code';
dlgTargetProc = 'Target i386'; dlgTargetProc = 'Target processor';
dlgTargetPlatform = 'Target Platform:'; dlgTargetPlatform = 'Target Platform:';
dlgOptimiz = 'Optimizations:'; dlgOptimiz = 'Optimizations:';
dlgCOKeepVarsReg = 'Keep certain variables in registers'; dlgCOKeepVarsReg = 'Keep certain variables in registers';

View File

@ -112,7 +112,7 @@ type
fHeapSize: LongInt; fHeapSize: LongInt;
fVerifyObjMethodCall: boolean; fVerifyObjMethodCall: boolean;
fGenerate: TCompilationGenerateCode; fGenerate: TCompilationGenerateCode;
fTargetProc: Integer; fTargetProc: string;
fTargetCPU: string; fTargetCPU: string;
fVarsInReg: Boolean; fVarsInReg: Boolean;
fUncertainOpt: Boolean; fUncertainOpt: Boolean;
@ -174,7 +174,7 @@ type
procedure SetSrcPath(const AValue: string); virtual; abstract; procedure SetSrcPath(const AValue: string); virtual; abstract;
procedure SetDebugPath(const AValue: string); virtual; abstract; procedure SetDebugPath(const AValue: string); virtual; abstract;
procedure SetTargetCPU(const AValue: string); virtual; abstract; procedure SetTargetCPU(const AValue: string); virtual; abstract;
procedure SetTargetProc(const AValue: Integer); virtual; abstract; procedure SetTargetProc(const AValue: string); virtual; abstract;
procedure SetTargetOS(const AValue: string); virtual; abstract; procedure SetTargetOS(const AValue: string); virtual; abstract;
procedure SetModified(const AValue: boolean); virtual; abstract; procedure SetModified(const AValue: boolean); virtual; abstract;
public public
@ -220,7 +220,7 @@ type
write FEmulatedFloatOpcodes; write FEmulatedFloatOpcodes;
property Generate: TCompilationGenerateCode read fGenerate write fGenerate; property Generate: TCompilationGenerateCode read fGenerate write fGenerate;
property TargetCPU: string read fTargetCPU write SetTargetCPU; // general type property TargetCPU: string read fTargetCPU write SetTargetCPU; // general type
property TargetProcessor: Integer read fTargetProc write SetTargetProc; // specific property TargetProcessor: String read fTargetProc write SetTargetProc; // specific
property TargetOS: string read fTargetOS write SetTargetOS; property TargetOS: string read fTargetOS write SetTargetOS;
property VariablesInRegisters: Boolean read fVarsInReg write fVarsInReg; property VariablesInRegisters: Boolean read fVarsInReg write fVarsInReg;
property UncertainOptimizations: Boolean read fUncertainOpt write fUncertainOpt; property UncertainOptimizations: Boolean read fUncertainOpt write fUncertainOpt;