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 synApps from Git |
From: | Mark Rivers via Tech-talk <[email protected]> |
To: | "'Siddons, David'" <[email protected]> |
Cc: | tech-talk <[email protected]> |
Date: | Sun, 27 Oct 2019 19:26:57 +0000 |
Hi Pete, The assemble_synApps.sh script in the fix_areaDetector branch of epics-synApps/support definitely works OK, I just tested it: I just executed the following commands (recalled from “history”, removing commands that were not needed). 1240 14:12 git clone https://github.com/epics-synApps/support 1242 14:12 cd support/ 1244 14:12 git checkout fix_areaDetector 1247 14:14 ./assemble_synApps.sh 1248 14:15 cd synApps/support/ 1249 14:15 vi configure/RELEASE (I edited configure/RELEASE to set EPICS_BASE correctly) 1250 14:16 make release 1251 14:16 make -sj 1252 14:19 ls -l areaDetector-R3-7/ADSimDetector/iocs/simDetectorIOC/bin/linux-x86/ The build took under 3 minutes. The last command shows that ADSimDetector was built correctly. corvette:support/synApps/support>ls -l areaDetector-R3-7/ADSimDetector/iocs/simDetectorIOC/bin/linux-x86/ total 76 -r-xr-xr-x 1 epics domain users 75944 Oct 27 14:19 simDetectorApp The xxx module was also built correctly: corvette:support/synApps/support>ls -l xxx-R6-1/bin/linux-x86/ total 136 -r-xr-xr-x 1 epics domain users 137556 Oct 27 14:19 xxx Mark From: Siddons, David <[email protected]>
Hi Mark, The assemble_synApps script itself calls "make release" as its final command. So the make knows where to look, but there's nothing there to find because that module hasn't yet
been built. For example, areaDetector depends on busy and calc, but the makefile tries to build them in alphabetical order. The script needs to know about dependencies, or at least take them into account when it creates the makefile. Pete. From: Mark Rivers <[email protected]> Hi Pete, |