tizen: prevent building as seems unsuported on 32bit arch
authorPhilippe Coval <philippe.coval@osg.samsung.com>
Fri, 11 Mar 2016 12:15:40 +0000 (13:15 +0100)
committerUze Choi <uzchoi@samsung.com>
Thu, 28 Apr 2016 08:11:28 +0000 (08:11 +0000)
Let's disable it for Tizen now, like for android or iOS.

Error was observed while building for Tizen:2.3.1:Wearable on i586 or armv7l :

  #error "Requires IEEE 754 floating point!"

Change-Id: Ibd7ccbc0e8405aa3cbace45a2a0ae65ce35c87f3
Signed-off-by: Philippe Coval <philippe.coval@osg.samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/6139
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Sanjeev BA <as2902.b@samsung.com>
Reviewed-by: Ziran Sun <ziran.sun@samsung.com>
Reviewed-by: Uze Choi <uzchoi@samsung.com>
(cherry picked from commit 362732ef77005ec2b6a760b51ee7ec6865c94c29)
Reviewed-on: https://gerrit.iotivity.org/gerrit/7905

plugins/SConscript

index cb4050f..86c1635 100644 (file)
@@ -29,7 +29,7 @@ target_os = env.get('TARGET_OS')
 build_sample = env.get('BUILD_SAMPLE')
 src_dir = env.get('SRC_DIR')
 
-if target_os not in ['android', 'arduino', 'darwin', 'ios']:
+if target_os not in ['android', 'arduino', 'darwin', 'ios', 'tizen']:
 
     SConscript(os.path.join('zigbee_wrapper', 'SConscript'))