close Warning: Can't use blame annotator:
svn blame failed on trunk/scripts/flair_compile_all.sh: 200029 - Couldn't perform atomic initialization

source: flair-dev/trunk/scripts/flair_compile_all.sh@ 12

Last change on this file since 12 was 12, checked in by Sanahuja Guillaume, 8 years ago

sinus

  • Property svn:executable set to *
File size: 4.3 KB
RevLine 
1#!/bin/bash
2ARCH_DIR=build_$(uname -m)
3NB_THREADS=$(nproc)
4from_scratch=no
5
6function green_echo () {
7 echo -e "\033[32m$1\033[0m"
8}
9
10function red_echo () {
11 echo -e "\033[31m$1\033[0m"
12}
13
14function check_error () {
15 if [ "$?" != "0" ]; then
16 red_echo "Error, exiting"
17 exit 1
18 fi
19}
20
21function sanity_check () {
22 if [ -z $FLAIR_ROOT ]; then
23 red_echo "You must set the FLAIR_ROOT environement variable"
24 exit 1
25 fi
26}
27
28function configure () {
29 if [ "$from_scratch" = "yes" ]; then
30 green_echo "Configuring $1/$2"
31 cd $1/$2
32
33 if [ -f cmake_codeblocks.sh ]; then
34 green_echo "only configuring it for $(uname -m)"
35 ./cmake_codeblocks.sh > /dev/null
36 else
37 rm -f build_arm/CMakeCache.txt
38 $FLAIR_ROOT/flair-dev/scripts/cmake_codeblocks.sh > /dev/null
39 fi
40
41 check_error
42 else
43 green_echo "Not configuring $1/$2"
44 fi
45}
46
47function cross_compile () {
48 if ! [ -f $1/$2/cmake_codeblocks.sh ]; then
49 green_echo "Cross compiling and installing $2"
50 cd $1/$2/build_arm
51 if [ "$from_scratch" = "yes" ]; then make clean > /dev/null; fi
52 make -j$NB_THREADS > /dev/null
53 check_error
54 make install
55 fi
56}
57
58function compile () {
59 green_echo "Compiling and installing $2"
60 cd $1/$2/$ARCH_DIR
61 if [ "$from_scratch" = "yes" ]; then make clean > /dev/null; fi
62 make -j$NB_THREADS > /dev/null
63 check_error
64 make install
65}
66
67function compile_flair() {
68 for projects in FlairCore FlairSensorActuator FlairFilter FlairMeta FlairSimulator ; do
69 configure $FLAIR_ROOT/flair-src/lib $projects
70 compile $FLAIR_ROOT/flair-src/lib $projects
71 cross_compile $FLAIR_ROOT/flair-src/lib $projects
72 done
73}
74
75function compile_tools() {
76 for projects in FlairGCS Controller/DualShock3 Dbt2csv; do
77 configure $FLAIR_ROOT/flair-src/tools $projects
78 compile $FLAIR_ROOT/flair-src/tools $projects
79 cross_compile $FLAIR_ROOT/flair-src/tools $projects
80 done
81}
82
83function compile_demos() {
84 for projects in Sinus; do
85 configure $FLAIR_ROOT/flair-src/demos $projects
86 compile $FLAIR_ROOT/flair-src/demos $projects
87 cross_compile $FLAIR_ROOT/flair-src/demos $projects
88 done
89exit 0
90 for projects in ex_opencv; do
91 configure $FLAIR_ROOT/uav_ex $projects
92 compile $FLAIR_ROOT/uav_ex $projects
93 cross_compile $FLAIR_ROOT/uav_ex $projects
94 done
95
96 for projects in control simulator; do
97 configure $FLAIR_ROOT/uav_ex/ex_simulator_framework $projects
98 compile $FLAIR_ROOT/uav_ex/ex_simulator_framework $projects
99 cross_compile $FLAIR_ROOT/uav_ex/ex_simulator_framework $projects
100 done
101
102 for projects in simulator uav; do
103 configure $FLAIR_ROOT/uav_ex/demo_optitrack_framework $projects
104 compile $FLAIR_ROOT/uav_ex/demo_optitrack_framework $projects
105 cross_compile $FLAIR_ROOT/uav_ex/demo_optitrack_framework $projects
106 done
107
108 for projects in simulator uav; do
109 configure $FLAIR_ROOT/uav_ex/demo_fo_framework $projects
110 compile $FLAIR_ROOT/uav_ex/demo_fo_framework $projects
111 cross_compile $FLAIR_ROOT/uav_ex/demo_fo_framework $projects
112 done
113
114 for projects in simulator uav; do
115 configure $FLAIR_ROOT/uav_ex/demo_flotte_framework $projects
116 compile $FLAIR_ROOT/uav_ex/demo_flotte_framework $projects
117 cross_compile $FLAIR_ROOT/uav_ex/demo_flotte_framework $projects
118 done
119
120 for projects in uav; do
121 configure $FLAIR_ROOT/uav_ex/demo_ligne_framework $projects
122 compile $FLAIR_ROOT/uav_ex/demo_ligne_framework $projects
123 cross_compile $FLAIR_ROOT/uav_ex/demo_ligne_framework $projects
124 done
125
126 for projects in CustomReferenceAngles CustomTorques; do
127 configure $FLAIR_ROOT/uav_ex/skeletons_framework $projects
128 compile $FLAIR_ROOT/uav_ex/skeletons_framework $projects
129 cross_compile $FLAIR_ROOT/uav_ex/skeletons_framework $projects
130 done
131}
132
133sanity_check
134
135printf "Compile all from scratch [Y/n]?"
136read answer
137
138if [ "$answer" = "" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
139 from_scratch=yes
140fi
141
142printf "Compile Flair libs [Y/n]?"
143read answer
144
145if [ "$answer" = "" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
146 compile_flair
147fi
148
149printf "Compile Flair tools [Y/n]?"
150read answer
151
152if [ "$answer" = "" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
153 compile_tools
154fi
155
156printf "Compile demos [Y/n]?"
157read answer
158
159if [ "$answer" = "" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
160 compile_demos
161fi
162
163exit 0
164printf "Compile Flair documentation [Y/n]?"
165read answer
166
167if [ "$answer" = "" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
168 cd $FLAIR_ROOT/flair-src/lib
169 doxygen Doxyfile.in
170fi
171
172
173exit 0
Note: See TracBrowser for help on using the repository browser.