mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Adjust logic. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust gcc versions for limited LIBC variations, tweak LIBC_VERSION detection. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add zstd_static to CREW_ESSENTIAL_PACKAGES to avoid unit test issues. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust again to fix unit tests Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust install to always install zstd_static, thus creating a deterministic essential package removal for zstd in the unit tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust glibc dev packages for limited LIBC. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust LIBC version in libssp Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Bypass broken portion of unit tests. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
68 lines
2.3 KiB
Ruby
68 lines
2.3 KiB
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/gcc_build.rb")
|
|
|
|
class Gcc_dev < Package
|
|
description 'The GNU Compiler Collection: Everything (excepting libraries aside from libgccjit)'
|
|
homepage Gcc_build.homepage
|
|
@gcc_libc_version = ARCH.eql?('i686') ? '2.23' : '2.27'
|
|
version "14.2.0-glibc#{@gcc_libc_version}" # Do not use @_ver here, it will break the installer.
|
|
license Gcc_build.license
|
|
# When upgrading gcc_build, be sure to upgrade gcc_lib, gcc_dev, and libssp 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 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
case @gcc_libc_version
|
|
when '2.23'
|
|
|
|
binary_sha256({
|
|
i686: '77a2ba61cc2529d8dff15e03f10c736fb807f6ce1c112fea71d6050f5005d43a'
|
|
})
|
|
when '2.27', '2.32', '2.33', '2.35'
|
|
|
|
binary_sha256({
|
|
aarch64: '3e0d4ca3bc9488f04b22e7ea895fdd5af54b120d00b816cae0bb0c09c78c897b',
|
|
armv7l: '3e0d4ca3bc9488f04b22e7ea895fdd5af54b120d00b816cae0bb0c09c78c897b',
|
|
x86_64: 'd17ad49fd409e1bc1f850c4415832afac45f31cef999949aeb60b21611b66ddf'
|
|
})
|
|
when '2.37'
|
|
binary_sha256({
|
|
aarch64: 'b78b3c593c74cc1f88cfacc0c59c0312780aed0652b63366f7691dffb3c2383f',
|
|
armv7l: 'b78b3c593c74cc1f88cfacc0c59c0312780aed0652b63366f7691dffb3c2383f',
|
|
x86_64: '2f73cca16717175052cb2dbe47d26b2e8ca7f07c48f84b7ee78ee4efa4dda41d'
|
|
})
|
|
end
|
|
|
|
depends_on 'gcc_build' => :build
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gmp' # R
|
|
depends_on 'isl' # R
|
|
depends_on 'libssp' # L
|
|
depends_on 'mpc' # R
|
|
depends_on 'mpfr' # R
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' # R
|
|
|
|
no_shrink
|
|
no_source_build
|
|
no_strip
|
|
|
|
def self.install
|
|
puts 'Installing Gcc_build to pull files for build...'.lightblue
|
|
@filelist_path = File.join(CREW_META_PATH, 'gcc_build.filelist')
|
|
abort 'File list for Gcc_build does not exist!'.lightred unless File.file?(@filelist_path)
|
|
@filelist = File.readlines(@filelist_path, chomp: true).sort
|
|
|
|
@filelist.each do |filename|
|
|
next if filename.include?('.so') && !filename.include?('libgccjit')
|
|
|
|
@destpath = File.join(CREW_DEST_DIR, filename)
|
|
@filename_target = File.realpath(filename)
|
|
FileUtils.install @filename_target, @destpath
|
|
end
|
|
end
|
|
end
|