|
Size: 835
Comment:
|
Size: 2100
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 3: | Line 3: |
| == EPICS == Well this is not a LIGO software, but it is essential for a control room computer. === EPICS Base === Download the EPICS base package from http://www.aps.anl.gov/epics/base/index.php Unpack it. Set/unset environmental variables. {{{ setenv EPICS_HOST_ARCH linux-x86_64 unsetenv SCRIPTS }}} Compile {{{ make }}} Install {{{ cd .. cp -r base-3.14.0 /cvs/cds/caltech/apps/linux64/epics/base }}} === Extensions === Download the archive containing the extensions directory structure. http://www.aps.anl.gov/epics/download/extensions/extensionsTop_20070703.tar.gz Unpack it to /cvs/cds/caltech/apps/linux64/epics/ Download necessary extensions (medm, ezca, etc). Unpack it into /cvs/cds/caltech/apps/linux64/epics/extensions/src/ Move to the extracted directory and type {{{make}}} to compile the extension. |
|
| Line 4: | Line 38: |
| Here is what I tried to get the build the GDS software. The compilation completes but dtt does not run. | |
| Line 26: | Line 61: |
| cd gds | |
| Line 38: | Line 74: |
I had to tweak some Makefiles. First, I edited Monitors/Makefile and emptied SUBDIRS so that no monitor will be built. If you want to compile DMT monitors, you should not do this. Next, I edited {{{DTT/src/Makefile}}} to add {{{$(epicslib)}}} at the end of the definition of {{{LDADD}}}. |
Building LIGO softwares for 64 bit linux
EPICS
Well this is not a LIGO software, but it is essential for a control room computer.
EPICS Base
Download the EPICS base package from http://www.aps.anl.gov/epics/base/index.php
Unpack it. Set/unset environmental variables.
setenv EPICS_HOST_ARCH linux-x86_64 unsetenv SCRIPTS
Compile
make
Install
cd .. cp -r base-3.14.0 /cvs/cds/caltech/apps/linux64/epics/base
Extensions
Download the archive containing the extensions directory structure. http://www.aps.anl.gov/epics/download/extensions/extensionsTop_20070703.tar.gz
Unpack it to /cvs/cds/caltech/apps/linux64/epics/
Download necessary extensions (medm, ezca, etc).
Unpack it into /cvs/cds/caltech/apps/linux64/epics/extensions/src/
Move to the extracted directory and type make to compile the extension.
GDS software
Here is what I tried to get the build the GDS software. The compilation completes but dtt does not run.
First you have to install ROOT.
Installing ROOT
Download ROOT-5.20 from http://root.cern.ch/root/Version520.html
Expand the archive and run the configure script.
./configure linuxx8664gcc --prefix=/cvs/cds/caltech/apps/linux64/root
Build & install.
make make install
Building GDS
Check out the GDS CVS tree.
setenv CVSROOT :pserver:readonly@ldas-sw.ligo.caltech.edu:/ldcg_server/common/repository_gds cvs login m0n1t0r cvs checkout gds cd gds
Set environmental variables.
setenv GDSBUILD online setenv ROOTSYS /cvs/cds/caltech/apps/linux64/root
Prepare the building environment.
./bootstrap ./configure --enable-dtt --enable-online --prefix=/cvs/cds/caltech/apps/linux64/gds
I had to tweak some Makefiles. First, I edited Monitors/Makefile and emptied SUBDIRS so that no monitor will be built. If you want to compile DMT monitors, you should not do this.
Next, I edited DTT/src/Makefile to add $(epicslib) at the end of the definition of LDADD.
