mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-10 22:36:17 +02:00
lazbuild: implemented overriding global compiler filename
git-svn-id: trunk@10234 -
This commit is contained in:
parent
a4664b8977
commit
549003fc63
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<CONFIG>
|
<CONFIG>
|
||||||
<ProjectOptions>
|
<ProjectOptions>
|
||||||
<PathDelim Value="\"/>
|
<PathDelim Value="/"/>
|
||||||
<Version Value="5"/>
|
<Version Value="5"/>
|
||||||
<General>
|
<General>
|
||||||
<SessionStorage Value="InIDEConfig"/>
|
<SessionStorage Value="InIDEConfig"/>
|
||||||
@ -9,25 +9,6 @@
|
|||||||
<IconPath Value="./"/>
|
<IconPath Value="./"/>
|
||||||
<TargetFileExt Value=""/>
|
<TargetFileExt Value=""/>
|
||||||
</General>
|
</General>
|
||||||
<VersionInfo>
|
|
||||||
<UseVersionInfo Value="False"/>
|
|
||||||
<AutoIncrementBuild Value="False"/>
|
|
||||||
<CurrentVersionNr Value="0"/>
|
|
||||||
<CurrentMajorRevNr Value="0"/>
|
|
||||||
<CurrentMinorRevNr Value="0"/>
|
|
||||||
<CurrentBuildNr Value="0"/>
|
|
||||||
<ProjectVersion Value="1.0.0.0"/>
|
|
||||||
<Language Value="0409"/>
|
|
||||||
<CharSet Value="04E4"/>
|
|
||||||
<Comments Value=""/>
|
|
||||||
<CompanyName Value=""/>
|
|
||||||
<FileDescription Value=""/>
|
|
||||||
<InternalName Value=""/>
|
|
||||||
<LegalCopyright Value=""/>
|
|
||||||
<LegalTrademarks Value=""/>
|
|
||||||
<OriginalFilename Value=""/>
|
|
||||||
<ProductName Value=""/>
|
|
||||||
</VersionInfo>
|
|
||||||
<PublishOptions>
|
<PublishOptions>
|
||||||
<Version Value="2"/>
|
<Version Value="2"/>
|
||||||
<IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>
|
<IncludeFileFilter Value="*.(pas|pp|inc|lfm|lpr|lrs|lpi|lpk|sh|xml)"/>
|
||||||
@ -36,7 +17,7 @@
|
|||||||
<RunParams>
|
<RunParams>
|
||||||
<local>
|
<local>
|
||||||
<FormatVersion Value="1"/>
|
<FormatVersion Value="1"/>
|
||||||
<LaunchingApplication PathPlusParams="\usr\X11R6\bin\xterm -T 'Lazarus Run Output' -e $(LazarusDir)\tools\runwait.sh $(TargetCmdLine)"/>
|
<LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/>
|
||||||
</local>
|
</local>
|
||||||
</RunParams>
|
</RunParams>
|
||||||
<RequiredPackages Count="2">
|
<RequiredPackages Count="2">
|
||||||
@ -67,14 +48,13 @@
|
|||||||
</ProjectOptions>
|
</ProjectOptions>
|
||||||
<CompilerOptions>
|
<CompilerOptions>
|
||||||
<Version Value="5"/>
|
<Version Value="5"/>
|
||||||
<PathDelim Value="\"/>
|
|
||||||
<Target>
|
<Target>
|
||||||
<Filename Value="..\lazbuild"/>
|
<Filename Value="../lazbuild"/>
|
||||||
</Target>
|
</Target>
|
||||||
<SearchPaths>
|
<SearchPaths>
|
||||||
<IncludeFiles Value="include\;include\$(TargetOS)\"/>
|
<IncludeFiles Value="include/;include/$(TargetOS)/"/>
|
||||||
<OtherUnitFiles Value="..\designer\;..\packager\;..\components\codetools\units\$(TargetCPU)-$(TargetOS)\"/>
|
<OtherUnitFiles Value="../designer/;../packager/;../components/codetools/units/$(TargetCPU)-$(TargetOS)/"/>
|
||||||
<UnitOutputDirectory Value="..\units\$(TargetCPU)-$(TargetOS)"/>
|
<UnitOutputDirectory Value="../units/$(TargetCPU)-$(TargetOS)"/>
|
||||||
</SearchPaths>
|
</SearchPaths>
|
||||||
<CodeGeneration>
|
<CodeGeneration>
|
||||||
<Generate Value="Faster"/>
|
<Generate Value="Faster"/>
|
||||||
|
@ -589,6 +589,8 @@ begin
|
|||||||
EnvironmentOptions.LanguageID);
|
EnvironmentOptions.LanguageID);
|
||||||
ExternalTools.OnNeedsOutputFilter:=@OnExtToolNeedsOutputFilter;
|
ExternalTools.OnNeedsOutputFilter:=@OnExtToolNeedsOutputFilter;
|
||||||
ExternalTools.OnFreeOutputFilter:=@OnExtToolFreeOutputFilter;
|
ExternalTools.OnFreeOutputFilter:=@OnExtToolFreeOutputFilter;
|
||||||
|
if CompilerOverride<>'' then
|
||||||
|
CompilerFilename:=CompilerOverride;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user