blob: c3576fb1a01accf05783a81b6bc7de114e20d624 [file] [log] [blame]
Anthony Barbierdbdab852017-06-23 15:42:00 +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')
Anthony Barbierdbdab852017-06-23 15:42:00 +010026
Anthony Barbierdbdab852017-06-23 15:42:00 +010027examples_env = env.Clone()
28
29examples_env.Append(CPPPATH = ["#"])
Anthony Barbierdbdab852017-06-23 15:42:00 +010030
31# Build examples
32utils = examples_env.Object("../utils/Utils.cpp")
33
Kaizen8938bd32017-09-28 14:38:23 +010034if env['os'] in ['android', 'bare_metal'] or env['standalone']:
Jenkinsb3a371b2018-05-23 11:36:53 +010035 Import('arm_compute_graph_a')
Kaizen8938bd32017-09-28 14:38:23 +010036 Import('arm_compute_a')
Kaizenbf8b01d2017-10-12 14:26:51 +010037 Import('arm_compute_core_a')
38 arm_compute_libs = [ arm_compute_a, arm_compute_core_a ]
Anthony Barbierdbdab852017-06-23 15:42:00 +010039 arm_compute_dependency = arm_compute_a
Jenkinsb3a371b2018-05-23 11:36:53 +010040 graph_dependency = [arm_compute_graph_a]
Anthony Barbierdbdab852017-06-23 15:42:00 +010041else:
Jenkinsb3a371b2018-05-23 11:36:53 +010042 Import('arm_compute_graph_so')
Kaizen8938bd32017-09-28 14:38:23 +010043 Import('arm_compute_so')
Jenkinsb3a371b2018-05-23 11:36:53 +010044 arm_compute_libs = ["arm_compute_graph", "arm_compute", "arm_compute_core"]
Anthony Barbierdbdab852017-06-23 15:42:00 +010045 arm_compute_dependency = arm_compute_so
Jenkinsb3a371b2018-05-23 11:36:53 +010046 graph_dependency = [arm_compute_graph_so]
Anthony Barbierdbdab852017-06-23 15:42:00 +010047
Jenkinsb3a371b2018-05-23 11:36:53 +010048# Build graph examples
49graph_utils = examples_env.Object("../utils/GraphUtils.cpp")
50examples_libs = examples_env.get("LIBS",[])
51for file in Glob("./graph_*.cpp"):
52 example = os.path.basename(os.path.splitext(str(file))[0])
53 prog = None
54 arm_compute_graph_libs = arm_compute_libs
55
56 if env['os'] in ['android', 'bare_metal'] or env['standalone']:
57 prog = examples_env.Program(example, ["{}.cpp".format(example), utils, graph_utils], LIBS = examples_libs + arm_compute_graph_libs, LINKFLAGS=examples_env["LINKFLAGS"]+['-Wl,--whole-archive',graph_dependency,'-Wl,--no-whole-archive'])
58 Depends(prog, graph_dependency)
59 else:
60 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
61 prog = examples_env.Program(example, ["{}.cpp".format(example), utils, graph_utils], LIBS = examples_libs + arm_compute_graph_libs, LINKFLAGS=examples_env["LINKFLAGS"]+['-Wl,--allow-shlib-undefined'] )
62 Depends(prog, graph_dependency)
63 alias = examples_env.Alias(example, prog)
64 Default(alias)
65
66if env['opencl'] and env['neon']:
Anthony Barbierdbdab852017-06-23 15:42:00 +010067 for file in Glob("./neoncl_*.cpp"):
68 example = os.path.basename(os.path.splitext(str(file))[0])
Jenkinsb3a371b2018-05-23 11:36:53 +010069 prog = examples_env.Program(example, ["{}.cpp".format(example), utils], CPPDEFINES=['ARM_COMPUTE_CL'], LIBS = examples_libs + arm_compute_libs)
70 Depends(prog, arm_compute_dependency)
Anthony Barbierdbdab852017-06-23 15:42:00 +010071 alias = examples_env.Alias(example, prog)
72 Default(alias)
73
74if env['opencl']:
75 for file in Glob("./cl_*.cpp"):
76 example = os.path.basename(os.path.splitext(str(file))[0])
Jenkinsb3a371b2018-05-23 11:36:53 +010077 prog = examples_env.Program(example, ["{}.cpp".format(example), utils], CPPDEFINES=['ARM_COMPUTE_CL'], LIBS = examples_libs + arm_compute_libs)
78 Depends(prog, arm_compute_dependency)
Anthony Barbierdbdab852017-06-23 15:42:00 +010079 alias = examples_env.Alias(example, prog)
80 Default(alias)
81
82if env['neon']:
83 for file in Glob("./neon_*.cpp"):
84 example = os.path.basename(os.path.splitext(str(file))[0])
Jenkinsb3a371b2018-05-23 11:36:53 +010085 prog = examples_env.Program(example, ["{}.cpp".format(example), utils], LIBS = examples_libs + arm_compute_libs)
Anthony Barbierdbdab852017-06-23 15:42:00 +010086 Depends(prog, arm_compute_dependency)
87 alias = examples_env.Alias(example, prog)
88 Default(alias)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000089
90if env['gles_compute']:
91 for file in Glob("./gc_*.cpp"):
92 example = os.path.basename(os.path.splitext(str(file))[0])
Jenkinsb3a371b2018-05-23 11:36:53 +010093 prog = examples_env.Program(example, ["{}.cpp".format(example), utils], CPPDEFINES=['ARM_COMPUTE_GC'], LIBS = examples_libs + arm_compute_libs)
94 Depends(prog, arm_compute_dependency)
Anthony Barbier8140e1e2017-12-14 23:48:46 +000095 alias = examples_env.Alias(example, prog)
96 Default(alias)