Zhniing

Results 17 comments of Zhniing

> Do you have a neovide_backtraces.log file, in the working directory where you started neovide from? No. I start Neovide from an empty directory. There is only one file (i.e....

Tried as the following process: 1. Run `$env:RUST_BACKTRACE=1` in PowerShell to set the environment variable 2. Run `cargo run -- --clean --log` and get this error: ``` error: unexpected argument...

The process is as following: #### 1. Commented out the first line of `src/main.rs` as following: ```rust // #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] ``` #### 2. Run `cargo run --profile profiling...

Just in case, may I ask if the install command `cargo install --path .` is proper? Are any other options recommended?

This is the installed process: ```powershell ❯ cargo install --path . Installing neovide v0.12.1 (C:\Users\zhn\Projects\neovide) Updating crates.io index Compiling neovide v0.12.1 (C:\Users\zhn\Projects\neovide) Finished release [optimized] target(s) in 2m 02s Installing...

I reinstalled via `cargo install --debug --path .` with the following outputs: ```powershell Finished dev [unoptimized + debuginfo] target(s) in 4m 15s Installing C:\Users\zhn\scoop\persist\rustup\.cargo\bin\neovide.exe Installed package `neovide v0.12.1 (C:\Users\zhn\Projects\neovide)` (executable...

> Another thing you could try is to attach the debugger instead of launching. Ok, it works (crashed), and got this: ![VSCode_Attach](https://github.com/neovide/neovide/assets/16496518/568534a2-a411-4060-a4fd-a61c96d4e25a) The partial call stack is as follows: ![VSCode_CallStack](https://github.com/neovide/neovide/assets/16496518/2f2fc2ed-eb28-4b67-a591-8095ebe5cce0)...

Oh, let me present the current situation: #### 1. Updated the Windows 11 SDK from `10.0.22000.0` to `10.0.22621.0` I saw the following from [the rustup book](https://rust-lang.github.io/rustup/installation/windows-msvc.html#installing-only-the-required-components-optional). > Note that **the...

Oh, I see. I would like to do something, but I haven't learned about Rust and the Windows native API yet. 😞 I am willing to assist the best of...

Ok, thanks, I think I would deal with the Rust source building first.