From 58f6f4124ea11f2e90a737dae4febfd62173146c Mon Sep 17 00:00:00 2001 From: Emily Grace Seville Date: Mon, 3 Jan 2022 06:30:53 +1000 Subject: [PATCH] pabcnetcclear: update page (#7532) --- pages/windows/pabcnetcclear.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/pages/windows/pabcnetcclear.md b/pages/windows/pabcnetcclear.md index 0669901ec..ff7d198c1 100644 --- a/pages/windows/pabcnetcclear.md +++ b/pages/windows/pabcnetcclear.md @@ -3,14 +3,22 @@ > Preprocess and compile PascalABC.NET source files. > More information: . -- Compile a source file into an executable with the same name: +- Compile a given source file into an executable with the same name: `pabcnetcclear {{path/to/file.pas}}` -- Compile a source file into an executable with the same name along with or without debug info: +- Compile a given source file into an executable with the specified name: + +`pabcnetcclear /Output:{{path/to/file.pas}} {{path/to/file.pas}}` + +- Compile a given source file into an executable with the same name along with/without debug information: `pabcnetcclear /Debug:{{0|1}} {{path/to/file.pas}}` -- Allow units to be searched in a path while compiling a source file into an executable with the same name: +- Allow units to be searched in a path while compiling a given source file into an executable with the same name: `pabcnetcclear /SearchDir:{{path/to/dir}} {{path/to/file.pas}}` + +- Compile a given source file into an executable, defining a symbol: + +`pabcnetcclear /Define:{{symbol}} {{path/to/file.pas}}`