mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* LLVM => 20.1.3 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * LLVM20 -> 20.1.3 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Rebuild llvm20_dev, llvm20_lib Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
53 lines
1.8 KiB
Ruby
53 lines
1.8 KiB
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/llvm20_build.rb")
|
|
|
|
class Llvm20_dev < Package
|
|
description 'LLVM: Everything except libLLVM & llvm-strip'
|
|
homepage Llvm20_build.homepage
|
|
version '20.1.3'
|
|
# When upgrading llvm*_build, be sure to upgrade llvm_lib*, llvm_dev*, libclc, and openmp in tandem.
|
|
puts "#{self} version differs from llvm version #{Llvm20_build.version}".orange if version != Llvm20_build.version
|
|
license Llvm20_build.license
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '0e0a85afefbf96eaa75f101b46ba2353ba7d9193713bfc3f16174e8c7f4fecc8',
|
|
armv7l: '0e0a85afefbf96eaa75f101b46ba2353ba7d9193713bfc3f16174e8c7f4fecc8',
|
|
i686: 'eb8f44e6331b3d84a54669923cc464ffc8ff631716a86c3cb6e507ce600322c4',
|
|
x86_64: '63fb8b160f6a540b387ef941db0f48e872a05444e922785573bccac3f39bd816'
|
|
})
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'libedit' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'llvm20_build' => :build
|
|
depends_on 'llvm20_lib' # R
|
|
depends_on 'xzutils' # R
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' # R
|
|
|
|
conflicts_ok
|
|
no_shrink
|
|
no_source_build
|
|
no_strip
|
|
|
|
def self.install
|
|
puts 'Installing llvm20_build to pull files for build...'.lightblue
|
|
@filelist_path = File.join(CREW_META_PATH, 'llvm20_build.filelist')
|
|
abort 'File list for llvm20_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?('libLLVM')
|
|
next if filename.include?('llvm-strip')
|
|
|
|
@destpath = File.join(CREW_DEST_DIR, filename)
|
|
@filename_target = File.realpath(filename)
|
|
FileUtils.install @filename_target, @destpath
|
|
end
|
|
end
|
|
end
|