aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitmodules4
m---------3rdparty0
-rw-r--r--examples/SConscript17
3 files changed, 0 insertions, 21 deletions
diff --git a/.gitmodules b/.gitmodules
index b36bf78d8a..9933247c49 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -2,7 +2,3 @@
path = data
url = https://git.research.arm.com/ComputeLibrary/data.git
branch = master
-[submodule "3rdparty"]
- path = 3rdparty
- url = https://eu-gerrit-1.euhpc.arm.com/VisualCompute/3rdparty
- branch = master
diff --git a/3rdparty b/3rdparty
deleted file mode 160000
-Subproject 538bdcace48a13351dc6b922a5a380fe08cced1
diff --git a/examples/SConscript b/examples/SConscript
index add3022056..44c14fb386 100644
--- a/examples/SConscript
+++ b/examples/SConscript
@@ -114,20 +114,3 @@ if env['gles_compute']:
prog = install_bin(prog)
alias = examples_env.Alias(example, prog)
Default(alias)
-
-#FIXME Delete 3rdparty builds before release
-for file in Glob("#3rdparty/examples/graph_*.cpp"):
- example = os.path.basename(os.path.splitext(str(file))[0])
- prog = None
-
- if env['os'] in ['android', 'bare_metal'] or env['standalone']:
- prog = examples_env.Program(example, [examples_env.Object(source=file, target=example), utils, graph_utils], LIBS = examples_libs + arm_compute_graph_libs, LINKFLAGS=examples_env["LINKFLAGS"]+['-Wl,--whole-archive',graph_dependency,'-Wl,--no-whole-archive'])
- Depends(prog, graph_dependency)
- prog = install_bin(prog)
- else:
- #-Wl,--allow-shlib-undefined: Ignore dependencies of dependencies
- prog = examples_env.Program(example, [examples_env.Object(source=file, target=example), utils, graph_utils], LIBS = examples_libs + arm_compute_graph_libs, LINKFLAGS=examples_env["LINKFLAGS"]+['-Wl,--allow-shlib-undefined'] )
- Depends(prog, graph_dependency)
- prog = install_bin(prog)
- alias = examples_env.Alias(example, prog)
- Default(alias)