-
Notifications
You must be signed in to change notification settings - Fork 5
install 1
Andrew Johnson edited this page Aug 19, 2016
·
2 revisions
These instructions apply when building IOC applications against EPICS Base version 3.13.2 through 3.13.10, with IPAC versions 2.0 through 2.3. For use with other versions of Base, see here (3.13.0 - 3.13.1), here (3.14.1 - 3.14.5) or here (3.14.6 onward).
-
Edit the <ioctop> application's
config/RELEASEfile and add the lineIPAC=/path/to/ipac/version -
In the application source directory where the base object files are linked together, edit
Makefile.Vxand addLIBOBJS += $(IPAC_BIN)/ipacLib # for drvIpac, and LIBOBJS += $(IPAC_BIN)/tip810Lib # if you want CANbus support LIBOBJS += $(IPAC_BIN)/tyGSOctal.o # for the Octal Serial driver
-
Ensure the following is included in the construction of the application's database definition file
include "drvIpac.dbd" # if you only want drvIpac, or include "devTip810.dbd" # if you want CANbus support too
-
Rebuild the application and use the newly installed support as desired.