source: rtems-tools/tester/covoar/wscript @ 100f517

4.104.115
Last change on this file since 100f517 was 100f517, checked in by Chris Johns <chrisj@…>, on 05/09/14 at 11:50:37

covoar: Merger the covoar source from rtems-testing.git.

Use waf to build covoar.

  • Property mode set to 100644
File size: 4.4 KB
Line 
1#
2# RTEMS Tools Project (http://www.rtems.org/)
3# Copyright 2014 Chris Johns (chrisj@rtems.org)
4# All rights reserved.
5#
6# This file is part of the RTEMS Tools package in 'rtems-tools'.
7#
8# Redistribution and use in source and binary forms, with or without
9# modification, are permitted provided that the following conditions are met:
10#
11# 1. Redistributions of source code must retain the above copyright notice,
12# this list of conditions and the following disclaimer.
13#
14# 2. Redistributions in binary form must reproduce the above copyright notice,
15# this list of conditions and the following disclaimer in the documentation
16# and/or other materials provided with the distribution.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGE.
29#
30
31#
32# Build the covoar application.
33#
34# Taken from the waf C++ demo.
35#
36
37#
38# The following two variables are used by the target "waf dist".
39#
40VERSION='0.0.1'
41APPNAME='covoar'
42
43#
44# These variables are mandatory ('/' are converted automatically)
45#
46top = '.'
47out = 'build'
48
49def options(opt):
50    opt.load('compiler_cxx')
51
52def configure(conf):
53    conf.load('compiler_cxx')
54    conf.check_cc(function_name='open64', header_name="stdlib.h", mandatory = False)
55    conf.check_cc(function_name='stat64', header_name="stdlib.h", mandatory = False)
56    conf.write_config_header('covoar-config.h')
57
58def build(bld):
59    bld.stlib(target = 'ccovoar',
60              source = ['app_common.cc',
61                        'ConfigFile.cc',
62                        'CoverageFactory.cc',
63                        'CoverageMap.cc',
64                        'CoverageMapBase.cc',
65                        'CoverageRanges.cc',
66                        'CoverageReaderBase.cc',
67                        'CoverageReaderQEMU.cc',
68                        'CoverageReaderRTEMS.cc',
69                        'CoverageReaderSkyeye.cc',
70                        'CoverageReaderTSIM.cc',
71                        'CoverageWriterBase.cc',
72                        'CoverageWriterRTEMS.cc',
73                        'CoverageWriterSkyeye.cc',
74                        'CoverageWriterTSIM.cc',
75                        'DesiredSymbols.cc',
76                        'ExecutableInfo.cc',
77                        'Explanations.cc',
78                        'GcovData.cc',
79                        'GcovFunctionData.cc',
80                        'ObjdumpProcessor.cc',
81                        'ReportsBase.cc',
82                        'ReportsText.cc',
83                        'ReportsHtml.cc',
84                        'SymbolTable.cc',
85                        'Target_arm.cc',
86                        'TargetBase.cc',
87                        'TargetFactory.cc',
88                        'Target_i386.cc',
89                        'Target_lm32.cc',
90                        'Target_m68k.cc',
91                        'Target_powerpc.cc',
92                        'Target_sparc.cc'],
93              cflags = ['-O2', '-g'],
94              includes = ['.'])
95
96    bld.program(target = 'trace-converter',
97                source = ['TraceConverter.cc',
98                          'TraceList.cc',
99                          'TraceReaderBase.cc',
100                          'TraceReaderLogQEMU.cc',
101                          'TraceWriterBase.cc',
102                          'TraceWriterQEMU.cc'],
103                use = 'ccovoar',
104                cflags = ['-O2', '-g'],
105                includes = ['.'])
106
107    bld.program(target = 'covoar',
108                source = ['covoar.cc'],
109                use = 'ccovoar',
110                cflags = ['-O2', '-g'],
111                includes = ['.'])
112
113    bld.program(target = 'covoar',
114                source = ['covoar.cc'],
115                use = 'ccovoar',
116                cflags = ['-O2', '-g'],
117                includes = ['.'])
Note: See TracBrowser for help on using the repository browser.