ADM-XRC SDK 2.8.1 User Guide (Linux)
© Copyright 2001-2009 Alpha Data


ADM-XRC API library

The ADM-XRC API library is a shared-object (.so) library that is part of the driver package. It is normally installed in one of the system directories such as /usr/lib/. To make use of it, applications must use -ladmxrc2 when linking. For example,

$ ld -o myapp myapp1.o myapp2.o ... -ladmxrc2

If other system libraries are required, such as the Math library or the POSIX Thread library, specify these libraries after -ladmxrc2 on the command line. For example,

$ ld -o myapp myapp1.o myapp2.o ... -ladmxrc2 -lpthread -lm

 


 Top of page