From b363f19b594526c0eb2df789986ccef323fa477c Mon Sep 17 00:00:00 2001 From: fG! Date: Fri, 17 Apr 2026 01:40:29 +0100 Subject: [PATCH 1/2] Fix include filenames in HEADERS The HEADERS wasn't updated in last change of sysregs* commit and build target was being ignored. --- arch/arm64/disassembler/Makefile-local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/disassembler/Makefile-local b/arch/arm64/disassembler/Makefile-local index 3b0fbd718..2e0263403 100644 --- a/arch/arm64/disassembler/Makefile-local +++ b/arch/arm64/disassembler/Makefile-local @@ -4,7 +4,7 @@ DECODE_OBJS = pcode.o decode.o decode0.o decode1.o decode2.o decode_fields32.o d FORMAT_OBJS = format.o encodings_fmt.o operations.o sysregs_gen.o sysregs_fmt_gen.o regs.o -HEADERS = decode.h decode1.h decode2.h format.h pcode.h operations.h sysregs.h decode_fields32.h encodings_dec.h encodings_fmt.h regs.h +HEADERS = decode.h decode1.h decode2.h format.h pcode.h operations.h sysregs_gen.h sysregs_fmt_gen.h decode_fields32.h encodings_dec.h encodings_fmt.h regs.h #CFLAGS = -g -Wunused CFLAGS = -Os From 366ae246edce1411dc13cf48d0fb81ba634217d4 Mon Sep 17 00:00:00 2001 From: fG! Date: Fri, 17 Apr 2026 01:41:13 +0100 Subject: [PATCH 2/2] Fix HEADERS includes The HEADERS wasn't updated in last change of sysregs* commit and build target was being ignored. --- arch/arm64/disassembler/Makefile-asan | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/disassembler/Makefile-asan b/arch/arm64/disassembler/Makefile-asan index 3ea993f96..ea96fde67 100644 --- a/arch/arm64/disassembler/Makefile-asan +++ b/arch/arm64/disassembler/Makefile-asan @@ -2,7 +2,7 @@ DECODE_OBJS = pcode.o decode.o decode0.o decode1.o decode2.o decode_fields32.o d FORMAT_OBJS = format.o encodings_fmt.o operations.o sysregs_gen.o sysregs_fmt_gen.o regs.o -HEADERS = decode.h decode1.h decode2.h format.h pcode.h operations.h sysregs.h decode_fields32.h encodings_dec.h encodings_fmt.h regs.h +HEADERS = decode.h decode1.h decode2.h format.h pcode.h operations.h sysregs_gen.h sysregs_fmt_gen.h decode_fields32.h encodings_dec.h encodings_fmt.h regs.h CFLAGS = -O2 -fsanitize=address -ggdb