binutils version 2.21.1a for OS X
The formula for binutils was recently updated to version 2.21.1a.
To install binutils on your Mac, open your Terminal application and run the following commands;
brew update brew install binutils
 The updated formula is as follows:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
require 'formula' class Binutils < Formula url 'http://ftp.gnu.org/gnu/binutils/binutils-2.21.1a.tar.bz2' homepage 'http://www.gnu.org/software/binutils/binutils.html' md5 'bde820eac53fa3a8d8696667418557ad' def options [['--default-names', "Do NOT prepend 'g' to the binary; will override system utils."]] end def install args = ["--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--infodir=#{info}", "--mandir=#{man}", "--disable-werror", "--enable-interwork", "--enable-multilib", "--enable-targets=x86_64-elf", "--enable-targets=arm-none-eabi"] args << "--program-prefix=g" unless ARGV.include? '--default-names' system "./configure", *args system "make" system "make install" end end
Currently binutils has no dependencies in homebrew.
See which packages depend on binutils.