Skip to content

Commit bf67ebe

Browse files
committed
automatic make script with debug turned on for FEC and sPyNNaker
1 parent 69b2a76 commit bf67ebe

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

automatic_make_debug.sh

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# This script assumes it is run from the directory holding all github projects in parellel
2+
# sh SupportScripts/automatic_make.sh
3+
4+
cd spinnaker_tools
5+
source $PWD/setup
6+
make clean
7+
make || exit $?
8+
cd ..
9+
cd spinn_common
10+
make clean
11+
make install-clean
12+
make || exit $?
13+
make install
14+
cd ..
15+
cd SpiNNFrontEndCommon/c_common/
16+
cd front_end_common_lib/
17+
make install-clean
18+
cd ..
19+
make clean
20+
make FEC_DEBUG=DEBUG || exit $?
21+
make install
22+
cd ../..
23+
cd sPyNNaker/neural_modelling/
24+
source $PWD/setup.bash
25+
make clean
26+
make SPYNNAKER_DEBUG=DEBUG || exit $?
27+
cd ../../SpiNNakerGraphFrontEnd/spinnaker_graph_front_end/examples/
28+
make clean
29+
make || exit $?
30+
echo "completed"

0 commit comments

Comments
 (0)