Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Open iocBoot/vioc-b34-bd32/Makefile and notice that ARCH is set to linuxRT-x86.
Open iocBoot/vioc-b34-bd32/st.cmd and notice that this script is setup to pick the binary from  linuxRT-x86 directory.

(h) Uncomment If you have an EVR in your system, uncomment the following lines lines in MyTestApp/src/Makefileif you have a PMC EVR230 installed in your system that you'd like to use::

 

# MyTest_DBD += evrSupport.dbd
# MyTest_DBD += devMrfEr.dbd

.....

Ensure the following lines are not commented as well:

# MyTest_LIBS += evrSupport
# MyTest_LIBS += devMrfEr

....

# ifeq ($(T_A),linuxRT-x86)
    MyTest_LIBS += drvMrf

#  MyTest_LIBS += mrfApi

endif

if you have a PMC EVR230 installed in your system that you'd like to use:# endif

To add support for PCI-express EVR300, also add the following lines to MyTestApp/src/Makefile:

MyTest_DBD += drvUioPciGen.dbd dbd  MyTest

 MyTest_DBD += devBusMapped.dbd dbd 

 MyTest MyTest_DBD += epicspci.dbd

.....

IPCTests_LIBS += drvUioPciGen

IPCTests_LIBS += devBusMapped

IPCTests_LIBS += epicspci

(i) Now 'make' your application from the top level directory $(TOP) to ensure your changes to  RELEASE files are good:

...