summaryrefslogtreecommitdiffstats
path: root/ext/dl/test/test_base.rb
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-29 12:39:31 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-29 12:39:31 +0000
commit35ebf4fd2b00d403a4f051aed3f5f9a10e320503 (patch)
tree1533d7b7e422cbd14e9433ef4d0ba453c5226521 /ext/dl/test/test_base.rb
parent07ecf8a9dbdd3d8e7c79007b34c28c9b073aa894 (diff)
downloadruby-35ebf4fd2b00d403a4f051aed3f5f9a10e320503.tar.gz
ruby-35ebf4fd2b00d403a4f051aed3f5f9a10e320503.tar.xz
ruby-35ebf4fd2b00d403a4f051aed3f5f9a10e320503.zip
* ext/dl/test/test_base.rb: add x86_64-linux's case again. #932
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@21177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/dl/test/test_base.rb')
-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 e8c50397e..ff0fad7df 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"