Compiler Option: -rr
- Source: https://www.freebasic.net/wiki/wikka.php?wakka=CompilerOptrr
- Last revised: 2021-10-12
Compile into *.asm file(s) only, do not assemble or link
Syntax
` -rr
`
Description
The -rr option specifies that any source files listed are to be compiled to *.asm files, and not compiled or linked into an executable. Unlike with the -r option, this works regardless of the used code generation backend.
When using the -rr option, -m must be specified when compiling a main source file.
Use the -RR option to preserve the generated *.asm files without affecting compilation/assembling/linking.
See also
- Compiler Option: -c
- Compiler Option: -r
- Compiler Option: -RR
- Compiler Option: -m
- Compiler Option: -gen
- Using the Command Line
Back to DocToc