Skip to content

Commit

Permalink
Merge pull request #5942 from roc-lang/lib64
Browse files Browse the repository at this point in the history
Check lib64 before lib when linking
  • Loading branch information
JanCVanB authored Oct 30, 2023
2 parents 5fed224 + e099dd8 commit cb00cfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/compiler/build/src/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -891,8 +891,8 @@ fn link_linux(
lib_dirs.extend([
usr_lib_arch_path,
lib_arch_path,
strs_to_path(&["/usr", "lib"]),
strs_to_path(&["/usr", "lib64"]),
strs_to_path(&["/usr", "lib"]),
]);

// Look for the libraries we'll need
Expand Down

0 comments on commit cb00cfb

Please sign in to comment.