summaryrefslogtreecommitdiffstats
path: root/ext/dl
diff options
context:
space:
mode:
authortakano32 <takano32@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-27 12:48:20 +0000
committertakano32 <takano32@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-27 12:48:20 +0000
commita0a26f6fdfa5ccf2de124248a3e36b7623c5605d (patch)
tree6b68c9e7cf090565672a8a12fb8c506bb8a46662 /ext/dl
parent31485182f8e337a5b214d29ff3184542791c34db (diff)
downloadruby-a0a26f6fdfa5ccf2de124248a3e36b7623c5605d.tar.gz
ruby-a0a26f6fdfa5ccf2de124248a3e36b7623c5605d.tar.xz
ruby-a0a26f6fdfa5ccf2de124248a3e36b7623c5605d.zip
* ext/dl/test/test_base.rb: use lib64 when the architecture is x86_64.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21100 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl')
-rw-r--r--ext/dl/test/test_base.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/dl/test/test_base.rb b/ext/dl/test/test_base.rb
index fc72db4e5..a0409b8ae 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"