Don't display third party library warning on x86_64 build
authorGeorge Nash <george.nash@intel.com>
Fri, 18 Nov 2016 00:09:35 +0000 (16:09 -0800)
committerRick Bell <richard.s.bell@intel.com>
Mon, 28 Nov 2016 19:23:48 +0000 (19:23 +0000)
Change-Id: I7cef30cfc4c8199d45cdb7e9824f56d2995ba3d5
Signed-off-by: George Nash <george.nash@intel.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/14487
Reviewed-by: Larry Sachs <larry.j.sachs@intel.com>
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Reviewed-by: Phil Coval <philippe.coval@osg.samsung.com>
Reviewed-by: Rick Bell <richard.s.bell@intel.com>
resource/third_party_libs.scons
service/third_party_libs.scons

index b78a5ed..a677e91 100644 (file)
@@ -57,11 +57,11 @@ if target_os == 'android':
        if target_arch == 'armeabi-v7a-hard':
                target_arch = 'armeabi-v7a'
 
-       if target_arch not in ['x86', 'armeabi', 'armeabi-v7a']:
+       if target_arch not in ['x86', 'x86_64', 'armeabi', 'armeabi-v7a']:
                if not env.GetOption('help') and not env.GetOption('clean'):
                        print '''
 *********************************** Warning ***********************************
-* current only x86, armeabi, armeabi-v7a libraries are provided!              *
+* current only x86, x86_64, armeabi, armeabi-v7a libraries are provided!              *
 *******************************************************************************
 '''
        else:
index b6ca64b..c757bb9 100644 (file)
@@ -78,11 +78,11 @@ if target_os == 'android':
        if target_arch == 'armeabi-v7a-hard':
                target_arch = 'armeabi-v7a'
 
-       if target_arch not in ['x86', 'armeabi', 'armeabi-v7a']:
+       if target_arch not in ['x86', 'x86_64', 'armeabi', 'armeabi-v7a']:
                if not env.GetOption('help') and not env.GetOption('clean'):
                        print '''
 *********************************** Warning ***********************************
-* current only x86, armeabi, armeabi-v7a libraries are provided!              *
+* current only x86, x86_64, armeabi, armeabi-v7a libraries are provided!      *
 *******************************************************************************
 '''
        else: