Skip to content

Commit 271a8d9

Browse files
committed
Add armv6l to list of linux platforms for audit pass
1 parent 1b8452f commit 271a8d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/auditor/dynamic_linkage.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function is_for_platform(h::ObjectHandle, platform::AbstractPlatform)
121121
return m == ELF.EM_AARCH64
122122
elseif arch(platform) == "powerpc64le"
123123
return m == ELF.EM_PPC64
124-
elseif arch(platform) == "armv7l"
124+
elseif arch(platform) ("armv7l", "armv6l")
125125
return m == ELF.EM_ARM
126126
else
127127
error("Unknown $(os(platform)) architecture $(arch(platform))")

0 commit comments

Comments
 (0)