We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 765922d commit f6d25e8Copy full SHA for f6d25e8
contrib/guix/security-check.py
@@ -264,7 +264,7 @@ def check_MACHO_BRANCH_PROTECTION(binary) -> bool:
264
lief.Header.ARCHITECTURES.ARM: BASE_ELF + [('FORTIFY', check_ELF_FORTIFY)],
265
lief.Header.ARCHITECTURES.ARM64: BASE_ELF + [('FORTIFY', check_ELF_FORTIFY)],
266
lief.Header.ARCHITECTURES.PPC64: BASE_ELF + [('FORTIFY', check_ELF_FORTIFY)],
267
- lief.Header.ARCHITECTURES.RISCV: BASE_ELF, # Skip FORTIFY. See https://github.com/lief-project/LIEF/issues/1082.
+ lief.Header.ARCHITECTURES.RISCV: BASE_ELF + [('FORTIFY', check_ELF_FORTIFY)],
268
},
269
lief.Binary.FORMATS.PE: {
270
lief.Header.ARCHITECTURES.X86_64: BASE_PE,
0 commit comments