Skip to content

Commit ac14662

Browse files
authored
Fix llama-android.cpp for error - "common/common.h not found" (ggml-org#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"
1 parent 9b31a40 commit ac14662

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/llama.android/llama/src/main/cpp/llama-android.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include <string>
66
#include <unistd.h>
77
#include "llama.h"
8-
#include "common/common.h"
8+
#include "common.h"
99

1010
// Write C++ code here.
1111
//

0 commit comments

Comments
 (0)