1 #******************************************************************
3 # Copyright 2014 Intel Mobile Communications GmbH All Rights Reserved.
5 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
11 # http://www.apache.org/licenses/LICENSE-2.0
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
19 #-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
26 target_os = env.get('TARGET_OS')
27 target_arch = env.get('TARGET_ARCH')
29 ######################################################################
30 # Generate iotivity_config.h using presence of headers
31 ######################################################################
33 config_h_env = env.Clone()
34 conf = Configure(config_h_env)
37 /* ****************************************************************************
38 * iotivity_config.h - IoTivity platform-specific configuration header.
40 * Auto-generated code for the %s %s platform.
44 *************************************************************************** */
46 #ifndef IOTIVITY_CONFIG_H__
47 #define IOTIVITY_CONFIG_H__
49 ''' % (str(target_os), str(target_arch), str(datetime.datetime.utcnow()))
55 #include "platform_features.h"
57 #endif // IOTIVITY_CONFIG_H__
61 cxx_headers = ['arpa/inet.h',
92 if target_os == 'arduino':
93 # Detection of headers on the Arduino platform is currently broken.
96 if target_os == 'msys_nt':
97 # WinPThread provides a pthread.h, but we want to use native threads.
98 cxx_headers.remove('pthread.h')
100 def get_define_from_header_file(header_file):
101 header_file_converted = header_file.replace("/","_").replace(".","_").upper()
102 return "HAVE_" + header_file_converted
104 for header_file_name in cxx_headers:
105 if conf.CheckCXXHeader(header_file_name):
106 config_h_body += "#define %s 1\n\n" % get_define_from_header_file(header_file_name)
109 # Autoconf feature doesn't work with Jenkins' arduino toolchain, so hardcode it here.
110 if target_os == 'arduino':
111 config_h_body += "#define HAVE_ARDUINO_TIME_H\n\n"
114 src_dir = env.get('SRC_DIR')
115 config_h_file_path = os.path.join(src_dir, 'resource', 'c_common', 'iotivity_config.h')
116 if os.path.exists(config_h_file_path):
117 os.remove(config_h_file_path)
118 config_h_file = open(config_h_file_path, "w")
119 config_h_file.write(config_h_header + config_h_body + config_h_footer)
120 config_h_file.close()
122 # Sanity check to ensure that the above block created the file.
123 if not os.path.exists(config_h_file_path):
124 print "Error: iotivity_config.h file not created!"
126 # iotivity_config.h should be copied to the build dir
127 env.UserInstallTargetHeader(config_h_file_path, 'c_common', 'iotivity_config.h')
129 # Use the generated file internally
130 env.AppendUnique(CPPPATH = [os.path.join(src_dir, 'resource', 'c_common')])
132 ######################################################################
134 env.AppendUnique(CPPPATH = [
135 os.path.join(Dir('.').abspath, 'oic_malloc', 'include'),
136 os.path.join(Dir('.').abspath, 'oic_string', 'include'),
137 os.path.join(Dir('.').abspath, 'oic_time', 'include'),
138 os.path.join(Dir('.').abspath, 'ocatomic', 'include'),
139 os.path.join(Dir('.').abspath, 'ocrandom', 'include'),
140 os.path.join(Dir('.').abspath, 'octhread', 'include')
143 if target_os == 'tizen':
144 env.AppendUnique(LIBPATH = [env.get('BUILD_DIR')])
146 env.AppendUnique(LIBPATH = [os.path.join(env.get('BUILD_DIR'), 'resource', 'c_common')])
148 if target_os in ['tizen', 'linux']:
149 env.ParseConfig("pkg-config --cflags --libs uuid")
151 common_env = env.Clone()
153 ######################################################################
154 # Enable treating all warnings as errors
155 ######################################################################
157 if target_os in ['windows', 'msys_nt']:
158 common_env.AppendUnique(CCFLAGS=['/W4', '/WX'])
160 ######################################################################
161 # Add platform-specific helper library
162 ######################################################################
164 if target_os in ['windows', 'msys_nt']:
165 SConscript('windows/SConscript', 'common_env')
167 ######################################################################
168 # Source files and Targets
169 ######################################################################
171 'oic_string/src/oic_string.c',
172 'oic_malloc/src/oic_malloc.c',
173 'oic_time/src/oic_time.c',
174 'ocrandom/src/ocrandom.c'
177 if env['POSIX_SUPPORTED']:
178 common_src.append('octhread/src/posix/octhread.c')
179 elif target_os in ['windows']:
180 common_src.append('octhread/src/windows/octhread.c')
182 common_src.append('octhread/src/noop/octhread.c')
184 if target_os in ['windows', 'msys_nt']:
185 common_src.append('ocatomic/src/windows/ocatomic.c')
186 elif target_os in ['arduino']:
187 common_src.append('ocatomic/src/arduino/ocatomic.c')
189 common_src.append('ocatomic/src/others/ocatomic.c')
191 common_env.AppendUnique(LIBS = ['logger'])
192 common_env.AppendUnique(CPPPATH = ['#resource/csdk/logger/include'])
193 commonlib = common_env.StaticLibrary('c_common', common_src)
194 common_env.InstallTarget(commonlib, 'c_common')
195 common_env.UserInstallTargetLib(commonlib, 'c_common')
196 common_env.UserInstallTargetHeader('iotivity_debug.h', 'c_common', 'iotivity_debug.h')
197 common_env.UserInstallTargetHeader('platform_features.h', 'c_common', 'platform_features.h')
199 env.PrependUnique(LIBS = ['c_common'])