From 8b53a7bd99c2075b24c31a5747ee7950d2ff1a2d Mon Sep 17 00:00:00 2001 From: TianHua Liu <61778232+Taoister39@users.noreply.github.com> Date: Sat, 16 Aug 2025 15:38:32 +0800 Subject: [PATCH] docs: how to develop locally (#4409) --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6aa3321b..8144554f 100644 --- a/README.md +++ b/README.md @@ -86,9 +86,14 @@ See [CONTRIBUTING.md](./CONTRIBUTING.md) for more details. To run the development server, execute the following commands after all prerequisites for **Tauri** are installed: +> [!NOTE] +> **If you are using a Windows ARM device, you additionally need to install [LLVM](https://github.com/llvm/llvm-project/releases) (including clang) and set the environment variable.** +> +> Because the `ring` crate is compiled based on `clang` under Windows ARM. + ```shell pnpm i -pnpm run check +pnpm run prebuild pnpm dev ```