You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lang/crystal/files/crystal-0.29.0-no-usr-lib.p...

15 lines
431 B

On amd64 linux /usr/lib does not match default 64-bit ABI.
Let's rely on default compiler and linker paths instead.
--- a/src/compiler/crystal/codegen/link.cr
+++ b/src/compiler/crystal/codegen/link.cr
@@ -105,7 +105,7 @@ module Crystal
end
private def lib_flags_posix
- library_path = ["/usr/lib", "/usr/local/lib"]
+ library_path = [] of String
has_pkg_config = nil
String.build do |flags|