From 35ebf4fd2b00d403a4f051aed3f5f9a10e320503 Mon Sep 17 00:00:00 2001 From: yugui Date: Mon, 29 Dec 2008 12:39:31 +0000 Subject: * 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 --- ext/dl/test/test_base.rb | 3 +++ 1 file changed, 3 insertions(+) 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" -- cgit