1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* configure.in (OBJCOPY): not used on Windows.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-01-29 05:09:01 +00:00
parent f10e2af1e6
commit 958874ba0a
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Thu Jan 29 14:08:59 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in (OBJCOPY): not used on Windows.
Thu Jan 29 13:16:11 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/securerandom.rb (SecureRandom.uuid): uses unpacked array

View file

@ -217,6 +217,11 @@ AC_CHECK_TOOL(AS, as)
ASFLAGS=$ASFLAGS
AC_SUBST(ASFLAGS)
case "$target_os" in
cygwin*|mingw*)
ac_cv_prog_OBJCOPY=":";;
esac
# BSD's ports and MacPorts prefix GNU binutils with 'g'
AC_CHECK_TOOLS(OBJDUMP, [objdump gobjdump])
AC_CHECK_TOOLS(OBJCOPY, [objcopy gobjcopy])