arm_compute v18.05
[platform/upstream/armcl.git] / examples / SConscript
1 # 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.
22 import SCons
23 import os.path
24
25 Import('env')
26
27 examples_env = env.Clone()
28
29 examples_env.Append(CPPPATH = ["#"])
30
31 # Build examples
32 utils = examples_env.Object("../utils/Utils.cpp")
33
34 if env['os'] in ['android', 'bare_metal'] or env['standalone']:
35     Import('arm_compute_graph_a')
36     Import('arm_compute_a')
37     Import('arm_compute_core_a')
38     arm_compute_libs = [ arm_compute_a, arm_compute_core_a ]
39     arm_compute_dependency = arm_compute_a
40     graph_dependency = [arm_compute_graph_a]
41 else:
42     Import('arm_compute_graph_so')
43     Import('arm_compute_so')
44     arm_compute_libs = ["arm_compute_graph", "arm_compute", "arm_compute_core"]
45     arm_compute_dependency = arm_compute_so
46     graph_dependency = [arm_compute_graph_so]
47
48 # Build graph examples
49 graph_utils = examples_env.Object("../utils/GraphUtils.cpp")
50 examples_libs = examples_env.get("LIBS",[])
51 for 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
66 if env['opencl'] and env['neon']:    
67     for file in Glob("./neoncl_*.cpp"):
68         example = os.path.basename(os.path.splitext(str(file))[0])
69         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)
71         alias = examples_env.Alias(example, prog)
72         Default(alias)
73
74 if env['opencl']:
75     for file in Glob("./cl_*.cpp"):
76         example = os.path.basename(os.path.splitext(str(file))[0])
77         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)
79         alias = examples_env.Alias(example, prog)
80         Default(alias)
81
82 if env['neon']:
83     for file in Glob("./neon_*.cpp"):
84         example = os.path.basename(os.path.splitext(str(file))[0])
85         prog = examples_env.Program(example, ["{}.cpp".format(example), utils], LIBS = examples_libs + arm_compute_libs)
86         Depends(prog, arm_compute_dependency)
87         alias = examples_env.Alias(example, prog)
88         Default(alias)
89
90 if env['gles_compute']:
91     for file in Glob("./gc_*.cpp"):
92         example = os.path.basename(os.path.splitext(str(file))[0])
93         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)
95         alias = examples_env.Alias(example, prog)
96         Default(alias)