Recent

Author Topic: Bootstrapping  (Read 2354 times)

funlw65

  • Full Member
  • ***
  • Posts: 148
    • Visual Pin Configurator for Nucleo 64pin boards
Bootstrapping
« on: November 16, 2022, 09:44:00 am »
Is there a tutorial for bootstrapping  freepascal for a certain operating system?
FreePascal 3.2.2, C 10.2.1, D 1.24 under Linux(init,musl,glibc), DragonflyBSD, NetBSD
gui: gtk2, qt5, raylib4.x+raygui3.x, nanovg 
tui: freevision, tvision2, termbox2+widgets, finalcut
db: typhoon-1.11...

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11383
  • FPC developer.
Re: Bootstrapping
« Reply #1 on: November 16, 2022, 10:19:46 am »
Write a RTL for the new target and crosscompile basically.

Some of the tips and tricks are described in the buildfaq on the docs page.

Thaddy

  • Hero Member
  • *****
  • Posts: 14213
  • Probably until I exterminate Putin.
Re: Bootstrapping
« Reply #2 on: November 16, 2022, 10:47:48 am »
What Marco writes is true, but an abstraction. Maybe you have a certain OS in mind?
For an experienced - with some compiler knowledge - programmer it is not that difficult, apart from work. I only struggle every time with startup code, but that might be me...., in fact I am sure its me... %) :o :( but eventually it succeeds.
« Last Edit: November 16, 2022, 10:55:14 am by Thaddy »
Specialize a type, not a var.

MarkMLl

  • Hero Member
  • *****
  • Posts: 6676
Re: Bootstrapping
« Reply #3 on: November 16, 2022, 10:55:03 am »
Maybe you have a certain OS in mind?

Unless it really is top-secret stuff I think we could usefully know, since there might be somebody aware of some obscure project (languishing in a corner of the wiki), or who has considered putting time into some target based on experience with another language or development environment.

MarkMLl
MT+86 & Turbo Pascal v1 on CCP/M-86, multitasking with LAN & graphics in 128Kb.
Pet hate: people who boast about the size and sophistication of their computer.
GitHub repositories: https://github.com/MarkMLl?tab=repositories

funlw65

  • Full Member
  • ***
  • Posts: 148
    • Visual Pin Configurator for Nucleo 64pin boards
Re: Bootstrapping
« Reply #4 on: November 16, 2022, 11:24:54 am »
Bootstrapping should be a common knowledge for the one that bases his entire cross-platform work on pascal (and especially on a specific version of freepascal). A pascal compiler that can't be compiled with the C compiler (freepascal killed gnu pascal).
FreePascal 3.2.2, C 10.2.1, D 1.24 under Linux(init,musl,glibc), DragonflyBSD, NetBSD
gui: gtk2, qt5, raylib4.x+raygui3.x, nanovg 
tui: freevision, tvision2, termbox2+widgets, finalcut
db: typhoon-1.11...

Thaddy

  • Hero Member
  • *****
  • Posts: 14213
  • Probably until I exterminate Putin.
Re: Bootstrapping
« Reply #5 on: November 16, 2022, 01:22:55 pm »
Bootstrapping should be a common knowledge for the one that bases his entire cross-platform work on pascal (and especially on a specific version of freepascal). A pascal compiler that can't be compiled with the C compiler (freepascal killed gnu pascal).
Can you explain relevance? Freepascal is, just like some but not all C compilers, a self-compiling compiler. I am a bit bemused that you draw in C.
(GNU Pascal is not a very good example, since it is a compiler that can not compile itself and relies on C, hence it got dumped...)
Specialize a type, not a var.

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11383
  • FPC developer.
Re: Bootstrapping
« Reply #6 on: November 16, 2022, 01:33:27 pm »
Bootstrapping should be a common knowledge for the one that bases his entire cross-platform work on pascal (and especially on a specific version of freepascal).

Because?

Quote
A pascal compiler that can't be compiled with the C compiler (freepascal killed gnu pascal).

No, being gcc based killed GPC. It was simply too hard to work with, and major version transitions of GCC were painful.

The authors gave those reasons in their exit message, and said they would opt for a compiler generating C/C++ written in C++ (and maybe later itself) if they had to start over.

Anyway since those years something has changed in FPC, since pas2js exists and also the JVM backend. You could use one of those as basis for a bootstrap.  But IMHO the whole problem is overrated.

funlw65

  • Full Member
  • ***
  • Posts: 148
    • Visual Pin Configurator for Nucleo 64pin boards
Re: Bootstrapping
« Reply #7 on: November 17, 2022, 02:34:14 am »
I am very comfortable with Jalv2 compiler of JAL language for PICs, mainly because I can set a development workstation no matter the operating system. It is written in C language and can be compiled everywhere.

Not so much with Great Cow Basic, written in FreeBasic that is not available for all the operating systems. These two are the most complete open source compilers for PICs with a plus for GCB for AVR support. Both come also with their own assembler as gputils is behind regarding the support for the new arrivals.

This is just a minor example (to which I could add the case with the written books and tutorials that you trow away because it refers to old versions of languages that no longer work for your system).

For my needs, freepascal 3.0.4 is more than enough.  But is available for only a few operating systems. And I am interested in DragonFlyBSD for its mp support which is better than in NetBSD and OpenBSD and for its wonderful file system (Hammer/Hammer2). Sometimes, the ABI breaks in these UNIXes and you have to recompile all the applications (and repeat the bootstrap for fpc) and I want to be able to carry that version of pascal from version to version, without disturbing anyone. And without anyone knowing what I need and use (well, too late now) and for what.

For the C language that is affected in time by the change of C standards the solution is simple. I'm using TinyCC statically compiled under Linux with musl and I can stay with C89/C99 standards as long as I want.

Well, no rush as I wait for the Spring to come to set a dflybsd workstation...
FreePascal 3.2.2, C 10.2.1, D 1.24 under Linux(init,musl,glibc), DragonflyBSD, NetBSD
gui: gtk2, qt5, raylib4.x+raygui3.x, nanovg 
tui: freevision, tvision2, termbox2+widgets, finalcut
db: typhoon-1.11...

PascalDragon

  • Hero Member
  • *****
  • Posts: 5446
  • Compiler Developer
Re: Bootstrapping
« Reply #8 on: November 17, 2022, 07:19:37 am »
Is there a tutorial for bootstrapping  freepascal for a certain operating system?

For an unsupported operating system or one that is already supported but has no binary release?

For the former see this slightly outdated example (though more or less still valid).

For the later see - as marcov mentioned - the buildfaq. Though in short: you need suitable binutils for a host for which the compiler exists and then build it using

Code: [Select]
make all OS_TARGET=<targetos> CPU_TARGET=<targetcpu> BINUTILSPREFIX=<prefix> CROSSBINDIR=<path>
make install OS_TARGET=<targetos> CPU_TARGET=<targetcpu> INSTALL_PREFIX=/path/for/install

<targetos> and <targetcpu> are the names of the OS and CPU for your desired system respectively, <prefix> is the prefix that the binutils use (e.g. aarch64-elf-), <path> is the path where the binutils reside (if they aren't located in $PATH, in that case you can leave out that option) and /path/for/install is where you want to copy the installation to before you move it over to your real operating system.

For my needs, freepascal 3.0.4 is more than enough.  But is available for only a few operating systems. And I am interested in DragonFlyBSD for its mp support which is better than in NetBSD and OpenBSD and for its wonderful file system (Hammer/Hammer2).

Seems like no one was interested enough to create a binary distribution for DragonFlyBSD.

Sometimes, the ABI breaks in these UNIXes and you have to recompile all the applications (and repeat the bootstrap for fpc) and I want to be able to carry that version of pascal from version to version, without disturbing anyone. And without anyone knowing what I need and use (well, too late now) and for what.

Sometimes source adjustments are necessary however as was recently the case with FreeBSD. Then a simple recompile won't help.

DonAlfredo

  • Hero Member
  • *****
  • Posts: 1739
Re: Bootstrapping
« Reply #9 on: November 17, 2022, 08:40:43 am »
Sidenote about DragonFly.
Various bootstrappers for dragonfly can be found here: https://github.com/LongDirtyAnimAlf/fpcupdeluxe/releases/tag/bootstrappers_v1.0
Fpcupdeluxe for DragonFly can be found here: https://github.com/LongDirtyAnimAlf/fpcupdeluxe/releases/download/v2.2.0n/fpcupdeluxe-x86_64-dragonfly

marcov

  • Administrator
  • Hero Member
  • *
  • Posts: 11383
  • FPC developer.
Re: Bootstrapping
« Reply #10 on: November 17, 2022, 12:13:33 pm »
I am very comfortable with Jalv2 compiler of JAL language for PICs, mainly because I can set a development workstation no matter the operating system. It is written in C language and can be compiled everywhere.

I just use MP lab X (and xc16) for pics.

Quote
Not so much with Great Cow Basic, written in FreeBasic that is not available for all the operating systems. These two are the most complete open source compilers for PICs with a plus for GCB for AVR support. Both come also with their own assembler as gputils is behind regarding the support for the new arrivals.
 
This is just a minor example (to which I could add the case with the written books and tutorials that you trow away because it refers to old versions of languages that no longer work for your system).

Quote
For my needs, freepascal 3.0.4 is more than enough. 

That is understandable, but that also means you must stand on your own two feet, as providing detail support for old versions is nigh on impossible for us.

Quote
But is available for only a few operating systems. And I am interested in DragonFlyBSD for its mp support which is better than in NetBSD and OpenBSD and for its wonderful file system (Hammer/Hammer2). Sometimes, the ABI breaks in these UNIXes and you have to recompile all the applications (and repeat the bootstrap for fpc) and I want to be able to carry that version of pascal from version to version, without disturbing anyone. And without anyone knowing what I need and use (well, too late now) and for what.

If the ABI, or the linker scheme or the startup code changes, code changes are necessary. Just bootstrapping won't do anything there. If you have made the changes, you usually you can run some Linux or FreeBSD in COMPAT support and then compile for the new API to re-bootstrap. Even simpler than crosscompilation on a different machine.

Quote
For the C language that is affected in time by the change of C standards the solution is simple. I'm using TinyCC statically compiled under Linux with musl and I can stay with C89/C99 standards as long as I want.

The problem is that the Unix interfaces are only available in C and not really machine parseable (e.g. the Windows headers are much cleaner in that regard) If *nixes simply provided e.g. STAT record definitions in some easy parse-able format (without umpteen preprocessor defines that need checking through the whole tree) then we could react to ABI changes in a more automated fashion.


But that is something that has to come from the *nix maintainers side. I had a simple script to divine the ELF_IDENTIFIER from some binary in /usr/bin, and even that breaks nearly every other iterations. Maybe you can prod Matt ?

Quote
Well, no rush as I wait for the Spring to come to set a dflybsd workstation...

I can wait, no problem. ::)
« Last Edit: November 17, 2022, 12:15:53 pm by marcov »

funlw65

  • Full Member
  • ***
  • Posts: 148
    • Visual Pin Configurator for Nucleo 64pin boards
Re: Bootstrapping
« Reply #11 on: November 17, 2022, 02:12:21 pm »
Wow, thank you guys for understanding, insight and support, really appreciate it!

Sometimes source adjustments are necessary however as was recently the case with FreeBSD. Then a simple recompile won't help.


That is understandable, but that also means you must stand on your own two feet, as providing detail support for old versions is nigh on impossible for us.

If the ABI, or the linker scheme or the startup code changes, code changes are necessary. Just bootstrapping won't do anything there. If you have made the changes, you usually you can run some Linux or FreeBSD in COMPAT support and then compile for the new API to re-bootstrap. Even simpler than crosscompilation on a different machine.

Quote
For the C language that is affected in time by the change of C standards the solution is simple. I'm using TinyCC statically compiled under Linux with musl and I can stay with C89/C99 standards as long as I want.

The problem is that the Unix interfaces are only available in C and not really machine parseable (e.g. the Windows headers are much cleaner in that regard) If *nixes simply provided e.g. STAT record definitions in some easy parse-able format (without umpteen preprocessor defines that need checking through the whole tree) then we could react to ABI changes in a more automated fashion.


But that is something that has to come from the *nix maintainers side. I had a simple script to divine the ELF_IDENTIFIER from some binary in /usr/bin, and even that breaks nearly every other iterations.

This definitely needs a change in my strategy regarding my future "retiring" (well, one cannot really give up on Linux, ever [or RAD Pascal]) in the UNIX world and still remaining relevant for crossplatform development. I see how this is a continuous battle for the dev team.
FreePascal 3.2.2, C 10.2.1, D 1.24 under Linux(init,musl,glibc), DragonflyBSD, NetBSD
gui: gtk2, qt5, raylib4.x+raygui3.x, nanovg 
tui: freevision, tvision2, termbox2+widgets, finalcut
db: typhoon-1.11...

 

TinyPortal © 2005-2018