Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
milesgranger committed Mar 16, 2024
1 parent 9a66278 commit 1934a91
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
conda config --show-sources
conda config --show
printenv | sort
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$CONDA_PREFIX
export DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$CONDA_PREFIX
export PATH=$PATH:$CONDA_PREFIX
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion blosc2-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ fn main() {
for linkpath in lib.link_paths {
println!("cargo:rustc-link-search={}", linkpath.display());
}
println!("cargo:rustc-link-lib=dylib=blosc2");
println!("cargo:rustc-link-lib=blosc2");
format!("{}/blosc2.h", lib.include_paths[0].display())
}
};
Expand Down

0 comments on commit 1934a91

Please sign in to comment.