Skip to content

Commit

Permalink
Fix filenames for glibc SO files on alpha and ia64 (#105)
Browse files Browse the repository at this point in the history
Fixes [Bug #18645]
  • Loading branch information
glaubitz authored Mar 19, 2022
1 parent 9b5c9bb commit 9a5a1da
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions test/fiddle/helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,14 @@
libm_so = libc_so
else
# glibc
libc_so = "libc.so.6"
libm_so = "libm.so.6"
case RUBY_PLATFORM
when /alpha-linux/, /ia64-linux/
libc_so = "libc.so.6.1"
libm_so = "libm.so.6.1"
else
libc_so = "libc.so.6"
libm_so = "libm.so.6"
end
end
when /mingw/, /mswin/
require "rbconfig"
Expand Down

0 comments on commit 9a5a1da

Please sign in to comment.