Re: [Lazarus] Compiling Win 64 bit LCL only with 32 bit IDE+cross compiler

2012-04-24 Thread Reinier Olislagers
On 23-4-2012 20:15, Mattias Gaertner wrote: > This should work > > make clean CPU_TARGET=x86_64 OS_TARGET=win64 > make clean all useride > lazbuild.exe --os=win64 --cpu=x86_64 lcl\interfaces\lcl.lpk > > Of course you need to have a 64bit compiler installed properly. Thanks, Mattias, using lazbuil

Re: [Lazarus] Compiling Win 64 bit LCL only with 32 bit IDE+cross compiler

2012-04-23 Thread Mattias Gaertner
On Mon, 23 Apr 2012 17:51:17 +0200 Reinier Olislagers wrote: > On 23-4-2012 12:28, Reinier Olislagers wrote: > > Method 3: I'm now trying someting like this: > > make "CPU_TARGET=x86_64" "OS_TARGET=win64" "registration" "lazutils" "lcl" > > ...list of dependencies taken from > > http://wiki.lazar

Re: [Lazarus] Compiling Win 64 bit LCL only with 32 bit IDE+cross compiler

2012-04-23 Thread Reinier Olislagers
On 23-4-2012 12:28, Reinier Olislagers wrote: > Method 3: I'm now trying someting like this: > make "CPU_TARGET=x86_64" "OS_TARGET=win64" "registration" "lazutils" "lcl" > ...list of dependencies taken from > http://wiki.lazarus.freepascal.org/Getting_Lazarus#Make_parameters > > but I get > Compil

[Lazarus] Compiling Win 64 bit LCL only with 32 bit IDE+cross compiler

2012-04-23 Thread Reinier Olislagers
Hi list, Triggered by Mattias' improvements in the make environment, I tried to incorporate support in fpcup. Goal: on Windows compile 32bit LCL+IDE; also compile 64 bit LCL with x64 cross compiler so users can immediately compile for x64 targets. Method 1: originally I just did something like m