cui-llama.rn 1.4.2 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/src/main/build-arm64/CMakeFiles/3.31.4/CMakeCCompiler.cmake +81 -0
- package/android/src/main/build-arm64/CMakeFiles/3.31.4/CMakeSystem.cmake +15 -0
- package/android/src/main/build-arm64/CMakeFiles/3.31.4/CompilerIdC/CMakeCCompilerId.c +904 -0
- package/android/src/main/build-arm64/CMakeFiles/3.31.4/CompilerIdC/CMakeCCompilerId.o +0 -0
- package/android/src/main/build-arm64/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.cpp +919 -0
- package/android/src/main/build-arm64/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o +0 -0
- package/android/src/main/build-arm64/CMakeFiles/CMakeConfigureLog.yaml +55 -0
- package/android/src/main/java/com/rnllama/LlamaContext.java +1 -1
- package/package.json +1 -2
Binary file
|
@@ -0,0 +1,55 @@
|
|
1
|
+
|
2
|
+
---
|
3
|
+
events:
|
4
|
+
-
|
5
|
+
kind: "message-v1"
|
6
|
+
backtrace:
|
7
|
+
- "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:200 (message)"
|
8
|
+
- "CMakeLists.txt:3 (project)"
|
9
|
+
message: |
|
10
|
+
The target system is: Android - 1 - aarch64
|
11
|
+
The host system is: Windows - 10.0.26120 - AMD64
|
12
|
+
-
|
13
|
+
kind: "message-v1"
|
14
|
+
backtrace:
|
15
|
+
- "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
|
16
|
+
- "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
|
17
|
+
- "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)"
|
18
|
+
- "CMakeLists.txt:3 (project)"
|
19
|
+
message: |
|
20
|
+
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
|
21
|
+
Compiler: D:/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe
|
22
|
+
Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security
|
23
|
+
Id flags: -c;--target=aarch64-none-linux-android21
|
24
|
+
|
25
|
+
The output was:
|
26
|
+
0
|
27
|
+
|
28
|
+
|
29
|
+
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o"
|
30
|
+
|
31
|
+
The C compiler identification is Clang, found in:
|
32
|
+
D:/dev/react-native/cui-llama.rn/android/src/main/build-arm64/CMakeFiles/3.31.4/CompilerIdC/CMakeCCompilerId.o
|
33
|
+
|
34
|
+
-
|
35
|
+
kind: "message-v1"
|
36
|
+
backtrace:
|
37
|
+
- "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:17 (message)"
|
38
|
+
- "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)"
|
39
|
+
- "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)"
|
40
|
+
- "CMakeLists.txt:3 (project)"
|
41
|
+
message: |
|
42
|
+
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
|
43
|
+
Compiler: D:/Android/Sdk/ndk/26.3.11579264/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe
|
44
|
+
Build flags: -g;-DANDROID;-fdata-sections;-ffunction-sections;-funwind-tables;-fstack-protector-strong;-no-canonical-prefixes;-D_FORTIFY_SOURCE=2;-Wformat;-Werror=format-security
|
45
|
+
Id flags: -c;--target=aarch64-none-linux-android21
|
46
|
+
|
47
|
+
The output was:
|
48
|
+
0
|
49
|
+
|
50
|
+
|
51
|
+
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o"
|
52
|
+
|
53
|
+
The CXX compiler identification is Clang, found in:
|
54
|
+
D:/dev/react-native/cui-llama.rn/android/src/main/build-arm64/CMakeFiles/3.31.4/CompilerIdCXX/CMakeCXXCompilerId.o
|
55
|
+
|
@@ -178,7 +178,7 @@ public class LlamaContext {
|
|
178
178
|
WritableMap event = Arguments.createMap();
|
179
179
|
event.putInt("contextId", LlamaContext.this.id);
|
180
180
|
event.putInt("progress", progress);
|
181
|
-
eventEmitter.emit("@
|
181
|
+
eventEmitter.emit("@RNLlama_onInitContextProgress", event);
|
182
182
|
}
|
183
183
|
|
184
184
|
private static class LoadProgressCallback {
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "cui-llama.rn",
|
3
|
-
"version": "1.4.
|
3
|
+
"version": "1.4.3",
|
4
4
|
"description": "Fork of llama.rn for ChatterUI",
|
5
5
|
"main": "lib/commonjs/index",
|
6
6
|
"module": "lib/module/index",
|
@@ -34,7 +34,6 @@
|
|
34
34
|
"typecheck": "tsc --noEmit",
|
35
35
|
"lint": "eslint \"**/*.{js,ts,tsx}\"",
|
36
36
|
"build": "bob build",
|
37
|
-
"prepack": "bash ./scripts/build-android.sh && bob build",
|
38
37
|
"release": "release-it",
|
39
38
|
"example": "yarn --cwd example",
|
40
39
|
"build:ios-frameworks": "./scripts/build-ios.sh",
|