mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -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>
60 lines
2.1 KiB
Ruby
60 lines
2.1 KiB
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/gcc_build.rb")
|
|
|
|
class Gcc_lib < Package
|
|
description 'GCC shared libs except 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: '4f82296584a31339ea3d6212403cd844cab0e2c150878239c04211112be80181'
|
|
})
|
|
when '2.27', '2.32', '2.33', '2.35'
|
|
|
|
binary_sha256({
|
|
aarch64: '6ebddcef4b4ad7f7baf54c9f1e4912906ca36424d39e9ef3cda40466c8028b36',
|
|
armv7l: '6ebddcef4b4ad7f7baf54c9f1e4912906ca36424d39e9ef3cda40466c8028b36',
|
|
x86_64: 'c14b82e8240bc5db1a6634fc33d9405386be19af182f6364e7a318bc9f2714f8'
|
|
})
|
|
when '2.37'
|
|
binary_sha256({
|
|
aarch64: '98ff61c1fd0d398658b08eaf84141deaa7a6d7b2f0fde5081c583234c0b70448',
|
|
armv7l: '98ff61c1fd0d398658b08eaf84141deaa7a6d7b2f0fde5081c583234c0b70448',
|
|
x86_64: '902d07004020783387b436eaf5f9fb9b9a22da608a73486328871396212f503d'
|
|
})
|
|
end
|
|
|
|
depends_on 'gcc_build' => :build
|
|
depends_on 'glibc_lib' # R
|
|
depends_on 'glibc' # 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 unless 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
|