react-native-update 10.37.19 → 10.37.20
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/java/cn/reactnative/modules/update/UpdateModuleImpl.java +88 -40
- package/harmony/pushy/.cxx/default/default/release/arm64-v8a/.ninja_deps +0 -0
- package/harmony/pushy/.cxx/default/default/release/arm64-v8a/.ninja_log +7 -7
- package/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeConfigureLog.yaml +32 -32
- package/harmony/pushy/.cxx/default/default/release/arm64-v8a/configure_fingerprint.json +1 -1
- package/harmony/pushy/.cxx/default/default/release/arm64-v8a/output.log +2 -2
- package/harmony/pushy.har +0 -0
- package/package.json +1 -1
- /package/harmony/pushy/.cxx/default/default/release/arm64-v8a/.cmake/api/v1/reply/{index-2026-03-18T12-02-38-0668.json → index-2026-03-18T12-50-36-0050.json} +0 -0
|
@@ -83,6 +83,78 @@ public class UpdateModuleImpl {
|
|
|
83
83
|
return bundleAssetName;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
+
private static String toAssetUrl(String bundleAssetName) {
|
|
87
|
+
if (bundleAssetName == null || bundleAssetName.isEmpty()) {
|
|
88
|
+
return "assets://index.android.bundle";
|
|
89
|
+
}
|
|
90
|
+
if (bundleAssetName.startsWith("assets://")) {
|
|
91
|
+
return bundleAssetName;
|
|
92
|
+
}
|
|
93
|
+
return "assets://" + bundleAssetName;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
private static JSBundleLoader createBundleLoader(Context application, String updateBundlePath, boolean loadAssetSynchronously) {
|
|
97
|
+
if (updateBundlePath != null) {
|
|
98
|
+
return JSBundleLoader.createFileLoader(updateBundlePath);
|
|
99
|
+
}
|
|
100
|
+
return JSBundleLoader.createAssetLoader(
|
|
101
|
+
application,
|
|
102
|
+
toAssetUrl(getDefaultBundleAssetName(application)),
|
|
103
|
+
loadAssetSynchronously
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
private static Object getReactHost(Activity currentActivity, Context application) {
|
|
108
|
+
if (currentActivity instanceof ReactActivity) {
|
|
109
|
+
try {
|
|
110
|
+
Method getReactDelegateMethod = ReactActivity.class.getMethod("getReactDelegate");
|
|
111
|
+
ReactDelegate reactDelegate = (ReactDelegate) getReactDelegateMethod.invoke(currentActivity);
|
|
112
|
+
if (reactDelegate != null) {
|
|
113
|
+
Field reactHostField = getCompatibleField(reactDelegate.getClass(), "reactHost");
|
|
114
|
+
reactHostField.setAccessible(true);
|
|
115
|
+
Object reactHost = reactHostField.get(reactDelegate);
|
|
116
|
+
if (reactHost != null) {
|
|
117
|
+
return reactHost;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
} catch (Throwable ignored) {
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
try {
|
|
125
|
+
Method getReactHostMethod = application.getClass().getMethod("getReactHost");
|
|
126
|
+
return getReactHostMethod.invoke(application);
|
|
127
|
+
} catch (Throwable ignored) {
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
return null;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
private static void reloadReactHost(Object reactHost, JSBundleLoader loader) throws Throwable {
|
|
134
|
+
try {
|
|
135
|
+
Field devSupportField = getCompatibleField(reactHost.getClass(), "useDevSupport");
|
|
136
|
+
devSupportField.setAccessible(true);
|
|
137
|
+
devSupportField.set(reactHost, false);
|
|
138
|
+
} catch (Throwable ignored) {
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
Field reactHostDelegateField = getCompatibleField(reactHost.getClass(), "reactHostDelegate");
|
|
142
|
+
reactHostDelegateField.setAccessible(true);
|
|
143
|
+
Object reactHostDelegate = reactHostDelegateField.get(reactHost);
|
|
144
|
+
|
|
145
|
+
String bundleFieldName = "jsBundleLoader";
|
|
146
|
+
if ("expo.modules.ExpoReactHostFactory.ExpoReactHostDelegate".equals(reactHostDelegate.getClass().getCanonicalName())) {
|
|
147
|
+
bundleFieldName = "_jsBundleLoader";
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
Field jsBundleLoaderField = reactHostDelegate.getClass().getDeclaredField(bundleFieldName);
|
|
151
|
+
jsBundleLoaderField.setAccessible(true);
|
|
152
|
+
jsBundleLoaderField.set(reactHostDelegate, loader);
|
|
153
|
+
|
|
154
|
+
Method reloadMethod = reactHost.getClass().getMethod("reload", String.class);
|
|
155
|
+
reloadMethod.invoke(reactHost, "react-native-update");
|
|
156
|
+
}
|
|
157
|
+
|
|
86
158
|
public static void downloadFullUpdate(UpdateContext updateContext, final ReadableMap options, final Promise promise) {
|
|
87
159
|
String url = options.getString("updateUrl");
|
|
88
160
|
String hash = options.getString("hash");
|
|
@@ -178,14 +250,20 @@ public class UpdateModuleImpl {
|
|
|
178
250
|
|
|
179
251
|
final Context application = mContext.getApplicationContext();
|
|
180
252
|
String updateBundlePath = updateContext.getBundleUrl(application);
|
|
253
|
+
final Activity currentActivity = mContext.getCurrentActivity();
|
|
181
254
|
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
255
|
+
Object reactHost = getReactHost(currentActivity, application);
|
|
256
|
+
if (reactHost != null) {
|
|
257
|
+
try {
|
|
258
|
+
reloadReactHost(reactHost, createBundleLoader(application, updateBundlePath, true));
|
|
259
|
+
promise.resolve(true);
|
|
260
|
+
return;
|
|
261
|
+
} catch (Throwable err) {
|
|
262
|
+
Log.e(NAME, "Failed to reload via ReactHost", err);
|
|
263
|
+
}
|
|
188
264
|
}
|
|
265
|
+
|
|
266
|
+
JSBundleLoader loader = createBundleLoader(application, updateBundlePath, false);
|
|
189
267
|
try {
|
|
190
268
|
ReactInstanceManager instanceManager = updateContext.getCustomReactInstanceManager();
|
|
191
269
|
|
|
@@ -207,46 +285,16 @@ public class UpdateModuleImpl {
|
|
|
207
285
|
promise.resolve(true);
|
|
208
286
|
|
|
209
287
|
} catch (Throwable err) {
|
|
210
|
-
final Activity currentActivity = mContext.getCurrentActivity();
|
|
211
288
|
if (currentActivity == null) {
|
|
212
289
|
promise.reject(err);
|
|
213
290
|
return;
|
|
214
291
|
}
|
|
215
292
|
try {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
ReactDelegate reactDelegate = (ReactDelegate)
|
|
220
|
-
getReactDelegateMethod.invoke(currentActivity);
|
|
221
|
-
|
|
222
|
-
Field reactHostField = getCompatibleField(ReactDelegate.class, "reactHost");
|
|
223
|
-
reactHostField.setAccessible(true);
|
|
224
|
-
Object reactHost = reactHostField.get(reactDelegate);
|
|
225
|
-
|
|
226
|
-
Field devSupport = getCompatibleField(reactHost.getClass(), "useDevSupport");
|
|
227
|
-
devSupport.setAccessible(true);
|
|
228
|
-
devSupport.set(reactHost, false);
|
|
229
|
-
|
|
230
|
-
// Access the ReactHostDelegate field (compatible with mReactHostDelegate/reactHostDelegate)
|
|
231
|
-
Field reactHostDelegateField = getCompatibleField(reactHost.getClass(), "reactHostDelegate");
|
|
232
|
-
reactHostDelegateField.setAccessible(true);
|
|
233
|
-
Object reactHostDelegate = reactHostDelegateField.get(reactHost);
|
|
234
|
-
|
|
235
|
-
String bundleFieldName = "jsBundleLoader";
|
|
236
|
-
if (reactHostDelegate.getClass().getCanonicalName().equals("expo.modules.ExpoReactHostFactory.ExpoReactHostDelegate")) {
|
|
237
|
-
bundleFieldName = "_jsBundleLoader";
|
|
293
|
+
Object currentReactHost = getReactHost(currentActivity, application);
|
|
294
|
+
if (currentReactHost == null) {
|
|
295
|
+
throw err;
|
|
238
296
|
}
|
|
239
|
-
|
|
240
|
-
// Modify the jsBundleLoader field
|
|
241
|
-
Field jsBundleLoaderField = reactHostDelegate.getClass().getDeclaredField(bundleFieldName);
|
|
242
|
-
jsBundleLoaderField.setAccessible(true);
|
|
243
|
-
jsBundleLoaderField.set(reactHostDelegate, loader);
|
|
244
|
-
|
|
245
|
-
// Get the reload method with a String parameter
|
|
246
|
-
java.lang.reflect.Method reloadMethod = reactHost.getClass().getMethod("reload", String.class);
|
|
247
|
-
|
|
248
|
-
// Invoke the reload method with a reason
|
|
249
|
-
reloadMethod.invoke(reactHost, "react-native-update");
|
|
297
|
+
reloadReactHost(currentReactHost, createBundleLoader(application, updateBundlePath, true));
|
|
250
298
|
promise.resolve(true);
|
|
251
299
|
} catch (Throwable e) {
|
|
252
300
|
currentActivity.runOnUiThread(new Runnable() {
|
|
Binary file
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# ninja log v6
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
7
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
2 55 1773838236098640891 CMakeFiles/rnupdate.dir/pushy.c.o 542657e253731f06
|
|
3
|
+
14 141 1773838236110641003 CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/lzma/C/Lzma2Dec.c.o 818c45892591cc69
|
|
4
|
+
2 166 1773838236100491590 CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/hpatch.c.o caeb5cd514c4050f
|
|
5
|
+
4 180 1773838236102451303 CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/HDiffPatch/file_for_patch.c.o 700518991a584715
|
|
6
|
+
7 436 1773838236103640938 CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/lzma/C/LzmaDec.c.o 1882f626c53c9a7b
|
|
7
|
+
3 745 1773838236100856654 CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/HDiffPatch/libHDiffPatch/HPatch/patch.c.o 9ce1de7f035dd649
|
|
8
|
+
745 772 1773838236841647730 /__w/react-native-update/react-native-update/harmony/pushy/build/default/intermediates/cmake/default/obj/arm64-v8a/librnupdate.so bfbf8a294790ee4c
|
package/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeConfigureLog.yaml
CHANGED
|
@@ -62,8 +62,8 @@ events:
|
|
|
62
62
|
checks:
|
|
63
63
|
- "Detecting C compiler ABI info"
|
|
64
64
|
directories:
|
|
65
|
-
source: "/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
66
|
-
binary: "/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
65
|
+
source: "/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-0r0oSf"
|
|
66
|
+
binary: "/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-0r0oSf"
|
|
67
67
|
cmakeVariables:
|
|
68
68
|
CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS: "CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS-NOTFOUND"
|
|
69
69
|
CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN: "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm"
|
|
@@ -82,17 +82,17 @@ events:
|
|
|
82
82
|
variable: "CMAKE_C_ABI_COMPILED"
|
|
83
83
|
cached: true
|
|
84
84
|
stdout: |
|
|
85
|
-
Change Dir: '/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
85
|
+
Change Dir: '/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-0r0oSf'
|
|
86
86
|
|
|
87
|
-
Run Build Command(s): /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/bin/ninja -v
|
|
88
|
-
[1/2] /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ -fPIE -v -MD -MT CMakeFiles/
|
|
87
|
+
Run Build Command(s): /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/bin/ninja -v cmTC_f5562
|
|
88
|
+
[1/2] /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ -fPIE -v -MD -MT CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -c /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/share/cmake-3.28/Modules/CMakeCCompilerABI.c
|
|
89
89
|
OHOS (dev) clang version 15.0.4 (llvm-project da925908567283cc4933256fbbb294dd11b46e6e)
|
|
90
90
|
Target: aarch64-unknown-linux-ohos
|
|
91
91
|
Thread model: posix
|
|
92
92
|
InstalledDir: /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin
|
|
93
93
|
clang: warning: argument unused during compilation: '--gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm' [-Wunused-command-line-argument]
|
|
94
94
|
(in-process)
|
|
95
|
-
"/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang" -cc1 -triple aarch64-unknown-linux-ohos -emit-obj -mrelax-all --mrelax-relocations -mnoexecstack -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=1 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
95
|
+
"/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang" -cc1 -triple aarch64-unknown-linux-ohos -emit-obj -mrelax-all --mrelax-relocations -mnoexecstack -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=1 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-0r0oSf -resource-dir /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4 -dependency-file CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -sys-header-deps -D __MUSL__ -isysroot /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -internal-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/include -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include/aarch64-linux-ohos -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/include -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include -Wformat -fdebug-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-0r0oSf -ferror-limit 19 -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -x c /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/share/cmake-3.28/Modules/CMakeCCompilerABI.c
|
|
96
96
|
clang -cc1 version 15.0.4 based upon LLVM 15.0.4 default target x86_64-unknown-linux-gnu
|
|
97
97
|
ignoring nonexistent directory "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/include"
|
|
98
98
|
#include "..." search starts here:
|
|
@@ -101,12 +101,12 @@ events:
|
|
|
101
101
|
/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include/aarch64-linux-ohos
|
|
102
102
|
/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include
|
|
103
103
|
End of search list.
|
|
104
|
-
[2/2] : && /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ --rtlib=compiler-rt -fuse-ld=lld -Wl,--build-id=sha1 -Wl,--warn-shared-textrel -Wl,--fatal-warnings -lunwind -Wl,--no-undefined -Qunused-arguments -Wl,-z,noexecstack -Wl,--gc-sections -v CMakeFiles/
|
|
104
|
+
[2/2] : && /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ --rtlib=compiler-rt -fuse-ld=lld -Wl,--build-id=sha1 -Wl,--warn-shared-textrel -Wl,--fatal-warnings -lunwind -Wl,--no-undefined -Qunused-arguments -Wl,-z,noexecstack -Wl,--gc-sections -v CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -o cmTC_f5562 && :
|
|
105
105
|
OHOS (dev) clang version 15.0.4 (llvm-project da925908567283cc4933256fbbb294dd11b46e6e)
|
|
106
106
|
Target: aarch64-unknown-linux-ohos
|
|
107
107
|
Thread model: posix
|
|
108
108
|
InstalledDir: /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin
|
|
109
|
-
"/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld" --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -pie -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /lib/ld-musl-aarch64.so.1 -o
|
|
109
|
+
"/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld" --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -pie -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /lib/ld-musl-aarch64.so.1 -o cmTC_f5562 /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/Scrt1.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crti.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtbegin.o -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/ -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/../lib/aarch64-linux-ohos/ -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/ --build-id=sha1 --warn-shared-textrel --fatal-warnings -lunwind --no-undefined -z noexecstack --gc-sections CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a -l:libunwind.a -lc /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a -l:libunwind.a /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtend.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crtn.o
|
|
110
110
|
|
|
111
111
|
exitCode: 0
|
|
112
112
|
-
|
|
@@ -138,17 +138,17 @@ events:
|
|
|
138
138
|
message: |
|
|
139
139
|
Parsed C implicit link information:
|
|
140
140
|
link line regex: [^( *|.*[/\\])(ld\\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
|
141
|
-
ignore line: [Change Dir: '/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
141
|
+
ignore line: [Change Dir: '/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-0r0oSf']
|
|
142
142
|
ignore line: []
|
|
143
|
-
ignore line: [Run Build Command(s): /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/bin/ninja -v
|
|
144
|
-
ignore line: [[1/2] /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa --noexecstack -Wformat -D__MUSL__ -fPIE -v -MD -MT CMakeFiles/
|
|
143
|
+
ignore line: [Run Build Command(s): /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/bin/ninja -v cmTC_f5562]
|
|
144
|
+
ignore line: [[1/2] /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa --noexecstack -Wformat -D__MUSL__ -fPIE -v -MD -MT CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -MF CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o.d -o CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -c /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/share/cmake-3.28/Modules/CMakeCCompilerABI.c]
|
|
145
145
|
ignore line: [OHOS (dev) clang version 15.0.4 (llvm-project da925908567283cc4933256fbbb294dd11b46e6e)]
|
|
146
146
|
ignore line: [Target: aarch64-unknown-linux-ohos]
|
|
147
147
|
ignore line: [Thread model: posix]
|
|
148
148
|
ignore line: [InstalledDir: /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin]
|
|
149
149
|
ignore line: [clang: warning: argument unused during compilation: '--gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm' [-Wunused-command-line-argument]]
|
|
150
150
|
ignore line: [ (in-process)]
|
|
151
|
-
ignore line: [ "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang" -cc1 -triple aarch64-unknown-linux-ohos -emit-obj -mrelax-all --mrelax-relocations -mnoexecstack -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=1 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
151
|
+
ignore line: [ "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang" -cc1 -triple aarch64-unknown-linux-ohos -emit-obj -mrelax-all --mrelax-relocations -mnoexecstack -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCCompilerABI.c -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=1 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-0r0oSf -resource-dir /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4 -dependency-file CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o.d -MT CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -sys-header-deps -D __MUSL__ -isysroot /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -internal-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/include -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include/aarch64-linux-ohos -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/include -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include -Wformat -fdebug-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-0r0oSf -ferror-limit 19 -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -x c /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/share/cmake-3.28/Modules/CMakeCCompilerABI.c]
|
|
152
152
|
ignore line: [clang -cc1 version 15.0.4 based upon LLVM 15.0.4 default target x86_64-unknown-linux-gnu]
|
|
153
153
|
ignore line: [ignoring nonexistent directory "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/include"]
|
|
154
154
|
ignore line: [#include "..." search starts here:]
|
|
@@ -157,12 +157,12 @@ events:
|
|
|
157
157
|
ignore line: [ /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include/aarch64-linux-ohos]
|
|
158
158
|
ignore line: [ /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include]
|
|
159
159
|
ignore line: [End of search list.]
|
|
160
|
-
ignore line: [[2/2] : && /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ --rtlib=compiler-rt -fuse-ld=lld -Wl,--build-id=sha1 -Wl,--warn-shared-textrel -Wl,--fatal-warnings -lunwind -Wl,--no-undefined -Qunused-arguments -Wl,-z,noexecstack -Wl,--gc-sections -v CMakeFiles/
|
|
160
|
+
ignore line: [[2/2] : && /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ --rtlib=compiler-rt -fuse-ld=lld -Wl,--build-id=sha1 -Wl,--warn-shared-textrel -Wl,--fatal-warnings -lunwind -Wl,--no-undefined -Qunused-arguments -Wl,-z,noexecstack -Wl,--gc-sections -v CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o -o cmTC_f5562 && :]
|
|
161
161
|
ignore line: [OHOS (dev) clang version 15.0.4 (llvm-project da925908567283cc4933256fbbb294dd11b46e6e)]
|
|
162
162
|
ignore line: [Target: aarch64-unknown-linux-ohos]
|
|
163
163
|
ignore line: [Thread model: posix]
|
|
164
164
|
ignore line: [InstalledDir: /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin]
|
|
165
|
-
link line: [ "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld" --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -pie -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /lib/ld-musl-aarch64.so.1 -o
|
|
165
|
+
link line: [ "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld" --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -pie -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /lib/ld-musl-aarch64.so.1 -o cmTC_f5562 /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/Scrt1.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crti.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtbegin.o -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/ -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/../lib/aarch64-linux-ohos/ -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/ --build-id=sha1 --warn-shared-textrel --fatal-warnings -lunwind --no-undefined -z noexecstack --gc-sections CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a -l:libunwind.a -lc /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a -l:libunwind.a /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtend.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crtn.o]
|
|
166
166
|
arg [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld] ==> ignore
|
|
167
167
|
arg [--sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot] ==> ignore
|
|
168
168
|
arg [-pie] ==> ignore
|
|
@@ -180,7 +180,7 @@ events:
|
|
|
180
180
|
arg [-dynamic-linker] ==> ignore
|
|
181
181
|
arg [/lib/ld-musl-aarch64.so.1] ==> ignore
|
|
182
182
|
arg [-o] ==> ignore
|
|
183
|
-
arg [
|
|
183
|
+
arg [cmTC_f5562] ==> ignore
|
|
184
184
|
arg [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/Scrt1.o] ==> obj [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/Scrt1.o]
|
|
185
185
|
arg [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crti.o] ==> obj [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crti.o]
|
|
186
186
|
arg [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtbegin.o] ==> obj [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtbegin.o]
|
|
@@ -195,7 +195,7 @@ events:
|
|
|
195
195
|
arg [--no-undefined] ==> ignore
|
|
196
196
|
arg [-znoexecstack] ==> ignore
|
|
197
197
|
arg [--gc-sections] ==> ignore
|
|
198
|
-
arg [CMakeFiles/
|
|
198
|
+
arg [CMakeFiles/cmTC_f5562.dir/CMakeCCompilerABI.c.o] ==> ignore
|
|
199
199
|
arg [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a] ==> lib [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a]
|
|
200
200
|
arg [-l:libunwind.a] ==> lib [-l:libunwind.a]
|
|
201
201
|
arg [-lc] ==> lib [c]
|
|
@@ -224,8 +224,8 @@ events:
|
|
|
224
224
|
checks:
|
|
225
225
|
- "Detecting CXX compiler ABI info"
|
|
226
226
|
directories:
|
|
227
|
-
source: "/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
228
|
-
binary: "/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
227
|
+
source: "/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wBMkMg"
|
|
228
|
+
binary: "/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wBMkMg"
|
|
229
229
|
cmakeVariables:
|
|
230
230
|
CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS: "CMAKE_CXX_COMPILER_CLANG_SCAN_DEPS-NOTFOUND"
|
|
231
231
|
CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN: "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm"
|
|
@@ -244,17 +244,17 @@ events:
|
|
|
244
244
|
variable: "CMAKE_CXX_ABI_COMPILED"
|
|
245
245
|
cached: true
|
|
246
246
|
stdout: |
|
|
247
|
-
Change Dir: '/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
247
|
+
Change Dir: '/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wBMkMg'
|
|
248
248
|
|
|
249
|
-
Run Build Command(s): /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/bin/ninja -v
|
|
250
|
-
[1/2] /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++ --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ -fPIE -v -MD -MT CMakeFiles/
|
|
249
|
+
Run Build Command(s): /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/bin/ninja -v cmTC_127e4
|
|
250
|
+
[1/2] /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++ --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ -fPIE -v -MD -MT CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -c /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp
|
|
251
251
|
OHOS (dev) clang version 15.0.4 (llvm-project da925908567283cc4933256fbbb294dd11b46e6e)
|
|
252
252
|
Target: aarch64-unknown-linux-ohos
|
|
253
253
|
Thread model: posix
|
|
254
254
|
InstalledDir: /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin
|
|
255
255
|
clang++: warning: argument unused during compilation: '--gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm' [-Wunused-command-line-argument]
|
|
256
256
|
(in-process)
|
|
257
|
-
"/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++" -cc1 -triple aarch64-unknown-linux-ohos -emit-obj -mrelax-all --mrelax-relocations -mnoexecstack -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=1 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
257
|
+
"/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++" -cc1 -triple aarch64-unknown-linux-ohos -emit-obj -mrelax-all --mrelax-relocations -mnoexecstack -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=1 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wBMkMg -resource-dir /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4 -dependency-file CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D __MUSL__ -isysroot /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -internal-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/../include/libcxx-ohos/include/c++/v1 -internal-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/include -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include/aarch64-linux-ohos -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/include -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include -Wformat -fdeprecated-macro -fdebug-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wBMkMg -ferror-limit 19 -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp
|
|
258
258
|
clang -cc1 version 15.0.4 based upon LLVM 15.0.4 default target x86_64-unknown-linux-gnu
|
|
259
259
|
ignoring nonexistent directory "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/include"
|
|
260
260
|
#include "..." search starts here:
|
|
@@ -264,12 +264,12 @@ events:
|
|
|
264
264
|
/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include/aarch64-linux-ohos
|
|
265
265
|
/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include
|
|
266
266
|
End of search list.
|
|
267
|
-
[2/2] : && /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++ --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ --rtlib=compiler-rt -fuse-ld=lld -Wl,--build-id=sha1 -Wl,--warn-shared-textrel -Wl,--fatal-warnings -lunwind -Wl,--no-undefined -Qunused-arguments -Wl,-z,noexecstack -Wl,--gc-sections -v CMakeFiles/
|
|
267
|
+
[2/2] : && /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++ --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ --rtlib=compiler-rt -fuse-ld=lld -Wl,--build-id=sha1 -Wl,--warn-shared-textrel -Wl,--fatal-warnings -lunwind -Wl,--no-undefined -Qunused-arguments -Wl,-z,noexecstack -Wl,--gc-sections -v CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_127e4 && :
|
|
268
268
|
OHOS (dev) clang version 15.0.4 (llvm-project da925908567283cc4933256fbbb294dd11b46e6e)
|
|
269
269
|
Target: aarch64-unknown-linux-ohos
|
|
270
270
|
Thread model: posix
|
|
271
271
|
InstalledDir: /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin
|
|
272
|
-
"/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld" --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -pie -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /lib/ld-musl-aarch64.so.1 -o
|
|
272
|
+
"/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld" --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -pie -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /lib/ld-musl-aarch64.so.1 -o cmTC_127e4 /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/Scrt1.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crti.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtbegin.o -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/ -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/../lib/aarch64-linux-ohos/ -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/ --build-id=sha1 --warn-shared-textrel --fatal-warnings -lunwind --no-undefined -z noexecstack --gc-sections CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lc++abi -lunwind -lm /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a -l:libunwind.a -lc /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a -l:libunwind.a /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtend.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crtn.o
|
|
273
273
|
|
|
274
274
|
exitCode: 0
|
|
275
275
|
-
|
|
@@ -303,17 +303,17 @@ events:
|
|
|
303
303
|
message: |
|
|
304
304
|
Parsed CXX implicit link information:
|
|
305
305
|
link line regex: [^( *|.*[/\\])(ld\\.lld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)]
|
|
306
|
-
ignore line: [Change Dir: '/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
306
|
+
ignore line: [Change Dir: '/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wBMkMg']
|
|
307
307
|
ignore line: []
|
|
308
|
-
ignore line: [Run Build Command(s): /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/bin/ninja -v
|
|
309
|
-
ignore line: [[1/2] /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++ --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa --noexecstack -Wformat -D__MUSL__ -fPIE -v -MD -MT CMakeFiles/
|
|
308
|
+
ignore line: [Run Build Command(s): /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/bin/ninja -v cmTC_127e4]
|
|
309
|
+
ignore line: [[1/2] /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++ --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa --noexecstack -Wformat -D__MUSL__ -fPIE -v -MD -MT CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -MF CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o.d -o CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -c /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp]
|
|
310
310
|
ignore line: [OHOS (dev) clang version 15.0.4 (llvm-project da925908567283cc4933256fbbb294dd11b46e6e)]
|
|
311
311
|
ignore line: [Target: aarch64-unknown-linux-ohos]
|
|
312
312
|
ignore line: [Thread model: posix]
|
|
313
313
|
ignore line: [InstalledDir: /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin]
|
|
314
314
|
ignore line: [clang++: warning: argument unused during compilation: '--gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm' [-Wunused-command-line-argument]]
|
|
315
315
|
ignore line: [ (in-process)]
|
|
316
|
-
ignore line: [ "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++" -cc1 -triple aarch64-unknown-linux-ohos -emit-obj -mrelax-all --mrelax-relocations -mnoexecstack -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=1 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-
|
|
316
|
+
ignore line: [ "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++" -cc1 -triple aarch64-unknown-linux-ohos -emit-obj -mrelax-all --mrelax-relocations -mnoexecstack -disable-free -clear-ast-before-backend -disable-llvm-verifier -discard-value-names -main-file-name CMakeCXXCompilerABI.cpp -mrelocation-model pic -pic-level 2 -pic-is-pie -mframe-pointer=non-leaf -ffp-contract=on -fno-rounding-math -mconstructor-aliases -funwind-tables=1 -target-cpu generic -target-feature +neon -target-feature +v8a -target-feature +fix-cortex-a53-835769 -target-abi aapcs -fallow-half-arguments-and-returns -mllvm -treat-scalable-fixed-error-as-warning -debugger-tuning=gdb -v -ffunction-sections -fdata-sections -fcoverage-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wBMkMg -resource-dir /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4 -dependency-file CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o.d -MT CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -sys-header-deps -D __MUSL__ -isysroot /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -internal-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/../include/libcxx-ohos/include/c++/v1 -internal-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/include -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include/aarch64-linux-ohos -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/include -internal-externc-isystem /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include -Wformat -fdeprecated-macro -fdebug-compilation-dir=/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeFiles/CMakeScratch/TryCompile-wBMkMg -ferror-limit 19 -stack-protector 2 -fno-signed-char -fgnuc-version=4.2.1 -fcxx-exceptions -fexceptions -D__GCC_HAVE_DWARF2_CFI_ASM=1 -o CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -x c++ /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/build-tools/cmake/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp]
|
|
317
317
|
ignore line: [clang -cc1 version 15.0.4 based upon LLVM 15.0.4 default target x86_64-unknown-linux-gnu]
|
|
318
318
|
ignore line: [ignoring nonexistent directory "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/include"]
|
|
319
319
|
ignore line: [#include "..." search starts here:]
|
|
@@ -323,12 +323,12 @@ events:
|
|
|
323
323
|
ignore line: [ /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include/aarch64-linux-ohos]
|
|
324
324
|
ignore line: [ /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/include]
|
|
325
325
|
ignore line: [End of search list.]
|
|
326
|
-
ignore line: [[2/2] : && /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++ --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ --rtlib=compiler-rt -fuse-ld=lld -Wl,--build-id=sha1 -Wl,--warn-shared-textrel -Wl,--fatal-warnings -lunwind -Wl,--no-undefined -Qunused-arguments -Wl,-z,noexecstack -Wl,--gc-sections -v CMakeFiles/
|
|
326
|
+
ignore line: [[2/2] : && /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/clang++ --target=aarch64-linux-ohos --gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -fdata-sections -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -fno-addrsig -Wa,--noexecstack -Wformat -D__MUSL__ --rtlib=compiler-rt -fuse-ld=lld -Wl,--build-id=sha1 -Wl,--warn-shared-textrel -Wl,--fatal-warnings -lunwind -Wl,--no-undefined -Qunused-arguments -Wl,-z,noexecstack -Wl,--gc-sections -v CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_127e4 && :]
|
|
327
327
|
ignore line: [OHOS (dev) clang version 15.0.4 (llvm-project da925908567283cc4933256fbbb294dd11b46e6e)]
|
|
328
328
|
ignore line: [Target: aarch64-unknown-linux-ohos]
|
|
329
329
|
ignore line: [Thread model: posix]
|
|
330
330
|
ignore line: [InstalledDir: /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin]
|
|
331
|
-
link line: [ "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld" --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -pie -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /lib/ld-musl-aarch64.so.1 -o
|
|
331
|
+
link line: [ "/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld" --sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot -pie -EL --fix-cortex-a53-843419 -z now -z relro -z max-page-size=4096 --hash-style=gnu --hash-style=both --enable-new-dtags --eh-frame-hdr -m aarch64linux -dynamic-linker /lib/ld-musl-aarch64.so.1 -o cmTC_127e4 /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/Scrt1.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crti.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtbegin.o -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/ -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/../lib/aarch64-linux-ohos/ -L/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/ --build-id=sha1 --warn-shared-textrel --fatal-warnings -lunwind --no-undefined -z noexecstack --gc-sections CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o -lc++ -lc++abi -lunwind -lm /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a -l:libunwind.a -lc /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/libclang_rt.builtins.a -l:libunwind.a /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtend.o /opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crtn.o]
|
|
332
332
|
arg [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/bin/ld.lld] ==> ignore
|
|
333
333
|
arg [--sysroot=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot] ==> ignore
|
|
334
334
|
arg [-pie] ==> ignore
|
|
@@ -346,7 +346,7 @@ events:
|
|
|
346
346
|
arg [-dynamic-linker] ==> ignore
|
|
347
347
|
arg [/lib/ld-musl-aarch64.so.1] ==> ignore
|
|
348
348
|
arg [-o] ==> ignore
|
|
349
|
-
arg [
|
|
349
|
+
arg [cmTC_127e4] ==> ignore
|
|
350
350
|
arg [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/Scrt1.o] ==> obj [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/Scrt1.o]
|
|
351
351
|
arg [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crti.o] ==> obj [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/sysroot/usr/lib/aarch64-linux-ohos/crti.o]
|
|
352
352
|
arg [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtbegin.o] ==> obj [/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm/lib/clang/15.0.4/lib/aarch64-linux-ohos/clang_rt.crtbegin.o]
|
|
@@ -361,7 +361,7 @@ events:
|
|
|
361
361
|
arg [--no-undefined] ==> ignore
|
|
362
362
|
arg [-znoexecstack] ==> ignore
|
|
363
363
|
arg [--gc-sections] ==> ignore
|
|
364
|
-
arg [CMakeFiles/
|
|
364
|
+
arg [CMakeFiles/cmTC_127e4.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
|
|
365
365
|
arg [-lc++] ==> lib [c++]
|
|
366
366
|
arg [-lc++abi] ==> lib [c++abi]
|
|
367
367
|
arg [-lunwind] ==> lib [unwind]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"files":[{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/src/main/cpp/CMakeLists.txt","size":1671,"lastModified":
|
|
1
|
+
{"files":[{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/src/main/cpp/CMakeLists.txt","size":1671,"lastModified":1773838182137.0696},{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/hvigor/arm64-v8a/summary.cmake","size":0,"lastModified":1773838234830.6292},{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/hvigor_native_config.json","size":667,"lastModified":1773838236081.6406},{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/CMakeCache.txt","size":17394,"lastModified":1773838236039.8098},{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/build.ninja","size":44325,"lastModified":1773838236045.062},{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/compile_commands.json","size":9826,"lastModified":1773838236045.062},{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/native_work_dir.txt","size":97,"lastModified":1773838236081.6406},{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/build_file_index.txt","size":86,"lastModified":1773838236081.6406},{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/additional_project_files.txt","size":0,"lastModified":1773838236080.6406},{"exist":true,"path":"/__w/react-native-update/react-native-update/harmony/pushy/.cxx/default/default/release/arm64-v8a/metadata_generation_command.txt","size":1266,"lastModified":1773838234855.6292}],"version":1}
|
|
@@ -3,9 +3,9 @@ ninja: Entering directory `/__w/react-native-update/react-native-update/harmony/
|
|
|
3
3
|
clang: warning: argument unused during compilation: '--gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm' [-Wunused-command-line-argument]
|
|
4
4
|
[2/7] Building C object CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/lzma/C/Lzma2Dec.c.o
|
|
5
5
|
clang: warning: argument unused during compilation: '--gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm' [-Wunused-command-line-argument]
|
|
6
|
-
[3/7] Building C object CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/
|
|
6
|
+
[3/7] Building C object CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/hpatch.c.o
|
|
7
7
|
clang: warning: argument unused during compilation: '--gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm' [-Wunused-command-line-argument]
|
|
8
|
-
[4/7] Building C object CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/
|
|
8
|
+
[4/7] Building C object CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/HDiffPatch/file_for_patch.c.o
|
|
9
9
|
clang: warning: argument unused during compilation: '--gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm' [-Wunused-command-line-argument]
|
|
10
10
|
[5/7] Building C object CMakeFiles/rnupdate.dir/__w/react-native-update/react-native-update/android/jni/lzma/C/LzmaDec.c.o
|
|
11
11
|
clang: warning: argument unused during compilation: '--gcc-toolchain=/opt/harmonyos-tools/command-line-tools/sdk/default/openharmony/native/llvm' [-Wunused-command-line-argument]
|
package/harmony/pushy.har
CHANGED
|
Binary file
|
package/package.json
CHANGED