SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG
DONATE


YUM REPOSITORY

 
 

MAN page from OpenSuSE fpc-3.0.4-lp152.5.59.x86_64.rpm

fpc

Section: Free Pascal Compiler (1)
Updated: 22 feb 2002
Index 

NAME

fpc - Free Pascal Compiler (FPC) binary

 

SYNOPSIS

fpc [options] [sourcefile] 

DESCRIPTION

This binary is the main binary of theFree Pascal Compiler (FPC)which is aTurbo PascalandDelphi (7.0) compatible standalone (non GCC frontend) multitarget Pascal compiler.

The compiler usesLD(1)and can useAS(1)(see parameter -Aas), but also has its own binary object writer.

The current main targets areGo32V2(Dos DJGPP extender),Freebsd,Linux,MacOS,MacOSX,MorphOS,Netware,OS/2andWin32.The other targets (M68K compilers for Atari and Amiga) are either based on olderversions of the compiler or are still in development.

This manpage is meant for quick-reference only. FPC comes with a great (2000+ pages)manual, which is updated constantly, while this man page can be out of date.

 

Version number

Starting with release 1.0, a new versioning system has been implemented. If the last number is even (1.0, 1.0.2), it is stable, and if the last number is odd it is a daily changing development version.(1.0.5, 1.1) just like the linux kernel.

Version 0.99.5 however is a stable release. It was made before the even/odd versionnaming system was introduced.

 

Usage

The compilation process is started by typingfpcfollowed by a sourcefile name (normally with .pas or .pp extension). Before processing the actual processing of the source file,fpc.cfg(5)the configuration file of the compiler is read which contains the location of theRTL, other packages (FCL, FreeVision), and optionally default values for someswitches. See the separate manpage offpc.cfg(5)for more information.

 

Options

General options

-h
if you specify this option, the compiler outputs a list of all options,and exits after that.
-?
idem as -h, but waiting after every screenfull for the enter key.
-i
This option tells the compiler to print the copyright information.

You can give it an option, as -ixxx where "xxx" can be one of thefollowing:

D
Returns the compiler date.
V
Returns the compiler version.
SO
Returns the compiler OS.
SP
Returns the compiler processor.
TO
Returns the target OS.
TP
Returns the target Processor.
-l
This option tells the compiler to print theFPClogo on standard output. It also gives you theFPCversion number.
-n
Tells the compiler not to read the configuration filefpc.cfg(5)

Options for getting feedback

-vxxx
Be verbose. "xxx" is a combination of the following:
e
Tells the compiler to show only errors. This option is on by default.
i
Tells the compiler to show some general information.
w
Tells the compiler to issue warnings.
n
Tells the compiler to issue notes.
h
Tells the compiler to issue hints.
l
Tells the compiler to show the line numbers as it processes afile. Numbers are shown per 100.
u
Tells the compiler to print the names of the files it opens.
t
Tells the compiler to print the names of the files it triesto open.
p
Tells the compiler to print the names of procedures andfunctions as it is processing them.
c
Tells the compiler to warn you when it processes aconditional.
m
Tells the compiler to write which macros are defined.
d
Tells the compiler to write other debugging info.
a
Tells the compiler to write all possible info. (this is thesame as specifying all options)
0
Tells the compiler to write no messages. This is useful whenyou want to override the default setting in the configuration file.
b
Tells the compiler to show all procedure declarations if anoverloaded function error occurs.
x
Tells the compiler to output some executable info (for Win32platform only).
r
Rhide/GCC compatibility mode: formats the error differently, so theyare understood by RHIDE.

Options concerning files and directories

-exxx
tells the compiler that xxxis the directory where it can find the executables as (the assembler) and ld (the linker).
-FD
same as-e.
-Fexxx
This option tells the compiler to write errors, etc. tothe file xxx
-FExxx
set the executable/unit output path toxxx
-Fixxx
adds xxxto the path where the compiler searches for its include files.
-Flxxx
Adds xxxto the library searching path, and is passe to the linker.
-FLxxx
( Linux only) Tells the compiler to use xxxas the dynamic linker. Default this is /lib/ld-linux.so.2, orlib/ld-linux.so.1, depending on which one is found.
-Foxxx
Adds xxxto the object file path. This path is usedwhen looking for files that need to be linked in.
-Frxxx
tells the compiler that xxxcontains the compiler messages. Default the compiler has built-in messages. Specifying this option will override the default messages.(useful if you want to use a language other than the default language).
-Fuxxx
Addsxxxto the unit path.By default, the compiler only searches for units in the current directoryand the directory where the compiler itself resides. This option tells thecompiler also to look in the directory xxx
-FUxxx
Tells the compiler to write units in directory xxxinstead of the current directory.
-Ixxx
Add xxxto the include file search path.This path is used when looking for include files.

Options controlling the kind of outputfor more information on these options, see also the programmers manual.

-a
Tells the compiler not to delete the assembler file.This also counts for the (possibly) generated batch script.
-al
Tells the compiler to include the sourcecode linesin the assembler file as comments.
-an
Tells the compiler to include node information in the generated assembler file.This is mainly for use by the compiler developers.
-ap
Tells the compiler to use pipes to communicate with the assembler.
-ar
Tells the compiler to include register allocation/deallocation information.
-at
Tells the compiler to include temporary register allocation/deallocation information.
-Axxx
specifies what kind of assembler should be generated . Herexxxis one of the following :
AS
A unix .o (object) file, usingGNU AS
coff
coff object file (go32) using internal writer.
default
Use the default writer for the current platform.
elf
elf object file (linux, 32-bit only) using internal writer.
nasmcoff
a coff file using thenasmassembler.
nasmelf
a ELF32 file (LINUX only) using thenasmassembler.
nasmobj
a obj file using thenasmassembler.
masm
An obj file using the Microsoftmasmassembler.
pecoff
pecoff object file (win32) using internal writer.
tasm
An obj file using the Borlandtasmassembler.
wasm
An obj file using the Watcom assembler.
-Ccxxx
set the default calling convention to XXX.
-CD
Create dynamic library.
-Ce
Compile using emulated floating point instructions.
-Cfxxx
Set the used floating point instruction set to xxx.
-Cg
Generate PIC code.
-Chxxx
Reserves xxxbytes heap. xxxshould be between 1024 and 67107840.
-Ci
Generate Input/Output checking code.
-Cn
Omit the linking stage.
-Co
Generate Integer overflow checking code.
-CR
Verify object call validity (method calls mustbe valid).
-Cr
Generate Range checking code.
-Csxxx
Set stack size to xxxbytes.
-Ct
generate stack checking code.
-CX
Create a smartlinked library.
-dxxx
Define the symbol name xxxThis can be used to conditionally compile parts of your code.

-E
Same as -Cn.
-g
Generate debugging information for debugging withGDB
-gg
idem as -g.
-gd
generate debugging info for dbx.
-gh
use the heaptrc unit (see the units part of the FPC manual).
-gl
use the lineinfo unit for line information (see the units part of the FPC manual).
-gv
Generate information for debugging with valgrind.
-gw
Generate DWARF debugging information.
-Oxxx
optimize the compiler's output; xxxcan have one of the following values :
g
optimize for size, try to generate smaller code.
G
optimize for time, try to generate faster code (default).
r
keep certain variables in registers (experimental, use with caution).
u
uncertain optimizations
1
Level 1 optimizations (quick optimizations).
2
Level 2 optimizations (-O1 plus some slower optimizations).
3
Level 3 optimizations (-O2 plus -Ou).
pn
Specify processor : n can be one of
1
optimize for 386/486
2
optimize for Pentium/PentiumMMX (tm)
3
optimizations for PentiumPro / P-II / Cyrix 6x86 / K6 (tm)

The exact effect of these effects can be found in the programmers part of the manual.

-oxxx
Tells the compiler to use xxxas the name of the output file (executable). Only with programs.
-pg
Generate profiler code for gprof.
-s
Tells the compiler not to call the assembler and linker.Instead, the compiler writes a script, PPAS.BAT under DOS, orppas.sh under Linux, which can then be executed to produce anexecutable.
-sh
Tells the compiler to generate a script that can be used to assemble and link on the host system, not on the target system. Use this when cross-compiling.
-sr
Skip register allocation stage in compiler (use with -ar)
-st
Tells the compiler to generate a script that can be used to assemble and link on the target system, not on the host system. Use this when cross-compiling.
-Txxx
Specifies the target operating system. xxxcan be one of the following:
EMX
OS/2 and DOS via the EMX extender.
FREEBSD
FreeBSD
GO32V2
DOS and version 2 of the DJ DELORIE extender.
LINUX
Linux.
NETBSD
Netbsd.
NETWARE
Novell Netware module (clib)
NETLIBC
Novell Netware module (libc)
OPENBSD
OpenBSD
OS2
OS/2 (native mode)
SunOS
Solaris SunOS
WATCOM
WatCOM dos extender
WDOSX
WDosX Dos extender
WIN32
Windows 32 bit.
-uxxx
undefine the symbol xxxif it is defined. This is the opposite of the -d option.
-Xx
Executable options. These tell the compiler whatkind of executable should be generated. the parameter xcan be one of the following:
c
(Linux only, obsolete) Link with the C library. You should only use this whenyou start to port Free Pascal to another operating system.
D
Link with dynamic libraries (defines the FPC_LINK_DYNAMIC symbol)
d
Don't use the standard library path. Use this when cross-compiling, to avoidlinking with the host OS libraries.
Pxxx
Prepend the names of binutils (as, ld) with xxx. For use when cross-compiling.
rxxx
Set the library search path to xxx.
s
Strip the symbols from the executable.
S
Link with static libraries (defines the FPC_LINK_STATIC symbol)
t
Link statically (passes -static to the linker)
X
Link smart. Using this option sets the FPC_LINK_SMART symbol.

Options concerning the sources (language options)for more information on these options, see also in the Programmers Manual

-Mmode
Specify the language mode. modecan be one of the following:
delphi
Delphi-compatibility mode. This loads the objpas unit, and switches on ansistring mode (-Sh).
fpc
Default mode.
gpc
GNU pascal mode (does nothing at the moment)
macpas
Mac pascal mode. This loads the macpas unit and switches on some Mac extensions(mainly macros)
objfpc
Object Pascal mode. This loads the objpas unit.
tp
Turbo Pascal mode.
-Rxxx
Specifies what assembler you use in your "asm" assembler codeblocks. Here xxxis one of the following:
att
Asm blocks contain AT&T assembler.
intel
Asm blocks contain Intel assembler.
direct
Asm blocks should be copied as-is in the assemblerfile.
-S2
Switch on Delphi 2 extensions.
-Sa
Generate code for assertions.
-Sc
Support C-style operators, i.e. *=, +=, /= and -=.
-Sd
Tries to be Delphi compatible
-Se
The compiler stops after the first error. Normally,the compiler tries to continue compiling after an error, until 50 errors arereached, or a fatal error is reached, and then it stops. With this switch,the compiler will stop after the first error.
-Sg
Support the label and goto commands.
-Sh
use ansistrings by default.
-SIxxx
Specify the kind of interfaces. xxxcan be one of the following:
COM
use COM interfaces. (all interfaces descend from IUnknown)
CORBA
use CORBA interfaces. (no inheritance is supposed)
-Si
Support C++ style INLINE.
-Sm
Support C-style macros.
-So
Try to be Borland TP 7.0 compatible (no functionoverloading etc.).
-Sp
Try to beGPC (GNU Pascal Compiler)compatible.
-Ss
The name of constructors must be "init", and thename of destructors should be "done".
-St
Allow the "static" keyword in objects.
-Un
Do not check the unit name. Normally, the unit nameis the same as the filename. This option allows both to be different.
-Ur
Create a release unit. This sets a special flag in the unit, causing the compiler not to look for sources.
-Us
Compile a system unit. This option causes thecompiler to define only some very basic types.

 

SEE ALSO

fpc.cfg(5)ppdep(1)ppudump(1)ppumove(1)ptop(1)h2pas(1)ld(1)as(1)


 

Index

NAME
SYNOPSIS
DESCRIPTION
Version number
Usage
Options
SEE ALSO

This document was created byman2html,using the manual pages.