From 66b69e33dad527ea188f1d6809506b338a70fdbf Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 16 Feb 2025 18:51:28 +0900 Subject: [PATCH] [qfcc] Catch errors during spirv code-gen Seeing errors built successful builds was a bit disconcerting. --- tools/qfcc/source/qfcc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/qfcc.c b/tools/qfcc/source/qfcc.c index a935586dc..e725b4511 100644 --- a/tools/qfcc/source/qfcc.c +++ b/tools/qfcc/source/qfcc.c @@ -460,7 +460,7 @@ compile_to_obj (const char *file, const char *obj, rua_ctx_t *ctx) err = pr.error_count; if (!err) { if (options.code.spirv) { - err = spirv_write (&pr, obj); + err = spirv_write (&pr, obj) || pr.error_count; } else { qfo = qfo_from_progs (&pr); err = qfo_write (qfo, obj);