Merge pull request #440 from alessandrod/bpf-mem-unaligned
This commit is contained in:
commit
cf10da1f04
1 changed files with 5 additions and 1 deletions
|
|
@ -34,7 +34,11 @@ fn main() {
|
|||
}
|
||||
|
||||
// These targets have hardware unaligned access support.
|
||||
if target.contains("x86_64") || target.contains("i686") || target.contains("aarch64") {
|
||||
if target.contains("x86_64")
|
||||
|| target.contains("i686")
|
||||
|| target.contains("aarch64")
|
||||
|| target.contains("bpf")
|
||||
{
|
||||
println!("cargo:rustc-cfg=feature=\"mem-unaligned\"");
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue