fpc-crosswin32 deb: updates and copying tools like windres

git-svn-id: trunk@12492 -
This commit is contained in:
mattias 2007-10-16 20:32:10 +00:00
parent d8ccab9aa5
commit ebef050781
3 changed files with 14 additions and 7 deletions

View File

@ -25,10 +25,10 @@
</RunParams> </RunParams>
<RequiredPackages Count="2"> <RequiredPackages Count="2">
<Item1> <Item1>
<PackageName Value="LazOpenGLContext"/> <PackageName Value="LCL"/>
</Item1> </Item1>
<Item2> <Item2>
<PackageName Value="LCL"/> <PackageName Value="LazOpenGLContext"/>
</Item2> </Item2>
</RequiredPackages> </RequiredPackages>
<Units Count="2"> <Units Count="2">

View File

@ -180,6 +180,13 @@ if [ $BuildCrossWin32DEB = "yes" ]; then
cp -a $BuildRoot/binutils/cross/destination/$FPCLibDir/$Target $DestDir cp -a $BuildRoot/binutils/cross/destination/$FPCLibDir/$Target $DestDir
done done
#----------------------------------------------------------------------------
# copy tools (windres)
#----------------------------------------------------------------------------
FPCLibDir=lib/fpc/$CompilerVersionStr # !!! no / at end
DestDir=$FPCBuildDir/usr/$FPCLibDir
cp -p $BuildRoot/bin/* $DestDir/
#------------------------------------------------------------------------------ #------------------------------------------------------------------------------
# create rulez and files # create rulez and files

View File

@ -12,7 +12,7 @@ if [ ! -d "$BuildRoot" ]; then
fi fi
# the binutils version to download # the binutils version to download
BinutilsVersion=2.16 BinutilsVersion=2.18
BinutilsDownloadPath=http://ftp.gnu.org/gnu/binutils/ BinutilsDownloadPath=http://ftp.gnu.org/gnu/binutils/
# the FPC targets # the FPC targets
@ -191,8 +191,8 @@ if [ $DownloadFPC = "yes" ]; then
svn up svn up
cd - cd -
else else
echo "SVN checkout for FPC 2.0 ..." echo "SVN checkout for FPC 2.2 ..."
svn co http://svn.freepascal.org/svn/fpc/branches/fixes_2_0 fpc svn co http://svn.freepascal.org/svn/fpc/branches/fixes_2_2 fpc
fi fi
if [ -d install ]; then if [ -d install ]; then
cd install cd install
@ -201,8 +201,8 @@ if [ $DownloadFPC = "yes" ]; then
svn up svn up
cd - cd -
else else
echo "SVN checkout for FPC 2.0 install ..." echo "SVN checkout for FPC 2.2 install ..."
svn co http://svn.freepascal.org/svn/fpcbuild/branches/fixes_2_0/install install svn co http://svn.freepascal.org/svn/fpcbuild/branches/fixes_2_2/install install
fi fi
fi fi