From d11c18a4b0c7093d3b6253fedc23566f495e7ed0 Mon Sep 17 00:00:00 2001 From: Stephen Hines Date: Mon, 28 Sep 2015 18:07:21 -0700 Subject: [PATCH] Fix RS NDK usage so we always pull from "current" instead of NDK 8. The 8 in this definition refers to NDK release 8, not the API level 8. Setting it to "current" is better, since it still contains the relevant target API level (9 in our case) for using/building our RS support APIs. Change-Id: Ib216ea859e137643fba81c39c4b9d0077ec04455 --- core/config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/config.mk b/core/config.mk index 0a01f41ed..0b1c02091 100644 --- a/core/config.mk +++ b/core/config.mk @@ -708,7 +708,7 @@ endif # Set up RS prebuilt variables for compatibility library RS_PREBUILT_CLCORE := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/librsrt_$(TARGET_ARCH).bc -RS_PREBUILT_LIBPATH := -L prebuilts/ndk/8/platforms/android-9/arch-$(TARGET_ARCH)/usr/lib +RS_PREBUILT_LIBPATH := -L prebuilts/ndk/current/platforms/android-9/arch-$(TARGET_ARCH)/usr/lib RS_PREBUILT_COMPILER_RT := prebuilts/sdk/renderscript/lib/$(TARGET_ARCH)/libcompiler_rt.a # API Level lists for Renderscript Compat lib.