From f0f281c1c16c9c34e59780e32c8e1136658594ef Mon Sep 17 00:00:00 2001 From: takano32 Date: Sat, 27 Dec 2008 12:48:20 +0000 Subject: * ext/dl/test/test_base.rb: use lib64 when the architecture is x86_64. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21100 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/dl/test/test_base.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ext/dl') diff --git a/ext/dl/test/test_base.rb b/ext/dl/test/test_base.rb index fc72db4e5e..a0409b8ae8 100644 --- a/ext/dl/test/test_base.rb +++ b/ext/dl/test/test_base.rb @@ -5,6 +5,9 @@ case RUBY_PLATFORM when /cygwin/ LIBC_SO = "cygwin1.dll" LIBM_SO = "cygwin1.dll" +when /x86_64-linux/ + LIBC_SO = "/lib64/libc.so.6" + LIBM_SO = "/lib64/libm.so.6" when /linux/ LIBC_SO = "/lib/libc.so.6" LIBM_SO = "/lib/libm.so.6" -- cgit v1.2.3