rust_hdl_vscode icon indicating copy to clipboard operation
rust_hdl_vscode copied to clipboard

Plugin does not start with VSCode on MacOS

Open ushi002 opened this issue 2 years ago • 2 comments

It just leaves this error:

[Error - 11:19:38] Starting client failed Error: spawn Unknown system error -8 at ChildProcess.spawn (node:internal/child_process:413:11) at Object.spawn (node:child_process:720:9) at /Users/ludek/.vscode/extensions/hbohlin.vhdl-ls-0.5.0/dist/extension.js:26190:40

ushi002 avatar Apr 26 '23 09:04 ushi002

i guess there is no support for MacOS.

In the file "extension.ts" you can see that only binaries for windows and linux are considered.

const isWindows = process.platform === 'win32'; const languageServerName = isWindows ? 'vhdl_ls-x86_64-pc-windows-msvc' : 'vhdl_ls-x86_64-unknown-linux-musl';

jakobjung10 avatar May 28 '23 08:05 jakobjung10

We do not build binaries for MacOS so that is why there is no support. It should probably be easy to setup if anyone is willing to spend time on it.

kraigher avatar May 28 '23 18:05 kraigher