1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 <2006> 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 | Index | 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 <2006> 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 |
<== Date ==> | <== Thread ==> |
---|
Subject: | Re: Building and testing Libera EPICS |
From: | Michael Abbott <[email protected]> |
To: | Andrew Johnson <[email protected]> |
Cc: | [email protected], tech talk <[email protected]> |
Date: | Wed, 22 Nov 2006 11:54:31 +0000 (GMT) |
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$EPICS_BASE/lib" export PATH="$PATH:$EPICS_BASE/bin"
Both of the above are incorrect, all EPICS install directories have an architecture component as well; you need to use these instead:
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$EPICS_BASE/lib/$EPICS_HOST_ARCH" export PATH="$PATH:$EPICS_BASE/bin/$EPICS_HOST_ARCH"
If you install EPICS as I instruct Libera users: 1. build EPICS 2. run install-epics on the host 3. run libera-install-epics on the target then the following files are installed on the *target*: /opt/epics/lib <- copy of $EPICS_BASE/lib/linux-arm/*.so /opt/epics/bin <- only $EPICS_BASE/bin/linux-arm/caRepeater