-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathSConscript
519 lines (418 loc) · 16.7 KB
/
SConscript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
##
# emb6 is licensed under the 3-clause BSD license. This license gives everyone
# the right to use and distribute the code, either in binary or source code
# format, as long as the copyright license is retained in the source code.
#
# The emb6 is derived from the Contiki OS platform with the explicit approval
# from Adam Dunkels. However, emb6 is made independent from the OS through the
# removal of protothreads. In addition, APIs are made more flexible to gain
# more adaptivity during run-time.
#
# The license text is:
#
# Copyright (c) 2015,
# Hochschule Offenburg, University of Applied Sciences
# Laboratory Embedded Systems and Communications Electronics.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright notice,
# this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
##
import os
import glob
## Clear all sources and includes
sources = []
includes = []
## set the current working directory as the project path
prjPath = './'
Import('genv', 'targetName', 'demos', 'bsp', 'net', 'osSel', 'mac', 'customCFlags')
# Function to add sources to compilation.
#
# This function adds source files to the compilation process. Therefore
# either single files can be added or templates using '*' as a wildcard
# (e.g. /path/to/sources/*.c)
#
# param scr Source file to add.
#
def addSources( src ):
global sources
global genv
# Find all files matching the given filename or template and add it
# to the list of sources.
for file in genv.Glob( src ):
try:
sources.remove( File( file ) )
except ValueError:
pass
sources.append( File( file ) )
# Function to add direcories to the include path.
#
# This function adds a given directory to the include path used for
# the compilation. Therefore the input is a specific directory. In
# case a file name is given as parameter the accoring directory of
# the file will be used.
#
# param inc A specific include path.
#
def addIncludePath( inc ):
global includes
# Get the path name from the parameter. In case this is a file
# only the directory name will be used.
path = os.path.dirname( inc )
try:
includes.remove( str( path ) )
except ValueError:
pass
includes.append( str( path ) )
# Prepare an operating system for the build configuration.
#
# This function prepares the selected operation system for
# the actual build.
#
# param osSel The OS selection.
#
def prepareOS( osSel ):
global prjPath
global genv
# If no OS selection was made we can skip
# the following parts.
if( osSel == "none"):
return
osPath = prjPath + osSel +'/'
osModules = genv.SConscript(osPath + 'SConscript')
# Add basic OS files and merge flags
#addIncludePath(osPath)
#addIncludePath(osPath + '*.h')
#addSources(osPath + '*.c')
for module in osModules['base']['src']:
addSources( osPath + module )
for module in osModules['base']['inc']:
addIncludePath( osPath + module )
# Merge Flags for OS Configuration
genv.MergeFlags( osModules['flags'] )
# Prepare the demo application for the build configuration.
#
# This function prepares the demo application for the actual build.
# Therefore the common demo files will be added to the compilation
# sources and the according common include directories wil be added.
# Afterwards the demo specific files and directories will be added.
#
# param demoConf The demo configuration which is used.
# param demoPath The path to the specific demo application.
#
def prepareDemo( demoConf, demoPath ):
global prjPath
# Add demo root files and include directory.
addIncludePath(prjPath + 'demo/*')
addSources(prjPath + 'demo/*.c')
# Check for demo specific sources and include
# directories.
if 'demo' in demoConf:
# Add demo specific root path to include direcoties and
# add the the source files to the build.
addIncludePath( demoPath + '/' )
addSources( demoPath + '/*.c' )
# Run through the paths included in the demo specific configuration
# and add all of them to the build sources and include directories.
for path in demoConf['demo']:
addIncludePath( demoPath + '/' + path )
addSources( demoPath + '/' + path + '.c' )
# Prepare the emb::6 core for the build configuration.
#
# This function prepares the emb::6 core for the build. As first
# step it adds the common source files and include directories. Then
# it checks for all the emb::6 modules that are required by the actual
# demo configuration. The paths included by those modules will be added
# to the include directories and the source list of the build.
#
# param demoConf The demo configuration which is used.
#
def prepareEmb6( demoConf ):
global prjPath
global genv
emb6Path = prjPath + 'emb6/'
emb6Modules, netModules = genv.SConscript( emb6Path + 'SConscript')
# Add common include paths and source files.
addIncludePath( emb6Path )
addIncludePath( emb6Path + 'inc/' )
addSources( emb6Path + '*.c' )
# Check for emb::6 specific sources and include
# directories.
if 'emb6' in demoConf:
# Run through all the modules that are specified by the demo
# configuration and add the paths and sources.
for module in demoConf['emb6']:
if module in emb6Modules:
for path in emb6Modules[module]['src']:
addSources( emb6Path + 'src/' + path )
for path in emb6Modules[module]['inc']:
addIncludePath( emb6Path + 'inc/' + path )
# Include the network configuration
for path in netModules[net]['src']:
addSources( emb6Path + 'src/' + path )
for path in netModules[net]['inc']:
addIncludePath( emb6Path + 'inc/' + path )
# Merge Flags for Net Configuration
genv.MergeFlags( netModules[net] )
# Prepare the utils for the build configuration.
#
# This function prepares the utilities for the actual build. It
# includes all files mentiond in the utility configuration.
#
# param demoConf The demo configuration which is used.
#
def prepareUtils( demoConf ):
global prjPath
utilsPath = prjPath + 'utils/'
# Check for demo specific sources and include
# directories.
if 'utils' in demoConf:
# Run through all the modules that are specified by the demo
# configuration and add the paths and sources.
for path in demoConf['utils']:
addIncludePath( utilsPath + 'inc/' + path )
addSources( utilsPath + 'src/' + path+'.c' )
# Prepare application for the build configuration.
#
# This function prepares the application for the actual build. Depending
# on its configuration the according sources and includes will be added.
#
# param appl The application that shall be configured.
# param appConf The app configuration which is used.
#
def prepareApp( app, appConf ):
global prjPath
global genv
if appConf != '':
demoPath = prjPath + 'demo/' + app + '/' + appConf
else:
demoPath = prjPath + 'demo/' + app
# Import configuration settings
demoConf = genv.SConscript(demoPath + '/SConscript')
prepareDemo( demoConf, demoPath )
prepareEmb6( demoConf )
prepareUtils( demoConf )
genv.MergeFlags( demoConf )
# Prepare the board support package for the build configuration.
#
# This function prepares the bsp for the actual build. The board
# support package consist of general source and header files that
# must all be used for al kind of builds.
#
# param targetPath Path to the target root directory.
#
def prepareBsp( targetPath ):
bspPath = targetPath + 'bsp/'
# Add general board support package source files and
# include directories to build.
addIncludePath( bspPath )
addSources( bspPath + '*.c' )
# Add board specific board support package source files and
# include directories to build.
addIncludePath( bspPath + bsp['id'] + '/' )
addSources( bspPath + bsp['id'] + '/*.c' )
# Prepare the hardware abstraction layer for the build configuration.
#
# This function prepares the hal for the actual build. Each MCU
# requires its own HAL implementation which is included into the
# build using this function. Therefore it uses the 'mcu' configuration
# from the board configuration to determine the directory of the
# according HAL implementation.
#
# param targetConf Target configuration to get mcu from.
# param targetPath Path to the target root directory.
#
def prepareHal( targetConf, targetPath ):
mcuPath = targetPath + 'mcu/'
addIncludePath( mcuPath + targetConf['mcu']+'/' )
addSources( mcuPath + targetConf['mcu']+'/*.c' )
# Prepare the radio interface for the build configuration.
#
# This function prepares the radio interface for the actual build. Each board
# uses a specific radio interface driver. Therefore this function uses the 'if'
# configuration from the board configuration to determine the directory of the
# according interface driver implementation.
#
# param targetConf Target configuration to get if from.
# param targetPath Path to the target root directory.
#
def prepareInterface( targetConf, targetPath ):
ifPath = targetPath + 'if/'
# Add interface specific source files and include directories.
addIncludePath(ifPath + targetConf['if'] + '/')
addSources(ifPath + targetConf['if']+'/*.c')
# Prepare the achitecture for the build configuration.
#
# This function prepares the architecture for the actual build. Each MCU
# has an accoring architecture, such as MSP or Cortex. They usually share
# some common code basis which is configured here.
# Furthermore this function also configures the toolchain which is used
# for building the application for the specific target.
#
# param targetConf Target configuration to get if from.
# param targetPath Path to the target root directory.
# param osSel The OS selection.
#
def prepareArch( targetConf, targetPath, osSel ):
global prjPath
global genv
# Assemble root arch path and vendor specific path
# from configuration.
archPath = targetPath + 'arch/'
vendorPath = archPath + targetConf['arch'] + '/' + \
targetConf['family'] + '/' + targetConf['vendor']
# Import arch configuration
archConf = genv.SConscript( vendorPath+'/SConscript' )
# Add all include folder and sources which are common for a
# selected architecture.
if 'extra' in archConf:
for extraPath in archConf['extra']['src']:
addSources( vendorPath + '/' + extraPath )
for extraPath in archConf['extra']['inc']:
addIncludePath( vendorPath + '/' + extraPath )
# Add all include folder and sources for a selected device
addIncludePath( vendorPath + '/device/' + targetConf['cpu'] + '/' )
addIncludePath( vendorPath + '/device/' + targetConf['cpu'] + '/inc/' )
addSources( vendorPath + '/device/' + targetConf['cpu'] + '/*.c')
addSources( vendorPath + '/device/' + targetConf['cpu'] + '/src/*.c' )
# Append toolchain configuration
toolchain = genv.SConscript( vendorPath + '/toolchain/' + \
targetConf['toolchain'] + '/SConscript' )
genv['CC'] = toolchain['CC']
genv['AS'] = toolchain['AS']
genv['LINK'] = toolchain['LINK']
genv['OBJCOPY'] = toolchain['OBJCOPY']
genv['SIZE'] = toolchain['SIZE']
genv.MergeFlags(toolchain)
# Add startup file
if 'startupfile' in targetConf:
addSources( vendorPath + '/device/' + targetConf['cpu'] + \
'/startup/' + targetConf['startupfile'] )
# Add linker script file
if 'scriptfile' in targetConf:
lflags = '-T' + vendorPath + '/device/' + \
targetConf['cpu'] + '/ldscript/' + targetConf['scriptfile']
genv.MergeFlags({'LINKFLAGS' : lflags} )
# If no OS selection was made we can skip
# the following parts.
if( osSel == "none"):
return
# Check if the given OS is supported by the
# given architecture.
if( 'os' not in archConf ):
print 'OS ' + osSel + ' is not supported for this target.'
exit(1)
if( osSel not in archConf['os'] ):
print 'OS ' + osSel + ' is not supported for this target.'
exit(1)
# Get the OS configuration for the current
# selected architecture.
osConf = archConf['os'][osSel]
# Get the modules from the OS specific SConsfile
osPath = prjPath + osSel +'/'
osModules = genv.SConscript(osPath + 'SConscript')
# Add the architecture specific source files and
# include directories
for source in osConf['extra']:
addIncludePath( vendorPath + '/' + source )
addSources( vendorPath + '/' + source + '/*.c')
for module in osConf['source']:
for path in osModules[module]['src']:
addSources( osPath + path )
for path in osModules[module]['inc']:
addIncludePath( osPath + path )
# Merge Flags for OS Configuration
genv.MergeFlags( osConf )
# Prepare the board for the build configuration.
#
# This function prepares the board for the actual build. Therefore
# it runs the according functions to prepare the BSP, HAL,
# radio interface and arcgitecture.
#
# param targetConf Target configuration to get if from.
# param targetPath Path to the target root directory.
#
def prepareBoard():
global prjPath
global bsp
global genv
targetPath = prjPath + 'target/'
boardConf = genv.SConscript( targetPath + 'bsp/' + bsp['id'] + '/SConscript' )
# Add common headers
addIncludePath( targetPath )
# Prepare bsp, hal interface and arch
prepareBsp( targetPath )
prepareHal( boardConf['brd'], targetPath )
prepareInterface( boardConf['brd'], targetPath )
prepareArch( boardConf['brd'], targetPath, osSel )
# Merge core flags
genv.MergeFlags( boardConf['std'] )
def prepareCFlags():
if( mac is not None ):
# Merge flags for the MAC address
mmac = 'MAC_ADDR_WORD='+ mac
genv.MergeFlags({'CPPDEFINES' : mmac})
if( customCFlags is not None ):
# Split the flags and merge them
flags = customCFlags.split(',')
genv.MergeFlags({'CPPDEFINES' : flags})
################################################################################
# MAIN SCRIPT #
################################################################################
# Add root path to includes
addIncludePath( prjPath )
print ''
print ''
for demoConf in demos:
demo = demoConf['demo'][0]
conf = demoConf['demo'][1]
print '> Configure project for ' + demo + ' demo' + \
' and ' + conf + ' configuration'
# Prepare application with its configuration */
prepareApp( demo, conf )
# Prepare operating system
prepareOS( osSel )
# Prepare board configuration
prepareBoard()
# Prepare Custom Flags
prepareCFlags()
#Define logger level
try:
Import('log_lvl')
__log_lvl = 'LOGGER_LEVEL='+ log_lvl
genv.MergeFlags( {'CPPDEFINES' : __log_lvl} )
except:
pass
# Set dependencies
genv.MergeFlags( {'CPPPATH' : includes} )
# Compile program
Delete( targetName + '.elf' )
retf = genv.Program( target = targetName + '.elf', source = sources )
genv.Clean( retf, '*' )
# Show program size
psize = genv.Command( ' ', targetName + '.elf', Action('$SIZE $SOURCE') )
genv.Clean( psize, '*' )
# Create hex file
Delete( targetName + '.hex' )
hex_file = genv.Command( targetName +'.hex', targetName +'.elf', Action('$OBJCOPY -O ihex $SOURCE $TARGET', '$OBJCOPYCOMSTR') )
genv.Clean( hex_file, '*' )
Return('retf')