From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

What process do you use to strip unneeded VIs from your builds?

I've got a big legacy codebase, and building applications that reuse code means big big build times. What confuses me is the inclusion of VIs and entire classes that appear nowhere in the call chain of the Startup VI. There's not even dynamic dispatch used in some of these applications, so it's hard to understand why these inclusions are happening.

How do you slim down your binaries and build times? Refactoring into a bunch of libraries? Avoiding any and all dispatch? Something else?

0 Kudos
Message 1 of 2
(462 Views)

You can't strip VIs from classes but anything not in the call hierarchy and in a project library gets removed by default in a build. And VIs only in the project and not in libraries/classes only get included if they're a static dependency anyway.

library vis.png

 

If you want to strip down, you'd need to have less functionality in classes if possible and go through that refactoring process. If that's not feasible then you can at least try to perform separate PPL builds to be able to build in chunks and only build layers that have updates but that also still requires proper dependency management and encapsulation within the classes and libraries.

~ The wizard formerly known as DerrickB ~
Gradatim Ferociter
0 Kudos
Message 2 of 2
(410 Views)