blob: c3576fb1a01accf05783a81b6bc7de114e20d624 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 Barbier6ff3b192017-09-04 18:44:23 +010026
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027examples_env = env.Clone()
28
29examples_env.Append(CPPPATH = ["#"])
Anthony Barbier6ff3b192017-09-04 18:44:23 +010030
31# Build examples
32utils = examples_env.Object("../utils/Utils.cpp")
33
Georgios Pinitas9873ea32017-12-05 15:28:55 +000034if env['os'] in ['android', 'bare_metal'] or env['standalone']:
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010035 Import('arm_compute_graph_a')
Pablo Telloc6cb35a2017-06-21 15:39:47 +010036 Import('arm_compute_a')
Anthony Barbierb2881fc2017-09-29 17:12:12 +010037 Import('arm_compute_core_a')
38 arm_compute_libs = [ arm_compute_a, arm_compute_core_a ]
Anthony Barbier6ff3b192017-09-04 18:44:23 +010039 arm_compute_dependency = arm_compute_a
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010040 graph_dependency = [arm_compute_graph_a]
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041else:
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010042 Import('arm_compute_graph_so')
Pablo Telloc6cb35a2017-06-21 15:39:47 +010043 Import('arm_compute_so')
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010044 arm_compute_libs = ["arm_compute_graph", "arm_compute", "arm_compute_core"]
Anthony Barbier6ff3b192017-09-04 18:44:23 +010045 arm_compute_dependency = arm_compute_so
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010046 graph_dependency = [arm_compute_graph_so]
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010048# Build graph examples
49graph_utils = examples_env.Object("../utils/GraphUtils.cpp")
Anthony Barbier7fb7b612018-05-16 11:58:52 +010050examples_libs = examples_env.get("LIBS",[])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010051for 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
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010056 if env['os'] in ['android', 'bare_metal'] or env['standalone']:
Anthony Barbier7fb7b612018-05-16 11:58:52 +010057 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'])
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010058 Depends(prog, graph_dependency)
59 else:
60 #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
Anthony Barbier7fb7b612018-05-16 11:58:52 +010061 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'] )
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010062 Depends(prog, graph_dependency)
63 alias = examples_env.Alias(example, prog)
64 Default(alias)
65
66if env['opencl'] and env['neon']:
Anthony Barbier6ff3b192017-09-04 18:44:23 +010067 for file in Glob("./neoncl_*.cpp"):
68 example = os.path.basename(os.path.splitext(str(file))[0])
Anthony Barbier7fb7b612018-05-16 11:58:52 +010069 prog = examples_env.Program(example, ["{}.cpp".format(example), utils], CPPDEFINES=['ARM_COMPUTE_CL'], LIBS = examples_libs + arm_compute_libs)
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010070 Depends(prog, arm_compute_dependency)
Anthony Barbier2a07e182017-08-04 18:20:27 +010071 alias = examples_env.Alias(example, prog)
72 Default(alias)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010073
74if env['opencl']:
75 for file in Glob("./cl_*.cpp"):
76 example = os.path.basename(os.path.splitext(str(file))[0])
Anthony Barbier7fb7b612018-05-16 11:58:52 +010077 prog = examples_env.Program(example, ["{}.cpp".format(example), utils], CPPDEFINES=['ARM_COMPUTE_CL'], LIBS = examples_libs + arm_compute_libs)
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010078 Depends(prog, arm_compute_dependency)
Anthony Barbier6ff3b192017-09-04 18:44:23 +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])
Anthony Barbier7fb7b612018-05-16 11:58:52 +010085 prog = examples_env.Program(example, ["{}.cpp".format(example), utils], LIBS = examples_libs + arm_compute_libs)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010086 Depends(prog, arm_compute_dependency)
87 alias = examples_env.Alias(example, prog)
88 Default(alias)
Anthony Barbier7068f992017-10-26 15:23:08 +010089
90if env['gles_compute']:
91 for file in Glob("./gc_*.cpp"):
92 example = os.path.basename(os.path.splitext(str(file))[0])
Anthony Barbier7fb7b612018-05-16 11:58:52 +010093 prog = examples_env.Program(example, ["{}.cpp".format(example), utils], CPPDEFINES=['ARM_COMPUTE_GC'], LIBS = examples_libs + arm_compute_libs)
Anthony Barbier9fb0cac2018-04-20 15:46:21 +010094 Depends(prog, arm_compute_dependency)
Anthony Barbier7068f992017-10-26 15:23:08 +010095 alias = examples_env.Alias(example, prog)
96 Default(alias)