ruby-changes:9560
From: takano32 <ko1@a...>
Date: Sat, 27 Dec 2008 21:49:36 +0900 (JST)
Subject: [ruby-changes:9560] Ruby:r21100 (trunk): * ext/dl/test/test_base.rb: use lib64 when the architecture is x86_64.
takano32 2008-12-27 21:48:20 +0900 (Sat, 27 Dec 2008) New Revision: 21100 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21100 Log: * ext/dl/test/test_base.rb: use lib64 when the architecture is x86_64. Modified files: trunk/ChangeLog trunk/ext/dl/test/test_base.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 21099) +++ ChangeLog (revision 21100) @@ -1,3 +1,7 @@ +Sat Dec 27 21:46:10 2008 TAKANO Mitsuhiro (takano32) <tak@n...> + + * ext/dl/test/test_base.rb: use lib64 when the architecture is x86_64. + Sat Dec 27 20:26:59 2008 NAKAMURA Usaku <usa@r...> * win32/win32.c (rb_w32_argv_size): if an argument is empty, it's size Index: ext/dl/test/test_base.rb =================================================================== --- ext/dl/test/test_base.rb (revision 21099) +++ ext/dl/test/test_base.rb (revision 21100) @@ -5,6 +5,9 @@ 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" -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/