mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* gcc => 15.2 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gcc-15.2: Build Run on linux/arm/v7. * gcc-15.2: Package File Update Run on linux/386 container. * Update gcc_lib and gcc_dev Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gcc-15.2: Package File Update Run on linux/386 container. * Update libssp, make sure build actions have rubocop available. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gcc-15.2: Build Run on linux/arm/v7. * Adjust for rubocop issues. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * gcc-15.2: Package File Update Run on linux/386 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
106 lines
3.2 KiB
Ruby
106 lines
3.2 KiB
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/gcc_build.rb")
|
|
|
|
class Libssp < Package
|
|
description 'Libssp is a part of the GCC toolkit.'
|
|
homepage 'https://gcc.gnu.org/'
|
|
version '15.2.0'
|
|
license 'GPL-3, LGPL-3, libgcc, FDL-1.2'
|
|
# When upgrading gcc_build, be sure to upgrade gcc_lib, gcc_dev, libssp, and then binutils in tandem.
|
|
puts "#{self} version (#{version}) differs from gcc version #{Gcc_build.version}".orange if version.to_s != Gcc_build.version
|
|
compatibility 'all'
|
|
source_url 'https://github.com/gcc-mirror/gcc.git'
|
|
git_hashtag '69eb1716b884f6213aef30194390d7741af97c80'
|
|
# git_hashtag "releases/gcc-#{version.split('-').first}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '57a18124c2967e8ce37665d5c909474d71dc790d19cc0f5931b5938acb51439e',
|
|
armv7l: '57a18124c2967e8ce37665d5c909474d71dc790d19cc0f5931b5938acb51439e',
|
|
i686: '891c7a272a3a703268c12cf3c7e5f9914afdd219b1f398bea794af4fcd7934d8',
|
|
x86_64: '362ae5547b24d392f99e5cc19c84c55cdc841a6418c7fc55b6ca50be63792d24'
|
|
})
|
|
|
|
depends_on 'dejagnu' => :build # for test
|
|
depends_on 'glibc' # R
|
|
|
|
@gcc_name = 'libssp'
|
|
|
|
@gcc_global_opts = "--build=#{CREW_TARGET} \
|
|
--host=#{CREW_TARGET} \
|
|
--target=#{CREW_TARGET} \
|
|
--disable-libmpx \
|
|
--disable-install-libiberty \
|
|
--disable-multilib \
|
|
--disable-werror \
|
|
--enable-cet=auto \
|
|
--enable-checking=release \
|
|
--enable-clocale=gnu \
|
|
--enable-default-pie \
|
|
--enable-default-ssp \
|
|
--enable-gnu-indirect-function \
|
|
--enable-gnu-unique-object \
|
|
--enable-host-shared \
|
|
--enable-lto \
|
|
--enable-plugin \
|
|
--enable-shared \
|
|
--enable-symvers \
|
|
--enable-static \
|
|
--enable-threads=posix \
|
|
--with-gcc-major-version-only \
|
|
--with-gmp \
|
|
--with-isl \
|
|
--with-mpc \
|
|
--with-mpfr \
|
|
--with-pic \
|
|
--with-system-libunwind \
|
|
--with-system-zlib"
|
|
|
|
@cflags = '-fPIC -pipe'
|
|
@cxxflags = '-fPIC -pipe'
|
|
@languages = 'c,c++,jit,objc,fortran,go,rust'
|
|
case ARCH
|
|
when 'armv7l', 'aarch64'
|
|
@archflags = '--with-arch=armv7-a+fp --with-float=hard --with-tune=cortex-a15 --with-fpu=vfpv3-d16'
|
|
when 'x86_64'
|
|
@archflags = '--with-arch-64=x86-64'
|
|
when 'i686'
|
|
@archflags = '--with-arch-32=i686'
|
|
end
|
|
|
|
def self.patch
|
|
# make sure we are using our shell instead of /bin/sh
|
|
system "grep -rlZ '/bin/sh ' . | xargs -0 sed -i 's,/bin/sh ,#{CREW_PREFIX}/bin/sh ,g'"
|
|
system "grep -rlZ \"/bin/sh\\\"\" . | xargs -0 sed -i 's,/bin/sh\",#{CREW_PREFIX}/bin/sh\",g'"
|
|
system "grep -rlZ \"/bin/sh'\" . | xargs -0 sed -i \"s,/bin/sh',#{CREW_PREFIX}/bin/sh',g\""
|
|
end
|
|
|
|
def self.build
|
|
gcc_version = version.split('-')[0]
|
|
|
|
Dir.mkdir "#{@gcc_name}-builddir"
|
|
Dir.chdir "#{@gcc_name}-builddir" do
|
|
system "env NM=gcc-nm AR=gcc-ar RANLIB=gcc-ranlib \
|
|
CFLAGS='#{@cflags}' CXXFLAGS='#{@cxxflags}' \
|
|
../#{@gcc_name}/configure #{CREW_CONFIGURE_OPTIONS} \
|
|
#{@gcc_global_opts} \
|
|
--enable-languages=#{@languages} \
|
|
--program-suffix=-#{gcc_version} \
|
|
#{@archflags}"
|
|
system 'make'
|
|
end
|
|
end
|
|
|
|
def self.check
|
|
Dir.chdir "#{@gcc_name}-builddir" do
|
|
system 'make check'
|
|
end
|
|
end
|
|
|
|
def self.install
|
|
Dir.chdir "#{@gcc_name}-builddir" do
|
|
system "make DESTDIR=#{CREW_DEST_DIR} install"
|
|
end
|
|
end
|
|
end
|