use response file to make windows happy

This commit is contained in:
SwareJonge 2024-05-20 15:24:37 +02:00
parent e0286fe852
commit 1357b04093
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,6 @@
# mkdd
WIP 1:1 Decompilation of Mario Kart Double Dash!!
## Building
NOTE: Currently fails on Windows, use Linux in the meantime.
### Requirements
- [devkitPro](https://devkitpro.org/wiki/Getting_Started)
- [Ninja](https://github.com/ninja-build/ninja/releases/tag/v1.11.1)

View File

@ -244,7 +244,9 @@ n.rule(
n.rule(
"ld",
command = "$ld $ldflags -map $map -lcf $lcf $in -o $out",
command = "$ld $ldflags -map $map -lcf $lcf @$out.rsp -o $out",
rspfile = "$out.rsp",
rspfile_content = "$in_newline",
description = "LD $out",
)