diff options
author | Dan Willemsen <dwillemsen@google.com> | 2020-03-12 10:30:35 -0700 |
---|---|---|
committer | Anton Hansson <hansson@google.com> | 2020-03-27 12:03:30 +0000 |
commit | 706d5f673009f96935c30ca756318f23e44de759 (patch) | |
tree | a886f7cbb34f18a1c1678a03e9f42336fa8d7429 /ui | |
parent | c3e9263d7efe8ca7638a21ebbeb4f724033409f7 (diff) | |
download | build_soong-706d5f673009f96935c30ca756318f23e44de759.tar.gz build_soong-706d5f673009f96935c30ca756318f23e44de759.tar.bz2 build_soong-706d5f673009f96935c30ca756318f23e44de759.zip |
Always keep rsp files
It's painful to debug without these.
Bug: 151160048
Test: do a build; find out -name '*.rsp'
Change-Id: I6fc25095442178c0bcbc1dea444ba51e9259c600
Merged-In: I6fc25095442178c0bcbc1dea444ba51e9259c600
Diffstat (limited to 'ui')
-rw-r--r-- | ui/build/ninja.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/build/ninja.go b/ui/build/ninja.go index 0749fe3a..4fc1f01e 100644 --- a/ui/build/ninja.go +++ b/ui/build/ninja.go @@ -38,6 +38,7 @@ func runNinja(ctx Context, config Config) { executable := config.PrebuiltBuildTool("ninja") args := []string{ "-d", "keepdepfile", + "-d", "keeprsp", "--frontend_file", fifo, } |