Compare commits

..

No commits in common. "32ad1017ad9dc2c1049c311e1ddf229497754747" and "06974506045fa9cafa2e0b2f1152d9ce92632e13" have entirely different histories.

2 changed files with 8 additions and 2 deletions

2
.gitignore vendored
View File

@ -22,5 +22,3 @@ dist-ssr
*.njsproj
*.sln
*.sw?
**/src-tauri/.cargo/

8
src-tauri/.cargo/config Normal file
View File

@ -0,0 +1,8 @@
[target.'cfg(target_os = "linux")']
rustflags = ["-C", "link-arg=-nostartfiles"]
[target.'cfg(target_os = "windows")']
rustflags = ["-C", "link-args=/ENTRY:_start /SUBSYSTEM:console"]
[target.'cfg(target_os = "macos")']
rustflags = ["-C", "link-args=-e __start -static -nostartfiles"]