aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiCong Li <sicong.li@arm.com>2019-11-18 17:41:27 +0000
committerSiCong Li <sicong.li@arm.com>2019-11-19 10:13:34 +0000
commitc16b30c6f85e2a1ccfd6712701ea1537ea15cf65 (patch)
tree1c61ee8c0e1542a041b69de9a42168ee7b495168
parent09471fa63e265c4e155e8541ae897b6105293a7d (diff)
downloadComputeLibrary-c16b30c6f85e2a1ccfd6712701ea1537ea15cf65.tar.gz
COMPMID-2916 19.11 Release checklist
Remove 3rdparty folder and submodule Signed-off-by: SiCong Li <sicong.li@arm.com> Change-Id: Ie8bcfd5253f81209644eae068621e1600e411d24
-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)