From: Raj Hammeer Singh Hada Date: Thu, 27 Jun 2024 01:57:57 +0000 (+0530) Subject: Fix llama-android.cpp for error - "common/common.h not found" (#8145) X-Git-Tag: upstream/0.0.4488~1241 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=ac146628e47451c531a3c7e62e6a973a2bb467a0;p=pkg%2Fggml%2Fsources%2Fllama.cpp Fix llama-android.cpp for error - "common/common.h not found" (#8145) - Path seems to be wrong for the common.h header file in llama-android.cpp file. Fixing the path so the Android Build doesn't fail with the error "There is no file common/common.h" --- diff --git a/examples/llama.android/llama/src/main/cpp/llama-android.cpp b/examples/llama.android/llama/src/main/cpp/llama-android.cpp index 874158ef..92a6b16b 100644 --- a/examples/llama.android/llama/src/main/cpp/llama-android.cpp +++ b/examples/llama.android/llama/src/main/cpp/llama-android.cpp @@ -5,7 +5,7 @@ #include #include #include "llama.h" -#include "common/common.h" +#include "common.h" // Write C++ code here. //