First compile on the ESS EPICS environment. Success for the motor code.
Still missing: * scaler support * cleanup of Makefile
This commit is contained in:
@ -32,3 +32,5 @@ INSTALL_LOCATION=/afs/psi.ch/project/sinqdev/sinqepicsapp
|
|||||||
# You must rebuild in the iocBoot directory for this to
|
# You must rebuild in the iocBoot directory for this to
|
||||||
# take effect.
|
# take effect.
|
||||||
#IOCS_APPL_TOP = </IOC/path/to/application/top>
|
#IOCS_APPL_TOP = </IOC/path/to/application/top>
|
||||||
|
STATIC_BUILD=NO
|
||||||
|
SHARED_LIBRARIES=YES
|
||||||
|
@ -25,16 +25,16 @@ TEMPLATE_TOP=$(EPICS_BASE)/templates/makeBaseApp/top
|
|||||||
#SNCSEQ=$(EPICS_BASE)/../modules/soft/seq
|
#SNCSEQ=$(EPICS_BASE)/../modules/soft/seq
|
||||||
|
|
||||||
# EPICS_BASE usually appears last so other apps can override stuff:
|
# EPICS_BASE usually appears last so other apps can override stuff:
|
||||||
EPICS_BASE=/usr/local/epics
|
EPICS_BASE=/opt/epics/bases/base-3.14.12.5
|
||||||
|
|
||||||
# Set RULES here if you want to take build rules from somewhere
|
# Set RULES here if you want to take build rules from somewhere
|
||||||
# other than EPICS_BASE:
|
# other than EPICS_BASE:
|
||||||
#RULES=/path/to/epics/support/module/rules/x-y
|
#RULES=/path/to/epics/support/module/rules/x-y
|
||||||
MOTOR=/usr/local/epics/support/motor-6-7
|
MOTOR=/opt/epics/modules/motor/6.10.0/3.14.12.5
|
||||||
ASYN=/usr/local/epics/support/asyn-4-18
|
ASYN=/opt/epics/modules/asyn/4.27.0/3.14.12.5
|
||||||
STD=/usr/local/epics/support/std-3-1
|
#STD=/usr/local/epics/support/std-3-1
|
||||||
ANC=/usr/local/epics/anc350v17
|
#ANC=/usr/local/epics/anc350v17
|
||||||
STREAMS=/usr/local/epics/support/StreamDevice-2-6
|
#STREAMS=/opt/epics/modules/streamdevice/2.6.0/3.14.12.5
|
||||||
LAKESHORE336=/usr/local/epics/support/lakeshore336
|
#LAKESHORE336=/usr/local/epics/support/lakeshore336
|
||||||
BUSY=/usr/local/epics/support/busy-1-4
|
BUSY=/opt/epics/modules/busy/1.6.0/3.14.12.5
|
||||||
OXINSTCRYOJET=/usr/local/epics/support/OxInstCryojet-2-18-3
|
#OXINSTCRYOJET=/usr/local/epics/support/OxInstCryojet-2-18-3
|
||||||
|
@ -17,15 +17,21 @@ sinqEPICS_DBD += base.dbd
|
|||||||
|
|
||||||
# Include dbd files from all support applications:
|
# Include dbd files from all support applications:
|
||||||
sinqEPICS_DBD += sinq.dbd
|
sinqEPICS_DBD += sinq.dbd
|
||||||
sinqEPICS_DBD += pmacAsynIPPort.dbd pmacAsynMotorPort.dbd
|
#sinqEPICS_DBD += pmacAsynIPPort.dbd pmacAsynMotorPort.dbd
|
||||||
|
|
||||||
# Add all the support libraries needed by this IOC
|
# Add all the support libraries needed by this IOC
|
||||||
sinqEPICS_LIBS += motor asyn std anc350 anc350AsynMotor stream busy
|
sinqEPICS_LIBS += motor asyn busy
|
||||||
|
|
||||||
|
# Add to the include paths
|
||||||
|
USR_INCLUDES += -I /opt/epics/modules/asyn/4.21.0/3.14.12.5/include
|
||||||
|
USR_INCLUDES += -I /opt/epics/modules/motor/6.10.0/3.14.12.5/include
|
||||||
|
|
||||||
|
USR_LDFLAGS += -L /opt/epics/modules/motor/6.10.0/3.14.12.5/lib
|
||||||
|
|
||||||
# sinqEPICS_registerRecordDeviceDriver.cpp derives from sinqEPICS.dbd
|
# sinqEPICS_registerRecordDeviceDriver.cpp derives from sinqEPICS.dbd
|
||||||
sinqEPICS_SRCS += sinqEPICS_registerRecordDeviceDriver.cpp
|
sinqEPICS_SRCS += sinqEPICS_registerRecordDeviceDriver.cpp
|
||||||
sinqEPICS_SRCS += EL734Driver.cpp devScalerEL737.c pmacAsynIPPort.c
|
sinqEPICS_SRCS += EL734Driver.cpp
|
||||||
sinqEPICS_SRCS += pmacController.cpp pmacAxis.cpp
|
#sinqEPICS_SRCS += devScalerEL737.c
|
||||||
sinqEPICS_SRCS += NanotecDriver.cpp stptok.cpp
|
sinqEPICS_SRCS += NanotecDriver.cpp stptok.cpp
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,21 +3,20 @@
|
|||||||
#---------------------------------------------
|
#---------------------------------------------
|
||||||
registrar(EL734Register)
|
registrar(EL734Register)
|
||||||
registrar(NanotecRegister)
|
registrar(NanotecRegister)
|
||||||
addpath "/usr/local/epics/support/asyn-4-18/dbd"
|
addpath "/opt/epics/modules/asyn/4.27.0/3.14.12.5/dbd"
|
||||||
addpath "/usr/local/epics/dbd"
|
addpath "/opt/epics/bases/base-3.14.12.5/dbd"
|
||||||
addpath "/usr/local/epics/support/motor-6-7/dbd"
|
addpath "/opt/epics/modules/motor/6.10.0/3.14.12.5/dbd"
|
||||||
addpath "/usr/local/epics/support/std-3-1/dbd"
|
#addpath "/usr/local/epics/support/std-3-1/dbd"
|
||||||
addpath "/usr/local/epics/anc350v17/dbd"
|
#addpath "/usr/local/epics/anc350v17/dbd"
|
||||||
include "drvAsynIPPort.dbd"
|
include "asyn.dbd"
|
||||||
include "motorRecord.dbd"
|
include "motor.dbd"
|
||||||
include "motorSupport.dbd"
|
#include "motorSupport.dbd"
|
||||||
include "anc350AsynMotor.dbd"
|
|
||||||
|
|
||||||
include "scalerRecord.dbd"
|
#include "scalerRecord.dbd"
|
||||||
device(scaler,INST_IO,devScalerEL737,"asynScalerEL737")
|
#device(scaler,INST_IO,devScalerEL737,"asynScalerEL737")
|
||||||
|
|
||||||
#--------- For lakeshore
|
#--------- For lakeshore
|
||||||
addpath "/usr/local/epics/support/StreamDevice-2-6/dbd"
|
#addpath "/opt/epics/modules/streamdevice/2.6.0/3.14.12.5/dbd"
|
||||||
include "stream.dbd"
|
#include "streamdevice.dbd"
|
||||||
addpath "/usr/local/epics/support/busy-1-4/dbd"
|
addpath "/opt/epics/modules/busy/1.6.0/3.14.12.5/dbd"
|
||||||
include "busySupport.dbd"
|
include "busy.dbd"
|
||||||
|
Reference in New Issue
Block a user