02-14-2017 12:41 AM
In Windows, LabVIEW can build .dll file and other software can call that dll.
How about that in Mac OS? I found the dll in windows is similar to the framwork in Mac.
Can LabVIEW for Mac build framework? Thus other mac app can call that framework.
02-14-2017 07:22 PM
Hi, Jasonmark,
you can build .so file in Mac OS which is similar to the shared library in Linux.
1. Use -dynamiclib
option to compile a dynamic library on OS X:
http://stackoverflow.com/questions/14173260/creating-shared-libraries-in-c-for-osx
2. Use Xcode to creat a shared library:
https://discussions.apple.com/thread/2196462?start=0&tstart=0
02-14-2017 08:30 PM
Hi L1yang,
I mean the opposite way: LabVIEW itself build framework(sharelib) and called by Xcode software.
For example, I want to use FFT algorithm in xcode. A good way is use LabVIEW to build FFT.vi to framework(sharelib), and Xcode can call FFT framework.
02-15-2017 03:59 AM - last edited on 01-15-2025 04:42 PM by Content Cleaner
Hi, Jasonmark,
Sorry for misunderstanding your question.
It is also possible for Labview to create share library (.framework file) in Mac OS.
Regards,
L1yang.
02-15-2017 07:07 PM - last edited on 01-15-2025 04:43 PM by Content Cleaner
You can use the Application Builder to build a shared library in Mac OS.