So you get linking errors when using `lapacke-sys` without some other crate linking to `liblapacke`. This was found when testing some linking order changes in `rustc` in https://github.com/rust-lang/rust/pull/102832#issuecomment-1279772306 (build failure - https://crater-reports.s3.amazonaws.com/pr-102832-1/try%230c94de7c1a8f4b82b92d562847c35f513f520c7a/gh/lopez86.rust-mlearn/log.txt). The dependency on `liblapacke` should be declared using a [`#[link]`](https://doc.rust-lang.org/reference/items/external-blocks.html?highlight=link#the-link-attribute) attribute or a build script with [`cargo:rustc-link-lib`](https://doc.rust-lang.org/cargo/reference/build-scripts.html#cargorustc-link-liblib).