Martin Roth has submitted this change. ( https://review.coreboot.org/c/coreboot/+/62398 )
Change subject: Makefile: Add .SECONDARY ......................................................................
Makefile: Add .SECONDARY
We currently delete intermediate files. This can make it difficult to debug and is also unexpected. Setting .SECONDARY will prevent make from deleting the files.
BUG=b:221231786 TEST=Build guybrush with CL stack and see .map files are preserved
Signed-off-by: Raul E Rangel rrangel@chromium.org Change-Id: I657a696acc71d42ba94442d4754ee63efd3e6a74 Reviewed-on: https://review.coreboot.org/c/coreboot/+/62398 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Elyes Haouas ehaouas@noos.fr Reviewed-by: Martin Roth martinroth@google.com --- M Makefile 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Martin Roth: Looks good to me, approved Elyes Haouas: Looks good to me, but someone else must approve
diff --git a/Makefile b/Makefile index a9fbe98..82f6458 100644 --- a/Makefile +++ b/Makefile @@ -193,6 +193,7 @@ real-all: real-target
# must come rather early +.SECONDARY: .SECONDEXPANSION: .DELETE_ON_ERROR: