Skip to content

Commit

Permalink
Hookup avx2 subpel code (#851)
Browse files Browse the repository at this point in the history
  • Loading branch information
KyleSiefring committed Jan 13, 2019
1 parent 07032e6 commit 3caefbd
Show file tree
Hide file tree
Showing 5 changed files with 569 additions and 153 deletions.
11 changes: 10 additions & 1 deletion build.rs
Expand Up @@ -48,7 +48,16 @@ fn main() {
let mut config_include_arg = String::from("-I");
config_include_arg.push_str(&out_dir);
config_include_arg.push('/');
nasm_rs::compile_library_args("rav1easm", &["src/x86/ipred.asm", "src/x86/me.asm"], &[&config_include_arg, "-Isrc/"]);
nasm_rs::compile_library_args(
"rav1easm",
&[
"src/x86/data.asm",
"src/x86/ipred.asm",
"src/x86/mc.asm",
"src/x86/me.asm"
],
&[&config_include_arg, "-Isrc/"]
);
println!("cargo:rustc-link-lib=static=rav1easm");
rerun_dir("src/x86");
rerun_dir("src/ext/x86");
Expand Down

0 comments on commit 3caefbd

Please sign in to comment.