From a9956c0116ae69feb88e23472566279f8b703753 Mon Sep 17 00:00:00 2001 From: Dean Lee Date: Thu, 30 Jan 2025 23:37:00 +0800 Subject: [PATCH] cleanup: remove SNPE paths from SConstruct (#34501) remove SNPE paths from SConstruct --- SConstruct | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/SConstruct b/SConstruct index 57831647cd..aced32f206 100644 --- a/SConstruct +++ b/SConstruct @@ -107,7 +107,6 @@ if arch == "larch64": ] libpath += [ - "#third_party/snpe/larch64", "#third_party/libyuv/larch64/lib", "/usr/lib/aarch64-linux-gnu" ] @@ -146,14 +145,6 @@ else: "/usr/local/lib", ] - if arch == "x86_64": - libpath += [ - f"#third_party/snpe/{arch}" - ] - rpath += [ - Dir(f"#third_party/snpe/{arch}").abspath, - ] - if GetOption('asan'): ccflags = ["-fsanitize=address", "-fno-omit-frame-pointer"] ldflags = ["-fsanitize=address"] @@ -197,7 +188,6 @@ env = Environment( "#third_party/libyuv/include", "#third_party/json11", "#third_party/linux/include", - "#third_party/snpe/include", "#third_party", "#msgq", ],