第二扩展

Results 46 comments of 第二扩展

Here is a workaround: ```patch diff '--color=auto' -ru 1/libsqlite3-sys-0.26.0/build.rs libsqlite3-sys-0.26.0/build.rs --- 1/libsqlite3-sys-0.26.0/build.rs 2023-08-23 10:49:56.916202400 +0800 +++ libsqlite3-sys-0.26.0/build.rs 2023-08-23 18:49:10.978688226 +0800 @@ -201,6 +201,13 @@ // https://android.googlesource.com/platform/external/sqlite/+/2c8c9ae3b7e6f340a19a0001c2a889a211c9d8b2/dist/Android.mk if super::android_target() { cfg.flag("-DSQLITE_TEMP_STORE=3");...

To build it, we have to checkout v8 source and copy missing files. I use this github workflow file to build: ```yml name: CI on: push: branches: [ "main" ]...

@afalon44 Sorry, I don't understand what you say.

> 我尝试编译 v0.83.2 成功了,但是我在使用时遇到了一些问题,使用 deno_core 运行例子时会报空指针错误,请问你成功运行了吗 以前的版本是可以的, 最新的版本有点问题, 还没成功.

最新版 deno (aarch64-linux-gnu) 使用 proot 是可以在 Android 正常运行的, 所以这确实是个奇怪的 BUG.

Another workaround: We can copy `network-online.target` from system to user, with a little modify, like this: ```sh $ cat /etc/systemd/user/network-online.target [Unit] Description=Network online for systemd --user Documentation=man:systemd.special(7) Documentation=https://systemd.io/NETWORK_ONLINE #After=network.target $...

> Hi, > > Any idea for a workaround when using NetworkManager? > > I tried to adapt @secext2022 's workaround, but the user service still "thinks" the Network is...

```sh $ systemctl --user status my-app.service ● my-app.service - example deno/fresh app Loaded: loaded (/var/home/fc-test/.config/containers/systemd/my-app.container; generated) Drop-In: /usr/lib/systemd/user/service.d └─10-timeout-abort.conf Active: active (running) since Wed 2024-07-17 04:21:49 UTC; 20h ago Main...