The eqc command invokes the embedded QUEL preprocessor for C.
The eqc command has the following format:
eqc {flags} [filename]
Specify options to the preprocessor. For details on the flags, see the Embedded QUEL Companion Guide.
Indicates the name of the file containing the embedded QUEL C source for your application.
For information on compiling and linking QUEL/C programs that is specific to your operating system, check the Readme file.
This command preprocesses file1.qc to file1.c:
eqc file1
This command preprocesses file2.xc to file2.c and creates listing file2.lis:
eqc -l file2.xc
This command accepts input from standard input and writes generated code to standard output:
eqc –s
This command preprocesses file3.qc to file3.out:
eqc -ffile3.out file3
This command displays a list of flags available for this command:
eqc
This command preprocesses and compiles the file test1:
eqc test1.qc
cc -c test1.c