Recent

Author Topic: New bootstrap FPC 2.6.4 for Windows?? Where?  (Read 17087 times)

Jonas Maebe

  • Hero Member
  • *****
  • Posts: 1059
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #15 on: August 26, 2015, 09:56:46 pm »
Where can I download the official release of FPC 2.6.4 for x86_64 (64bit) ???
We don't distribute one, because there is little to no advantage over using a cross-compiler.

Quote
Or do I need to first install FPC 2.6.4 32bit and then the cross-compiler for 64bit? Could the ppcrossx64.exe be used to compile FPC trunk 64bit?
Yes and yes, but you have to add CPU_SOURCE=x86_64 to the make flags for the second part.

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11452
  • FPC developer.
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #16 on: August 26, 2015, 10:03:51 pm »
So, there is no known maintainer who uploaded the other bootstraps and the Windows one for 2.6.2?

Sigh, fixed.  :D

rvk

  • Hero Member
  • *****
  • Posts: 6163
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #17 on: August 26, 2015, 10:11:06 pm »
So, there is no known maintainer who uploaded the other bootstraps and the Windows one for 2.6.2?
Sigh, fixed.  :D
Cool  8-)

(still missing the x86_64 one but apparently nobody uses that :))

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11452
  • FPC developer.
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #18 on: August 27, 2015, 10:21:03 am »
(still missing the x86_64 one but apparently nobody uses that :))

The cross one? There is no formal native x64 one.

rvk

  • Hero Member
  • *****
  • Posts: 6163
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #19 on: August 27, 2015, 10:25:33 am »
(still missing the x86_64 one but apparently nobody uses that :))

The cross one? There is no formal native x64 one.
There is :) It's in the Lazarus 1.4.2 64bit version.

It's contained in this installation:
http://sourceforge.net/projects/lazarus/files/Lazarus%20Windows%2064%20bits/Lazarus%201.4.2/
lazarus-1.4.2-fpc-2.6.4-win64.exe

It has the real ppcx64.exe for FPC 2.6.4 64bit.

That's why I found it strange that there is no official standalone FPC 2.6.4 for 64bit while it is distributed with Lazarus 1.4.2 for 64 bit.

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11452
  • FPC developer.
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #20 on: August 27, 2015, 10:30:00 am »
(still missing the x86_64 one but apparently nobody uses that :))

The cross one? There is no formal native x64 one.
There is :) It's in the Lazarus 1.4.2 64bit version.

As said, there is no formal one, only third party builds.

But maybe it is better to stick to the party line and use the crosscompiler for that.

rvk

  • Hero Member
  • *****
  • Posts: 6163
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #21 on: August 27, 2015, 10:36:20 am »
(still missing the x86_64 one but apparently nobody uses that :))

The cross one? There is no formal native x64 one.
There is :) It's in the Lazarus 1.4.2 64bit version.

As said, there is no formal one, only third party builds.

But maybe it is better to stick to the party line and use the crosscompiler for that.
In that case it still wouldn't be possible to build FPC 64bit from scratch with a bootstrap compiler without first installing FPC 32bit.

But ok. I don't use 64bit myself and it is not advised either:
Quote
Current released versions of FPC (2.6.x) do not include support for SEH handling. This can affect the stability of many 64 bit applications. Therefore it is recommended to use the 32bit IDE, and generate 32bit applications only. This will change when FPC 3.0 is released.
Please visit our forums and Wiki for additional information.
http://wiki.lazarus.freepascal.org/Windows_Programming_Tips#FPC_2.6.x.2FLazarus_warning_.28Missing_support_for_SEH.29
(fpcup64.exe might temporarily need to find some other solution)

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11452
  • FPC developer.
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #22 on: August 27, 2015, 10:43:11 am »
In that case it still wouldn't be possible to build FPC 64bit from scratch with a bootstrap compiler without first installing FPC 32bit.

Why? The win32->win64 crosscompiler should be able to generate win64 binaries? What does it matter that it is a win32 binary for bootstrap start ?

Quote
But ok. I don't use 64bit myself and it is not advised either:

The only reason that I do anything about 2.6.4 is to rectify the 3.0 bootstrapping situation for fpcup. I wouldn't put too much effort 2.6.x otherwise.

Note that 3.0 only fixes SEH for win64.  This because any exception use in foreign code  (including shell plugins running in open->file) caused problems.

The win32 SEH is sleeping in 3.x . But you only need that if you have foreign code that raises exceptions and leaves you to handle it.

DonAlfredo

  • Hero Member
  • *****
  • Posts: 1739
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #23 on: August 27, 2015, 10:53:22 am »
@marcov
Thanks !
FPCUP will soon be updated to reflect the changes.

rvk

  • Hero Member
  • *****
  • Posts: 6163
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #24 on: August 27, 2015, 10:58:27 am »
In that case it still wouldn't be possible to build FPC 64bit from scratch with a bootstrap compiler without first installing FPC 32bit.
Why? The win32->win64 crosscompiler should be able to generate win64 binaries? What does it matter that it is a win32 binary for bootstrap start ?
You don't have a win32->win64 crosscompiler if you build fpc 64bit from scratch (without any 32bit parts). That's what the 64bit bootstrap would be for. So without the 64bit bootstrap you would still need to download the crosscompiler separately. True... it's "just" a 22MB download but still massively larger than the <1MB ppcx64.exe.

Quote
The only reason that I do anything about 2.6.4 is to rectify the 3.0 bootstrapping situation for fpcup. I wouldn't put too much effort 2.6.x otherwise.
That's why I mentioned it. fpcup64.exe wouldn't work without downloading the extra 22MB for the crosscompiler (or does it??).

But I leave that up to DonAlfredo to debate and fix.
(maybe it's not necessary)

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11452
  • FPC developer.
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #25 on: August 27, 2015, 10:58:35 am »
@marcov
Thanks !
FPCUP will soon be updated to reflect the changes.

I also added the crosscompiler.

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11452
  • FPC developer.
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #26 on: August 27, 2015, 10:59:43 am »
You don't have a win32->win64 crosscompiler if you build fpc 64bit from scratch (without any 32bit parts). That's what the 64bit bootstrap would be for. So without the 64bit bootstrap you would still need to download the crosscompiler separately. True... it's "just" a 22MB download but still massively larger than the <1MB ppcx64.exe.

I meant a crosscompiler bootstrap archive as opposed to a native win64 bootstrap archive.

rvk

  • Hero Member
  • *****
  • Posts: 6163
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #27 on: August 27, 2015, 11:00:12 am »
@marcov
Thanks !
FPCUP will soon be updated to reflect the changes.
I also added the crosscompiler.
Ah  :D Yeah. That would fix it  8-)

I hope we haven't been too much trouble :)

DonAlfredo

  • Hero Member
  • *****
  • Posts: 1739
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #28 on: August 27, 2015, 11:06:25 am »
@marcov:
Give them a finger, and they'll take the whole hand ... Linux (+ARM) ?

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11452
  • FPC developer.
Re: New bootstrap FPC 2.6.4 for Windows?? Where?
« Reply #29 on: August 27, 2015, 11:11:07 am »
@marcov:
Give them a finger, and they'll take the whole hand ... Linux (+ARM) ?

For Linux, ask somebody else.  There is no useful ARM in 2.6.4 anyway that works with e.g. Raspberry PIs, so unless you target armv5 sheeva that is pointless.

 

TinyPortal © 2005-2018