HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

pabcnetcclear — Preprocess and compile PascalABC.NET source files. More information: <https://pascalabc.net/>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandnetandpascalabccompileclipabcnetcclearpreprocess
windows

Problem

How to use the pabcnetcclear command: Preprocess and compile PascalABC.NET source files. More information: <https://pascalabc.net/>.

Solution

pabcnetcclear — Preprocess and compile PascalABC.NET source files. More information: <https://pascalabc.net/>.

Compile the specified source file into an executable with the same name:
pabcnetcclear {{path\to\source_file.pas}}


Compile the specified source file into an executable with the specified name:
pabcnetcclear /Output:{{path\to\file.exe}} {{path\to\source_file.pas}}


Compile the specified source file into an executable with the same name along with/without debug information:
pabcnetcclear /Debug:{{0|1}} {{path\to\source_file.pas}}


Allow units to be searched in the specified path while compiling the source file into an executable with the same name:
pabcnetcclear /SearchDir:{{path\to\directory}} {{path\to\source_file.pas}}


Compile the specified source file into an executable, defining a symbol:
pabcnetcclear /Define:{{symbol}} {{path\to\source_file.pas}}

Code Snippets

Compile the specified source file into an executable with the same name

pabcnetcclear {{path\to\source_file.pas}}

Compile the specified source file into an executable with the specified name

pabcnetcclear /Output:{{path\to\file.exe}} {{path\to\source_file.pas}}

Compile the specified source file into an executable with the same name along with/without debug information

pabcnetcclear /Debug:{{0|1}} {{path\to\source_file.pas}}

Allow units to be searched in the specified path while compiling the source file into an executable with the same name

pabcnetcclear /SearchDir:{{path\to\directory}} {{path\to\source_file.pas}}

Compile the specified source file into an executable, defining a symbol

pabcnetcclear /Define:{{symbol}} {{path\to\source_file.pas}}

Context

tldr-pages: windows/pabcnetcclear

Revisions (0)

No revisions yet.