search for: zsepar

Displaying 1 result from an estimated 1 matches for "zsepar".

Did you mean: separ
2020 Jul 28
1
[PATCH] mk/efi: add -znoseparate-code to LD_FLAGS for EFI builds
More recent versions of the GNU linker (>= 2.31) create a separate code "PT_LOAD" segment by default (as of https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=f6aec96dce1ddbd8961a3aa8a2925db2021719bb). Building syslinux EFI images with this -zseparate-code enabled creates broken EFI images, since efi/wrapper.c only copies the first PT_LOAD segment to the EFI. This patch adds -znoseparate-code to the LD_FLAGS for EFI builds to restore the original behavior. PS: I am aware that development activity is low. We still wanted to contribute this fi...