LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Conditional Disable Symbols in Compiled Applications

Is it possible to set different conditional disables as part of the application builder? 
I have an application in which I turn on lots of things while debugging, but I want them all off whenever I build a release.  In C I would use a #define that I set in the makefile and pass in to the compiler on the command line.  Does anyone know how to do something similar?  I would also like to be able to build slightly different versions off the same codebase, ideally with several CalVIEW Compiled Release objects in the project.
 
Thanks,
--Matt
0 Kudos
Message 1 of 7
(3,452 Views)
Are you using the "Conditional Disable" structure? It's available in LabVIEW 8.20, don't remember if it's in LabVIEW 8
0 Kudos
Message 2 of 7
(3,441 Views)

That's correct, I am wanting to use the conditional disable structure.  More to the point I want to define conditional disable symbols in the application builder.

Thanks,

--Matt

0 Kudos
Message 3 of 7
(3,437 Views)
The conditional disable symbols are created by right-clicking on the project in the project explorer and selecting "Properties". You can't (AFAIK) set these from within a build specification.
0 Kudos
Message 4 of 7
(3,433 Views)
A different approach that would get you to the same end point might be to utilize dynamic linking. In this situation, the code would always look for the plugin VIs in a known location (*.llb). Depending upon the desired execution environment you could install different libraries for the application to link to when it starts up. This would even be more flexible in that it would allow you to switch between normal and debug versions of the code without rebuilding the application.

Mike...

Certified Professional Instructor
Certified LabVIEW Architect
LabVIEW Champion

"... after all, He's not a tame lion..."

For help with grief and grieving.
0 Kudos
Message 5 of 7
(3,424 Views)

yes, this thread is old, but my august 2009 search still turned it up, maybe somebody has some new insight...

 

 

as far as the dynamic linking advice,  wouldn't that mean i would have to keep up with two versions of code...  assuming the vi's in these libs were derived from a common code base that would have to be maintained, except for these conditional differences, like the debug statements.

 

how about just setting the conditional symbol for "debug" as true during development, and false before building the executable for delivery?

0 Kudos
Message 6 of 7
(3,081 Views)
Why don't we have an preset conditional disable symbol for "IDE" and "Executable" so that we can handle differneces in behaviour between IDE and EXEs this way?
Message 7 of 7
(2,862 Views)