flexdacc --compile
Function
Compiles firmware. When this command is executed:
- flexdacc scans user files and generates pre-compiled files.
- Calls the
DSL compiler and solver to processDSL code. - Passes the compilation command to the compiler (aarch64-none-elf-gcc), that is, executes aarch64-none-elf-gcc [options].
Syntax
flexdacc --compile [options]
Parameter Description
Parameter |
Description |
|---|---|
options |
Compilation parameter, which is directly passed to the compiler. |
The
Example
- Invoke flexdacc to compile C code.
flexdacc --compile -c test.c -o test.o
- Invoke flexdacc to compile
DSL code.flexdacc --compile -c test.hdr -o test.o
Parent topic: flexdacc Commands