LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

using libraries developed in C

Hello,
 
I have a library to read and write files in SAC format (Seismic Analysis Code). The library has .a extension. I would like to know
if I can use this library in LabVIEW and how.
 
I'll be grateful for any help that you can provide me.
 
Regards, David Tapia
0 Kudos
Message 1 of 3
(2,768 Views)
A .a file usually refers to a library that you can link a program to. For
instance, if you program in c, you'd include the headers of the library, and
add the library to your linker libraries.

So the only way to use it is to make a progral in c that exports all the
functions.

Another problem is that the .a extension is used in Unix and Linux systems.
But GNU compilers for windows also use .a, so there is no way to tell if it
is a windows or Linux library. I'm not even 100% sure if it matters, but
normally compiled code is OS specific.

Regards,

Wiebe.


0 Kudos
Message 2 of 3
(2,743 Views)
thank you for your help.
 
best regards, David Tapia
0 Kudos
Message 3 of 3
(2,733 Views)