From c16b30c6f85e2a1ccfd6712701ea1537ea15cf65 Mon Sep 17 00:00:00 2001 From: SiCong Li Date: Mon, 18 Nov 2019 17:41:27 +0000 Subject: COMPMID-2916 19.11 Release checklist Remove 3rdparty folder and submodule Signed-off-by: SiCong Li Change-Id: Ie8bcfd5253f81209644eae068621e1600e411d24 --- .gitmodules | 4 ---- 3rdparty | 1 - examples/SConscript | 17 ----------------- 3 files changed, 22 deletions(-) delete mode 160000 3rdparty 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 index 538bdcace4..0000000000 --- a/3rdparty +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 538bdcace48a13351dc6b922a5a380fe08cced17 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) -- cgit v1.2.1