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 e1153ff commit 11389d0Copy full SHA for 11389d0
src/lib.rs
@@ -107,7 +107,9 @@ impl Build {
107
// stuff depends on, and we don't bind to any of that in any case.
108
.arg("no-async");
109
110
- if target.contains("musl") {
+ if !target.contains("x86_64-unknown-linux-gnu")
111
+ && !target.contains("aarch64-unknown-linux-gnu")
112
+ {
113
// This actually fails to compile on musl (it needs linux/version.h
114
// right now) but we don't actually need this most of the time.
115
configure.arg("no-engine");
0 commit comments