Fork me on GitHub

Project Notes

Free Pascal

Installing and running the Free Pascal compiler on MacOS.

Notes

I haven’t written or used any Pascal code for decades. But it was my first love when it comes to computer languages. It’s where I first learned structured and object-oriented programming techniques.

I’m curious about the state of Pascal. Does anyone still use it much? CAN you even use it on modern machines?

First step is obviously just to try and get it installed…

Documentation

The documentation page points to HTML online guides and PDF downloads.

I found the HTML rendering of the documentation to be a bit too fragmented, so went for downloads. At the time I tried, the FTP server was down, but I could find the files in sourceforge

Compiling the Source [FAIL]

The sourceforge files page offers

  • fpc-3.0.4.source.tar.gz - just the compiler source
  • fpcbuild-3.0.4.tar.gz - entire project, including compiler source, documentation, examples etc

I didn’t get far however…

$ tar zxvf fpc-3.0.4.source.tar.gz
$ cd fpc-3.0.4
$ make all
make: -iVSPTPSOTO: Command not found
Makefile:2790: *** The only supported starting compiler version is 3.0.2. You are trying to build with ..  Stop.

I haven’t dug further to find out what is going on here.

Binary Installation

The sourceforge files page offered fpc-3.0.4a.intel-macosx.dmg (108.4 MB) for download.

installed

Test Drive

$ which fpc
/usr/local/bin/fpc
$ fpc -h
Free Pascal Compiler version 3.0.4 [2018/09/30] for x86_64
Copyright (c) 1993-2017 by Florian Klaempfl and others
fpc [options] <inputfile> [options]
 Only options valid for the default or selected platform are listed.
  [... lots of option documentation ...]
  -?     Show this help
  -h     Shows this help without waiting

Looks like I have a few free pascal compiler bits installed:

$ ls -1 /usr/local/bin/fpc*
/usr/local/bin/fpc
/usr/local/bin/fpcjres
/usr/local/bin/fpclasschart
/usr/local/bin/fpcmake
/usr/local/bin/fpcmkcfg
/usr/local/bin/fpcres
/usr/local/bin/fpcreslipo
/usr/local/bin/fpcsubst

Compiling Hello World!

$ fpc hello.pp
Free Pascal Compiler version 3.0.4 [2018/09/30] for x86_64
Copyright (c) 1993-2017 by Florian Klaempfl and others
Target OS: Darwin for x86_64
Compiling hello.pp
Assembling (pipe) hello.s
Linking hello
10 lines compiled, 0.1 sec
$ ./hello
What the Blaises is going on here?

All good!

Credits and References

About LCK#189 pascal
Project Source on GitHub Return to the Project Catalog

This page is a web-friendly rendering of my project notes shared in the LittleCodingKata GitHub repository.

LittleCodingKata is my collection of programming exercises, research and code toys broadly spanning things that relate to programming and software development (languages, frameworks and tools).

These range from the trivial to the complex and serious. Many are inspired by existing work and I'll note credits and references where applicable. The focus is quite scattered, as I variously work on things new and important in the moment, or go back to revisit things from the past.

This is primarily a personal collection for my own edification and learning, but anyone who stumbles by is welcome to borrow, steal or reference the work here. And if you spot errors or issues I'd really appreciate some feedback - create an issue, send me an email or even send a pull-request.