mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 16:08:08 -05:00
* Add LLVM 20 builds, Mold 2.37.1, and add rebuilds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update wayland_protocols. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add more llvm20 updates. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * More LLVM 20 updates. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com>
16 lines
503 B
Ruby
16 lines
503 B
Ruby
require 'package'
|
|
Package.load_package("#{__dir__}/llvm20_build.rb")
|
|
|
|
class Llvm < Package
|
|
description 'The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. The optional packages clang, lld, lldb, polly, compiler-rt, libcxx, and libcxxabi are included.'
|
|
homepage Llvm20_build.homepage
|
|
version Llvm20_build.version
|
|
license Llvm20_build.license
|
|
compatibility Llvm20_build.compatibility
|
|
|
|
is_fake
|
|
|
|
depends_on 'llvm20_lib'
|
|
depends_on 'llvm20_dev'
|
|
end
|