We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3b1c58 commit 47039d9Copy full SHA for 47039d9
2 files changed
Cargo.toml
@@ -104,7 +104,7 @@ rustc_version = "0.2"
104
regex = { version = "1", optional = true }
105
106
[build-dependencies.nasm-rs]
107
-version = "=0.1.7"
+version = "0.2"
108
optional = true
109
features = ["parallel"]
110
build.rs
@@ -110,6 +110,9 @@ fn build_nasm_files() {
"rav1easm",
111
asm_files,
112
&[&config_include_arg, "-Isrc/"],
113
+ )
114
+ .expect(
115
+ "NASM build failed. Make sure you have nasm installed. https://nasm.us",
116
);
117
std::fs::write(hash_path, &hash[..]).unwrap();
118
} else {
0 commit comments