COIN-OR::LEMON - Graph Library

source: lemon-0.x/scripts/check-compilers @ 2101:439b7f21ccc4

Last change on this file since 2101:439b7f21ccc4 was 2062:35e0355c6d9b, checked in by Alpar Juttner, 18 years ago

Also check mingw compatibility

  • Property exe set to *
File size: 1.8 KB
Line 
1#!/bin/bash
2
3set -e
4
5function make-dir () {
6    if [ ! -d $1 ]; then
7        mkdir $1
8    fi
9}
10
11make-dir check-compilers-dir
12cd check-compilers-dir
13
14svn co https://hugo.cs.elte.hu/svn/hugo/trunk ||
15(echo '*************************************************************';
16echo '   REPOSITORY CANNOT BE UPDATED'
17echo '*************************************************************')
18
19
20VERSION=r`svn info trunk|grep 'Revision:'|cut -d ' ' -f 2`
21NAME=lemon
22DISTNAME=${NAME}-$VERSION
23TARNAME=${DISTNAME}.tar.gz
24
25function makecheck () {
26    if [ `which $CXX` ]; then
27        make-dir $ODIR
28        cd $ODIR
29        time ../trunk/configure $*
30        time make check
31        cd ..
32    else
33        echo
34        echo '***************************************************************'
35        echo "  COMPILER $CXX CANNOT BE FOUND"
36        echo '***************************************************************'
37        echo
38    fi
39}
40
41# CREATE TARBALL
42
43cd trunk
44./bootstrap --amver=1.7
45cd ..
46
47# CHECK COMPILERS
48
49ODIR=gcc-3.3 CXX=g++-3.3 CXXFLAGS='-W -Wall -Werror' makecheck --enable-gui --enable-demo --enable-benchmark
50
51ODIR=gcc-3.4 CXX=g++-3.4 CXXFLAGS='-W -Wall -Werror' makecheck --enable-gui --enable-demo --enable-benchmark
52
53ODIR=gcc-4.0 CXX=g++-4.0 CXXFLAGS='-W -Wall -Werror' makecheck --enable-gui --enable-demo --enable-benchmark
54
55ODIR=gcc-4.1 CXX=g++-4.1 CXXFLAGS='-W -Wall -Werror' makecheck --enable-gui --enable-demo --enable-benchmark
56
57# ODIR=icc-8.0 CXX=icpc-8.0 CXXFLAGS='-Werror' makecheck --enable-gui --enable-demo --enable-benchmark
58
59ODIR=icc-9.0 CXX=icpc-9.0 CXXFLAGS='-Werror' makecheck --enable-gui --enable-demo --enable-benchmark
60
61ODIR=mingw makecheck --with-msw --target=i586-mingw32msvc --host=i586-mingw32msvc --build=i386-linux --without-glpk
62
63
64
65
66echo
67echo '**********************************************************************'
68echo '   REPOSITORY SEEMS OK'
69echo '**********************************************************************'
70echo
Note: See TracBrowser for help on using the repository browser.