Salome HOME
Update for Salome 6.1.0
[tools/install.git] / config_files / build.csh
1 #!/bin/csh -f
2
3 ####################################################################################
4 #  File      : build.csh
5 #  Created   : Thu Jan 27 09:50:55 2005
6 #  Author    : Vadim SANDLER, Open CASCADE SAS (vadim.sandler@opencascade.com)
7 #  Project   : SALOME
8 #  Module    : Installation Wizard
9 #  Copyright : 2002-2008 CEA
10 #
11 #  This script is the part of the SALOME installation procedure.
12 #
13 #  This script can be used to build and install SALOME modules from sources.
14 #  Try build.csh -h for more details about usage.
15 #
16 ####################################################################################
17
18 set is_build_configure=0
19 set is_configure=0
20 set inst_with_gui=1
21 set is_delete=0
22 set verbose_level=2
23 set params=""
24 set modules=(KERNEL GUI GEOM MED SMESH VISU YACS NETGENPLUGIN GHS3DPLUGIN BLSURFPLUGIN HexoticPLUGIN GHS3DPRLPLUGIN COMPONENT PYCALCULATOR CALCULATOR HELLO PYHELLO LIGHT PYLIGHT SIERPINSKY RANDOMIZER MULTIPR JOBMANAGER)
25 set optim=""
26 set is_install=1
27 set is_help=0
28 set is_tui=0
29 set prefix=""
30 set def_install_dir="/INSTALL"
31 set b_params=""
32
33 #########################################################
34 # parse parameters
35 #########################################################
36 while ( ${%1} > 0 )
37     if ( "$1" == "-b" ) then
38         set is_build_configure=1
39         set is_configure=1
40     else if ( "$1" == "-c" ) then
41         set is_configure=1
42     else if ( "$1" == "-w" ) then
43         set inst_with_gui=0
44     else if ( "$1" == "-d" ) then
45         set is_delete=1
46     else if ( "$1" == "-o" ) then
47         set optim="--enable-production=yes --disable-debug"
48     else if ( "$1" == "-v" ) then
49         shift
50         set verbose_level=$1
51     else if ( "$1" == "-p" ) then
52         shift
53         set is_install=1
54         set prefix=$1
55     else if ( "$1" == "-h" ) then
56         set is_help=1
57     else if ( "$1" == "-t" ) then
58         set is_tui=1
59     else
60         set ckt=`echo ${modules} | grep -E "\<$1\>"`
61         if ( "$ckt" != "" ) then
62             set params="$params $1"
63         else
64             set b_params="$b_params $1"
65             echo "\!\!\! Warning \!\!\! Unknown module: $1."
66         endif
67     endif
68     shift
69 end
70
71 #########################################################
72 # if -h option is given - print help info and exit 
73 #########################################################
74 if ( $is_help == 1 ) then
75 echo ""
76 echo ""
77 echo "Description:"
78 echo "            Builds given SALOME modules by performing make and make install commands"
79 echo ""
80 echo "Usage:"
81 echo "            build.csh [ <option> ] ... [ <module> [ <module> ... ] ]"
82 echo ""
83 echo "<module>    Modules to build, separated by space(s)."
84 echo "            If no modules are given - all SALOME modules are assumed."
85 echo "            Note, that modules given in command lines are automatically sorted in such order"
86 echo "            to support correct modules dependencies."
87 echo ""
88 echo "Options:"
89 echo "-b          Perform build_configure command for all given modules."
90 echo "            This option forces configure (-c) key to be set. Default is off."
91 echo ""
92 echo "-c          Perform configure command for all given modules. Default is off."
93 echo ""
94 echo "-w          Add --without-gui key to build_configure and configure commands"
95 echo "            to build SALOME module sources without GUI."
96 echo "            By default sources are built with GUI."
97 echo ""
98 echo "-d          Delete build directories before calling configure, to force full rebuild"
99 echo "            and reinstall of the module."
100 echo "            Use this option carefully."
101 echo ""
102 echo "-o          Build sources in optimized mode. Default is off that means debug mode."
103 echo "            Use this option together with -c or -b."
104 echo "            This option can require -d option to be set (to ensure that previously"
105 echo "            created build directories are removed to enforce rebuild in optimized mode)."
106 echo ""
107 echo "-t          Performs make dev_docs step to build TUI documentation for those modules"
108 echo "            which support this. Default is off."
109 echo ""
110 echo "-p <prefix> Define the directory where to install modules after compilation."
111 echo "            By default the directory where compilation is performed is used."
112 echo ""
113 echo "-v <level>  Verbose level (0-2, default 2): print information on build status:"
114 echo "            0: only 'make' errors"
115 echo "            1: 0 + compiler and other errors (including build_configure, configure)"
116 echo "            2: 1 + compiler and other warnings "
117 echo ""
118 echo "-h          Prints this help information."
119 echo ""
120 echo "Note:       If no keys are given script just performs make step."
121 echo ""
122 echo "Example:"
123 echo "            ./build.csh -o -p /home/user/salome -b KERNEL MED GEOM"
124 echo ""
125 echo "            This will make KERNEL, GEOM and MED modules: build_configure, configure, make"
126 echo "            and install procedures will be performed for all specified modules."
127 echo "            The modules will be built in the optimized mode"
128 echo ""
129 exit
130 endif
131
132 #########################################################
133 # sort modules in proper order according to the dependancies
134 #########################################################
135 if ( "${params}" != "" ) then
136     set xparams=""
137     foreach module (${modules})
138         set ckt=`echo ${params} | grep -E "\<${module}\>"`
139         if ( "$ckt" != "" ) then
140             set xparams="$xparams $module"
141         endif
142     end
143     set modules=($xparams $b_params)
144 else if ( "${b_params}" != "" ) then
145     set modules=($b_params)
146 endif
147
148 echo ">>> The following modules will be built:"
149 echo $modules
150
151 #########################################################
152 # set environment
153 #########################################################
154 set env_script=`dirname $0`/env_build.csh
155 if ( ! -e $env_script ) then
156     set env_script=`dirname $0`/env_products.csh
157 endif
158 if ( ! -e $env_script ) then
159     set env_script=`dirname $0`/env.sh
160 endif
161 if ( -e $env_script ) then
162     echo ">>> Setting environment"
163     source $env_script
164 else
165     echo "\!\!\! Warning \!\!\! Environment is not set."
166     echo "No environment file (env_build.sh, env_products.sh, env.sh) is found."
167     echo "Proceed with the current environment."
168 endif
169
170 set BUILD_DIR=${PWD}
171 set LOG_DIR=${BUILD_DIR}/LOGS
172
173 #########################################################
174 # define installation prefix
175 #########################################################
176 if ( "$prefix" == "" ) then
177     echo "\!\!\! Warning \!\!\! Installation directory is not set."
178     echo "All the modules will be installed to the ${BUILD_DIR}${def_install_dir}"
179 else
180     set is_absolute=`echo $prefix | grep -e "^/"`
181     if ( "$is_absolute" == "" ) then
182         set prefix=${BUILD_DIR}/$prefix
183         echo "\!\!\! Warning \!\!\! Relative prefix is used."
184         echo "All the modules will be installed to the $prefix"
185     endif
186 endif
187
188 #########################################################
189 # create log directory
190 #########################################################
191 if ( ! -e ${LOG_DIR} ) then
192     mkdir -p ${LOG_DIR}
193 endif
194
195 echo "==========================================================================="
196 echo "Starting SALOME build at `date`"
197 echo "==========================================================================="
198
199 #########################################################
200 # loop for all given modules
201 #########################################################
202 foreach module (${modules})
203   echo ">>> Processing ${module} module"
204
205   set module_src=`printenv ${module}_SRC_DIR`
206   set module_build=${BUILD_DIR}/${module}_BUILD
207
208   if ( ${module_src} != "" ) then
209     cd ${BUILD_DIR}
210     #########################################################
211     # check if sources directory exists
212     #########################################################
213     if ( ! -e ${module_src} ) then
214         echo "\!\!\! Error \!\!\! Can't find sources directory: ${module_src} does not exist."
215         continue
216     endif
217     #########################################################
218     # check if configure script exists
219     #########################################################
220     set cfg_exist=0
221     if ( -e ${module_src}/configure ) then
222         set cfg_exist=1
223     endif
224     #########################################################
225     # perform build_configure if -b flag is given or if 
226     # configure script does not exist (first compilation?)
227     #########################################################
228     if ( $is_build_configure == 1 || $cfg_exist == 0 ) then
229         echo "... Performing build_configure"
230         #########################################################
231         # check if build_configure script exists
232         #########################################################
233         if ( ! -e ${module_src}/build_configure ) then
234             echo "\!\!\! Warning \!\!\! Can not find build_configure script in ${module_src}."
235         else
236             #########################################################
237             # call build_configure
238             #########################################################
239             set mybuildconf_keys="${BUILDCONF_OPTS}"
240             if ( $inst_with_gui == 0 ) then
241                 set mybuildconf_keys="${mybuildconf_keys} --without-gui"
242             endif
243             cd ${module_src}
244             ./build_configure ${mybuildconf_keys} >& ${LOG_DIR}/build_configure_${module}.log
245             #########################################################
246             # echo possible errors
247             #########################################################
248             if ( $verbose_level > 0 ) then
249                 cat ${LOG_DIR}/build_configure_${module}.log | grep -E "(failed|: error:)" >/dev/stderr
250             endif
251         endif
252     endif
253     #########################################################
254     # deleting build directory if -d flag is given
255     #########################################################
256     if ( -e ${module_build} && $is_delete == 1 ) then
257         echo "... Removing ${module_build}"
258         chmod -R +w ${module_build} && rm -rf ${module_build} >& /dev/null
259         if ( "$?" != "0" ) then
260             echo "\!\!\! Warning \!\!\! Cannot remove build directory ${module_build}. Permission denied."
261         endif
262     endif
263     #########################################################
264     # creating build directory if it does not exist
265     #########################################################
266     if ( ! -e ${module_build} ) then
267         mkdir -p ${module_build} >& /dev/null
268         if ( "$?" != "0" ) then
269             echo "\!\!\! Error \!\!\! Cannot create build directory ${module_build}. Permission denied."
270             continue
271         endif
272     endif
273     cd ${module_build}
274     #########################################################
275     # check if top Makefile exists in build directory, i.e. 
276     # is it necessary to run configure script
277     #########################################################
278     set mkfile_exist=0
279     if ( -e ${module_build}/Makefile ) then
280         set mkfile_exist=1
281     endif
282     #########################################################
283     # check if configure options are changed from the 
284     # previous launch
285     #########################################################
286     set opts_changed=0
287 ##    if ( -f ${module_build}/config.log ) then
288 ##      set old_prefix=`grep -e '^prefix=' ${module_build}/config.log | sed -e "s%^prefix='\(.*\)'%\1%"`
289 ##      if ( "$old_prefix" != "$prefix" ) then
290 ##          set opts_changed=1
291 ##      endif
292 ##    endif
293     #########################################################
294     # define installation directory (by using module's version
295     # number); default is a build directory
296     #########################################################
297     set vx=""
298     if ( -e ${module_src}/configure.ac ) then
299         set vx=`grep -e "^AC_INIT" ${module_src}/configure.ac | sed -e "s%.*\[\([[:digit:].]*\)\].*%\1%g"`
300     else if ( -e ${module_src}/configure.in.base ) then
301         set vx=`grep -e "^VERSION=" ${module_src}/configure.in.base | awk -F= '{ if (NF>1) print $NF; }' | tr -d '[:space:]'`
302         if ( "$vx" == "" ) then
303             set vx=`grep -e "^AC_INIT" ${module_src}/configure.in.base | sed -e "s%.*\[\([[:digit:].]*\)\].*%\1%g"`
304         endif
305     endif
306     if ( "$vx" != "" ) then
307         set vx="_$vx"
308     endif
309     if ( "$prefix" == "" ) then
310         #set module_root_dir=`printenv ${module}_ROOT_DIR`
311         #if ( "$module_root_dir" != "" ) then
312         #    set px=$module_root_dir
313         #else
314              set px=${BUILD_DIR}${def_install_dir}/${module}${vx}
315         #endif
316     else
317         set px=${prefix}/${module}${vx}
318     endif
319     #########################################################
320     # perform configure if -c flag is given or if 
321     # Makefile does not exist (first compilation?)
322     #########################################################
323     if ( $is_configure == 1 || $mkfile_exist == 0 || $opts_changed == 1 ) then
324         echo "... Performing configure"
325         #########################################################
326         # check if configure script exists
327         #########################################################
328         if ( ! -e ${module_src}/configure ) then
329             echo "\!\!\! Warning \!\!\! Can not find configure script in ${module_src}."
330         else
331             set myconf_keys="${CONF_OPTS}"
332             if ( $inst_with_gui == 0 ) then
333                 set myconf_keys="${myconf_keys} --without-gui"
334             endif
335             if ( "${module}" == "MED" && ($?METISDIR) && ($?SCOTCHDIR) ) then
336                 set myconf_keys="${myconf_keys} --enable-splitter=yes --with-metis=${METISDIR} --with-scotch=${SCOTCHDIR}"
337             endif
338             if ( "${module}" == "NETGENPLUGIN" && ($?NETGENHOME) ) then
339                 set myconf_keys="${myconf_keys} --with-netgen=${NETGENHOME}"
340             endif
341             ${module_src}/configure --prefix=$px ${optim} ${myconf_keys} >& ${LOG_DIR}/configure_${module}.log
342             #########################################################
343             # echo possible errors
344             #########################################################
345             if ( $verbose_level > 0 ) then
346                 cat ${LOG_DIR}/configure_${module}.log | grep ": error:" >/dev/stderr
347             endif
348             if ( $verbose_level > 1 ) then
349                 cat ${LOG_DIR}/configure_${module}.log | grep ": WARNING:" >/dev/stderr
350             endif
351         endif
352     endif
353     #########################################################
354     # perform make
355     #########################################################
356     echo "... Performing make"
357     #########################################################
358     # first clear dependencies
359     #########################################################
360     find . -name ".dep*" -type f -exec rm -f {} \; >& /dev/null
361     make >& ${LOG_DIR}/make_${module}.log
362     set sts=$status
363     #########################################################
364     # if make step is successful set the ${module}_ROOT_DIR
365     # environment variable
366     #########################################################
367     #if ( $sts == 0 ) then
368     #    setenv ${module}_ROOT_DIR ${module_build}
369     #endif
370     #########################################################
371     # print make errors
372     #########################################################
373     cat ${LOG_DIR}/make_${module}.log | grep -Ei '[*][*][*].*error' >/dev/stderr
374     #########################################################
375     # print compiler errors and warnings
376     # Note: here awk is used to concatenate together several lines of single
377     #       error or warning message produced by stupid gnu compiler
378     # Actually, instead of that we could use 'fmessage length=n' option of g++...
379     #########################################################
380     if ( $verbose_level > 0 ) then
381         ###cat ${LOG_DIR}/make_${module}.log | grep ": error"
382         cat ${LOG_DIR}/make_${module}.log | awk 'substr($0,0,1)!=" " {print ""} {print $0} END {print ""}' | grep "${module_src}/[A-Za-z_0-9./]*:" | sed s@"^${module_src}/src/"@@ >/dev/stderr
383     endif
384     if ( $verbose_level > 1 ) then
385         cat ${LOG_DIR}/make_${module}.log | awk 'substr($0,0,1)!=" " {print ""} {print $0} END {print ""}' | grep -E ": warning|* Warning" | sed s@"^${module_src}/src/"@@ >/dev/stderr
386     endif
387     #########################################################
388     # perform make dev_docs step if -t flag is given
389     #########################################################
390     if ( $is_tui == 1 && $sts == 0 && -d ${module_build}/doc ) then
391         cd ${module_build}/doc
392         set dd=`cat Makefile | grep -E "dev_docs[[:space:]]*:"`
393         if ( "$dd" != "" ) then
394             echo "... Performing make dev_docs"
395             make dev_docs >& ${LOG_DIR}/make_dev_docs_${module}.log
396             cat ${LOG_DIR}/make_dev_docs_${module}.log | grep '[*][*][*]' >/dev/stderr
397         endif
398     endif
399     cd ${module_build}
400     #########################################################
401     # perform make if -i or -p flags are given
402     #########################################################
403     if ( $is_install == 1 && $sts == 0 || "${module}" == "KERNEL" ) then
404         #########################################################
405         # deleting build directory if -d flag is given
406         #########################################################
407         if ( -e $px && $is_delete == 1 ) then
408             echo "... Removing $px"
409             rm -rf $px >& /dev/null
410             if ( "$?" != "0" ) then
411                 echo "\!\!\! Warning \!\!\! Cannot remove install directory ${px}. Permission denied."
412             endif
413         endif
414         echo "... Performing make install"
415         make install >& ${LOG_DIR}/make_install_${module}.log
416         set sts=$status
417         #########################################################
418         # if make install step is successful set the 
419         # ${module}_ROOT_DIR environment variable
420         #########################################################
421         if ( $sts == 0 ) then
422             setenv ${module}_ROOT_DIR $px
423         endif
424     endif
425     echo ">>> Finished ${module} module"
426   else
427     echo "\!\!\! Error \!\!\! Can't find module sources. ${module}_SRC_DIR environment variable is not set."
428   endif
429 end
430 #########################################################
431 # finalize
432 #########################################################
433 cd ${BUILD_DIR}
434
435 echo "==========================================================================="
436 echo "SALOME build finished at `date`"
437 echo "==========================================================================="