blob: b8574bd998080c7c9567aca2c5880c4dd5ce143d [file] [log] [blame]
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +01001# Copyright (c) 2017 ARM Limited.
2#
3# SPDX-License-Identifier: MIT
4#
5# Permission is hereby granted, free of charge, to any person obtaining a copy
6# of this software and associated documentation files (the "Software"), to
7# deal in the Software without restriction, including without limitation the
8# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9# sell copies of the Software, and to permit persons to whom the Software is
10# furnished to do so, subject to the following conditions:
11#
12# The above copyright notice and this permission notice shall be included in all
13# copies or substantial portions of the Software.
14#
15# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21# SOFTWARE.
22import SCons
23import os.path
24
25Import('env')
26Import('vars')
27
28# vars is imported from arm_compute:
29variables = [
Moritz Pflanzer45634b42017-08-30 12:48:18 +010030 BoolVariable("pmu", "Enable PMU counters", False),
Anthony Barbier6e433492017-11-09 15:52:00 +000031 BoolVariable("mali", "Enable Mali hardware counters", False),
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010032]
33
34# We need a separate set of Variables for the Help message (Otherwise the global variables will get displayed twice)
35new_options = Variables('scons')
36
37for v in variables:
38 new_options.Add(v)
39 vars.Add(v)
40
41# Clone the environment to make sure we're not polluting the arm_compute one:
42framework_env = env.Clone()
43vars.Update(framework_env)
44
45Help(new_options.GenerateHelpText(framework_env))
46
Moritz Pflanzer47752c92017-07-18 13:38:47 +010047if(env['opencl']):
48 framework_env.Append(CPPDEFINES=['ARM_COMPUTE_CL'])
49
Anthony Barbier7068f992017-10-26 15:23:08 +010050if(env['gles_compute']):
51 framework_env.Append(CPPDEFINES=['ARM_COMPUTE_GC'])
52 if env['os'] != 'android':
53 framework_env.Append(CPPPATH = ["#opengles-3.1/include", "#opengles-3.1/mali_include"])
54
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010055framework_env.Append(CPPPATH = ["."])
56framework_env.Append(CPPFLAGS=['-Wno-overloaded-virtual'])
57
58files = Glob('*.cpp')
59files += Glob('command_line/*.cpp')
60files += Glob('printers/*.cpp')
61files += Glob('datasets/*.cpp')
62files += Glob('instruments/*.cpp')
63
64if not framework_env['pmu']:
65 # Remove PMU files
66 files = [f for f in files if "PMU" not in os.path.basename(str(f))]
67else:
68 framework_env.Append(CPPDEFINES = ['PMU_ENABLED'])
69
Anthony Barbiere8895f82017-11-23 16:58:52 +000070if not env['opencl']:
Anthony Barbier6e433492017-11-09 15:52:00 +000071 # Remove OpenCLTimer files
Anthony Barbier35aa6a32018-04-23 16:12:12 +010072 files = [f for f in files if "OpenCL" not in os.path.basename(str(f))]
Anthony Barbier6e433492017-11-09 15:52:00 +000073
Moritz Pflanzer45634b42017-08-30 12:48:18 +010074if not framework_env['mali']:
75 # Remove MALI files
76 files = [f for f in files if "MaliCounter" not in os.path.basename(str(f))]
77else:
78 framework_env.Append(CPPDEFINES = ['MALI_ENABLED'])
79
Moritz Pflanzerfc95ed22017-07-05 11:07:07 +010080arm_compute_test_framework = framework_env.StaticLibrary('arm_compute_test_framework', files)
81
82Default(arm_compute_test_framework)
83Export('arm_compute_test_framework')