mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Check lib64 before lib when linking
Depending on the linux distro, lib will contain 32bit libraries. We want the 64bit version of libraries if they exist.
This commit is contained in:
parent
5fed22405b
commit
e099dd8b1c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue