git-svn-id: trunk@8913 -

This commit is contained in:
vincents 2006-03-10 21:36:21 +00:00
parent 109d6e5216
commit 6b7de273d3
4 changed files with 13 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0"?>
<CONFIG>
<ProjectOptions>
<PathDelim Value="/"/>
<PathDelim Value="\"/>
<Version Value="5"/>
<General>
<Flags>
@ -23,7 +23,8 @@
<RunParams>
<local>
<FormatVersion Value="1"/>
<LaunchingApplication PathPlusParams="/usr/X11R6/bin/xterm -T 'Lazarus Run Output' -e $(LazarusDir)/tools/runwait.sh $(TargetCmdLine)"/>
<CommandLineParams Value="--nsc"/>
<LaunchingApplication PathPlusParams="\usr\X11R6\bin\xterm -T 'Lazarus Run Output' -e $(LazarusDir)\tools\runwait.sh $(TargetCmdLine)"/>
</local>
</RunParams>
<Units Count="1">
@ -36,16 +37,22 @@
</ProjectOptions>
<CompilerOptions>
<Version Value="5"/>
<PathDelim Value="\"/>
<Target>
<Filename Value="../lazarus"/>
</Target>
<SearchPaths>
<UnitOutputDirectory Value="$(LazarusDir)/units/$(TargetCPU)-$(TargetOS)/"/>
<IncludeFiles Value="include\"/>
<UnitOutputDirectory Value="$(LazarusDir)\units\$(TargetCPU)-$(TargetOS)\"/>
<LCLWidgetType Value="gtk2"/>
</SearchPaths>
<CodeGeneration>
<Generate Value="Faster"/>
</CodeGeneration>
<Other>
<Verbosity>
<ShowHintsForUnusedUnitsInMainSrc Value="True"/>
</Verbosity>
<CompilerPath Value="$(CompPath)"/>
</Other>
<CompileReasons Compile="False" Build="False" Run="False"/>

View File

@ -33,6 +33,7 @@
program Lazarus;
{$mode objfpc}{$H+}
{$APPTYPE CONSOLE}
{$I ide.inc}

View File

@ -10228,7 +10228,7 @@ begin
CurOptions:=AddCmdLineParameter(CurOptions,'-T'+CurTargetOS);
CurTargetCPU:=GetTargetCPU(false);
if CurTargetCPU<>'' then
CurOptions:=AddCmdLineParameter(CurOptions,'-d'+CurTargetCPU);
CurOptions:=AddCmdLineParameter(CurOptions,'-P'+CurTargetCPU);
{$IFDEF VerboseFPCSrcScan}
writeln('TMainIDE.RescanCompilerDefines A ',CurOptions,
' OnlyIfCompilerChanged=',OnlyIfCompilerChanged,

View File

@ -1,2 +1,2 @@
// Created by Svn2RevisionInc
const RevisionStr = '8642M';
const RevisionStr = '8897:8904M';