On 4/23/25 10:43, Pierrick Bouvier wrote:
+        .interfaces     = (InterfaceInfo[]) {
+            { TYPE_TARGET_ARM_MACHINE },
+            { TYPE_TARGET_AARCH64_MACHINE },
+            { },
+        },

Don't replicate these anonymous arrays.
You want common

extern InterfaceInfo arm_aarch64_machine_interfaces[];
extern InterfaceInfo aarch64_machine_interfaces[];

to be shared by all.


@Richard:
Is it a concern regarding code maintenance, or potential impact on .data?

I was thinking of impact on .data, especially with so many.


r~

Reply via email to