> I'm just wondering if there is a compiler for Labview? If so where can I
> aquire it?
>
I realize that I'm jumping in late here, everything has already been
asked and
answered. What I wanted to do was to shed some light on what a compiler is.
A C/C++ compiler doesn't compile code into an EXE. Technically, a compiler
takes a source language and produces another language, most commonly the machine
instructions for a CPU. The C compiler stores these in .obj or object files,
and then a linker takes the .obj files along with .lib and the like and produce
an .exe.
The LV environment will compile the diagram into machine code anytime that
the VI is run. The execution of the VI involves jumping to the
generated code.
The application builder takes a bunch of VIs,
and some support code and links
them together into an .exe.
Anyway, as I said, the answers were correct and I'm just throwing in
some trivia.
Greg McKaskle