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 version '15.2.0' license Gcc_build.license # 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 'SKIP' binary_compression 'tar.zst' binary_sha256({ aarch64: '3bd2dcdd1ea789239d37edd8f434a0512e0c4aab931cf769eb6f5a9532721e22', armv7l: '3bd2dcdd1ea789239d37edd8f434a0512e0c4aab931cf769eb6f5a9532721e22', i686: '499c3294e462c9dd5841a0997151f828aac6b093847b16eacbfeb6220315d1ea', x86_64: '4c6f4cc707b4ac257c97a7c7cf091c4806971210f30d3f15a65b41aa7dc23e2b' }) depends_on 'gcc_build' => :build depends_on 'gcc_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).grep(/^(?!#)/) @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