diff options
| author | tyropro <[email protected]> | 2026-05-23 12:38:19 +0100 |
|---|---|---|
| committer | tyropro <[email protected]> | 2026-05-23 12:42:37 +0100 |
| commit | a8ce81c7b06fb7fc2edcda1db7df52cc95c33cc7 (patch) | |
| tree | 4e69d2094ec34701b1479365f55b8859358d5885 | |
| parent | d0540b4c291b2bc866d8b57421911d1c2f4acf77 (diff) | |
feature: added cross-compilation from Linux to Windows config
| -rw-r--r-- | .cargo/config.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..8035437 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,4 @@ +# Cross-compilation to Windows from Linux (requires mingw-w64) +[target.x86_64-pc-windows-gnu] +linker = "x86_64-w64-mingw32-gcc" +ar = "x86_64-w64-mingw32-ar" |
