1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-11-23 20:21:25 +00:00

No ET_EXEC format for ARM targets. The format is not designed for a shared address space and relocation bugs easily sneak into binutils because relocation info is used so little in the ET_EXEC format. It is second prio for them but crucial for us. If we want more formats than ET_REL, then ET_DYN with position-independent code should be considered as an option.

This commit is contained in:
Johan Gill
2025-10-10 21:33:30 +02:00
parent fa486ce08c
commit 30e320917c

View File

@ -80,9 +80,4 @@
#error Unknown object format for your target CPU
#endif
#undef TARGET_FORMAT_EXE
#if defined(TARGET_CPU_arm) || defined(TARGET_CPU_armeb)
#define TARGET_FORMAT_EXE
#endif
#endif /* !_ENV_H */