diff options
author | 2020-04-07 22:46:43 +0100 | |
---|---|---|
committer | 2020-04-07 22:47:20 +0100 | |
commit | e638e3d755bdd6c83363824ee282295cf28cb644 (patch) | |
tree | 203b53255ddede81d662e770eb7002b1c27e3c9e /dev-lang/crystal/files | |
parent | net-firewall/nftables-0.9.4-r2: revbump, cleanup deps, provide man pages (diff) | |
download | gentoo-e638e3d755bdd6c83363824ee282295cf28cb644.tar.gz gentoo-e638e3d755bdd6c83363824ee282295cf28cb644.tar.bz2 gentoo-e638e3d755bdd6c83363824ee282295cf28cb644.zip |
dev-lang/crystal: bump up to 0.34.0
Package-Manager: Portage-2.3.96, Repoman-2.3.22
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'dev-lang/crystal/files')
-rw-r--r-- | dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch b/dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch new file mode 100644 index 000000000000..4dc0b42d90a0 --- /dev/null +++ b/dev-lang/crystal/files/crystal-0.34.0-no-usr-lib.patch @@ -0,0 +1,14 @@ +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 +@@ -106,7 +106,7 @@ module Crystal + + private def lib_flags_posix + library_path = ENV["LIBRARY_PATH"]?.try(&.split(':', remove_empty: true)) || +- ["/usr/lib", "/usr/local/lib"] ++ [] of String + has_pkg_config = nil + + String.build do |flags| |