Files
chromebrew/packages/binutils.rb
chromebrew-actions[bot] c138c34295 Build: binutils started at 2025-07-27-19UTC. (#12272)
* binutils => 2.45

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* update build

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

* Build on linux/386 to branch binutils.

* Updating package files for linux/386 to branch binutils.

* Updating package files for linux/amd64 to branch binutils.

* Updating package files for linux/arm/v7 to branch binutils.

* Updating package files for linux/386 to branch binutils.

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: satmandu <satmandu@users.noreply.github.com>
2025-07-27 20:16:37 +00:00

117 lines
3.9 KiB
Ruby

# Adapted in part from Arch Linux binutils PKGBUILD at:
# https://gitlab.archlinux.org/archlinux/packaging/packages/binutils/-/blob/main/PKGBUILD
require 'English'
require 'package'
class Binutils < Package
description 'The GNU Binutils are a collection of binary tools.'
homepage 'https://www.gnu.org/software/binutils/'
version '2.45'
license 'GPL-3+'
compatibility 'all'
source_url "https://sourceware.org/pub/binutils/releases/binutils-#{version.split('-').first}.tar.zst"
source_sha256 '79cb120b39a195ad588cd354aed886249bfab36c808e746b30208d15271cc95c'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'b6929d5e5fbcf9acd9524340a4798801e0681c37a005c1033d31203cb7964753',
armv7l: 'b6929d5e5fbcf9acd9524340a4798801e0681c37a005c1033d31203cb7964753',
i686: 'ef1404cf0adc1eab2c1f0fa9e51b3ca7d93beb748bab9148c20e3b6a22c85b14',
x86_64: '05b82e821818fb3624ab881b0bac28081fbbcc356c09fb25ad07106a0193d47d'
})
depends_on 'elfutils' # R
depends_on 'flex' # R
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
depends_on 'zlib' # R
depends_on 'zstd' # R
def self.prebuild
FileUtils.rm_f "#{CREW_LIB_PREFIX}/libiberty.a"
end
def self.patch
system 'filefix'
system "sed -i 's,scriptdir = $(tooldir)/lib,scriptdir = $(tooldir)/#{ARCH_LIB},g' ld/Makefile.am"
Dir.chdir 'ld' do
system 'aclocal && automake'
end
system "sed -i '/^development=/s/true/false/' bfd/development.sh"
end
def self.build
# gprofng is broken on i686 in binutils 2.40
# https://sourceware.org/bugzilla/show_bug.cgi?id=30006
Dir.mkdir 'build'
Dir.chdir 'build' do
system "../configure #{CREW_CONFIGURE_OPTIONS} \
--disable-bootstrap \
--disable-gdb \
--disable-gdbserver \
--disable-maintainer-mode \
--enable-64-bit-bfd \
--enable-colored-disassembly \
--enable-gold \
--enable-install-libiberty \
--enable-ld \
--enable-ld=default \
--enable-lto \
--enable-plugins \
--enable-relro \
--enable-shared \
--enable-threads \
--enable-vtable-verify \
#{'--disable-gprofng' if ARCH == 'i686' || ARCH == 'x86_64'} \
--with-bugurl=https://github.com/chromebrew/chromebrew/issues/new \
--with-lib-path=#{CREW_LIB_PREFIX} \
--with-pic \
--with-pkgversion=Chromebrew \
--with-system-zlib"
system 'make configure-host'
system "make prefix=#{CREW_PREFIX} tooldir=#{CREW_PREFIX}"
system 'make -j1' if $CHILD_STATUS.exitstatus != 0
end
end
def self.check
Dir.chdir 'build' do
system 'make -O CFLAGS_FOR_TARGET="-O2 -g" \
CXXFLAGS="-O2 -no-pie -fno-PIC" \
CFLAGS="-O2 -no-pie" \
LDFLAGS="" \
check || true'
end
end
def self.install
Dir.chdir 'build' do
system 'make', "DESTDIR=#{CREW_DEST_DIR}", "prefix=#{CREW_PREFIX}",
"tooldir=#{CREW_PREFIX}", 'install'
# install PIC version of libiberty
FileUtils.install 'libiberty/pic/libiberty.a', "#{CREW_DEST_LIB_PREFIX}/", mode: 0o644
# No shared linking to these files outside binutils
FileUtils.rm_f "#{CREW_DEST_LIB_PREFIX}/libbfd.so"
FileUtils.rm_f "#{CREW_DEST_LIB_PREFIX}/libopcodes.so"
File.write "#{CREW_DEST_LIB_PREFIX}/libbfd.so", <<~LIB_BFD_EOF
/* GNU ld script */
INPUT( #{CREW_LIB_PREFIX}/libbfd.a -lsframe -liberty -lz -lzstd -ldl )
LIB_BFD_EOF
File.write "#{CREW_DEST_LIB_PREFIX}/libopcodes.so", <<~LIB_OPCODES_EOF
/* GNU ld script */
INPUT( #{CREW_LIB_PREFIX}/libopcodes.a -lbfd )
LIB_OPCODES_EOF
# Needed for gdb.
@oldlibs = %w[bfd opcodes]
@oldlibs.each do |oldlib|
FileUtils.ln_sf "#{CREW_LIB_PREFIX}/lib#{oldlib}-#{@_ver}.so",
"#{CREW_DEST_LIB_PREFIX}/lib#{oldlib}-2.39.50.so"
end
end
end
end