Merge "Soft Sensor Manager Build Error fix" into connectivity-abstraction
[platform/upstream/iotivity.git] / auto_build.sh
1 #! /bin/bash
2
3 # Ideally we will capture the exit code of each step and try them all before failing
4 # the build script.  For now, use set -e and fail the build at first failure.
5 set -e
6
7 function clean()
8 {
9         echo "*********** Clean build *************"
10         scons -c
11         rm -rf out
12 }
13
14 function build()
15 {
16         if [ $(uname -s) = "Linux" ]
17         then
18                 echo "*********** Build for linux *************"
19                 scons RELEASE=$3
20         fi
21
22         # Note: for android, as oic-resource uses C++11 feature stoi and to_string,
23         # it requires gcc-4.9, currently only android-ndk-r10(for linux)
24         # and windows android-ndk-r10(64bit target version) support these features.
25
26         if [ "$BUILD_FOR_ANDROID" = "true" ]
27                 then
28
29                 echo "*********** Build for android x86 *************"
30                 scons TARGET_OS=android TARGET_ARCH=x86 ANDROID_NDK=$1 RELEASE=$3
31
32                 echo "*********** Build for android armeabi *************"
33                 scons TARGET_OS=android TARGET_ARCH=armeabi ANDROID_NDK=$1 RELEASE=$3
34
35                 echo "*********** Build for android armeabi-v7a *************"
36                 scons TARGET_OS=android TARGET_ARCH=armeabi-v7a ANDROID_NDK=$1 RELEASE=$3
37
38                 echo "*********** Build for android armeabi-v7a-hard *************"
39                 scons TARGET_OS=android TARGET_ARCH=armeabi-v7a-hard ANDROID_NDK=$1 RELEASE=$3
40         fi
41
42 : '
43         echo "*********** Build for arduino avr *************"
44         scons TARGET_OS=arduino TARGET_ARCH=avr ARDUINO_HOME=$2 RELEASE=$3
45
46         echo "*********** Build for arduino arm *************"
47         scons TARGET_OS=arduino TARGET_ARCH=arm ARDUINO_HOME=$2 RELEASE=$3
48 '
49
50         if [ $(uname -s) = "Darwin" ]
51         then
52                 echo "*********** Build for OSX *************"
53                 scons TARGET_OS=darwin SYS_VERSION=10.9 RELEASE=$3
54
55                 echo "*********** Build for IOS i386 *************"
56                 scons TARGET_OS=ios TARGET_ARCH=i386 SYS_VERSION=7.0 RELEASE=$3
57
58                 echo "*********** Build for IOS x86_64 *************"
59                 scons TARGET_OS=ios TARGET_ARCH=x86_64 SYS_VERSION=7.0 RELEASE=$3
60
61                 echo "*********** Build for IOS armv7 *************"
62                 scons TARGET_OS=ios TARGET_ARCH=armv7 SYS_VERSION=7.0 RELEASE=$3
63
64                 echo "*********** Build for IOS armv7s *************"
65                 scons TARGET_OS=ios TARGET_ARCH=armv7s SYS_VERSION=7.0 RELEASE=$3
66
67                 echo "*********** Build for IOS arm64 *************"
68                 scons TARGET_OS=ios TARGET_ARCH=arm64 SYS_VERSION=7.0 RELEASE=$3
69         fi
70 }
71
72 function  help()
73 {
74         echo "Usage:"
75         echo "  build:"
76         echo "     `basename $0` <path-to-android-ndk> <path-to-arduino-home>"
77         echo "  clean:"
78         echo "     `basename $0` -c"
79 }
80
81 if [ $# -eq 1 ]
82 then
83         if [ $1 = '-c' ]
84         then
85                 clean
86                 exit 0
87         else
88                 help
89                 exit -1
90         fi
91 elif [ $# -ne 2 ]
92 then
93         help
94         exit -1
95 fi
96
97 # Suppress "Reading ..." message and enable parallel build
98 export SCONSFLAGS="-Q -j 8"
99 build $1 $2 true
100 build $1 $2 false
101 echo "===================== done ====================="