mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
AutoBuild: llvm started at 2025-03-06-21UTC (#11486)
* Changes for LLVM 20.1 Base Build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to llvm * Add built packages for linux/amd64 to llvm * Add built packages for linux/arm/v7 to llvm --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
1c0e79be2b
commit
7508d6600e
4927
manifest/armv7l/l/llvm20_build.filelist
Normal file
4927
manifest/armv7l/l/llvm20_build.filelist
Normal file
File diff suppressed because it is too large
Load Diff
4922
manifest/i686/l/llvm20_build.filelist
Normal file
4922
manifest/i686/l/llvm20_build.filelist
Normal file
File diff suppressed because it is too large
Load Diff
4952
manifest/x86_64/l/llvm20_build.filelist
Normal file
4952
manifest/x86_64/l/llvm20_build.filelist
Normal file
File diff suppressed because it is too large
Load Diff
202
packages/llvm20_build.rb
Normal file
202
packages/llvm20_build.rb
Normal file
@@ -0,0 +1,202 @@
|
||||
require 'package'
|
||||
|
||||
class Llvm20_build < Package
|
||||
@llvm_projects_to_build = ARCH == 'x86_64' ? 'bolt;clang;clang-tools-extra;compiler-rt;lld;lldb;polly;pstl' : 'clang;clang-tools-extra;compiler-rt;lld;lldb;polly;pstl'
|
||||
description "The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. The packages included are: #{@llvm_projects_to_build.gsub(';', ' ')}"
|
||||
homepage 'https://llvm.org/'
|
||||
version '20.1.0'
|
||||
# When upgrading llvm*_build, be sure to upgrade llvm_lib*, llvm_dev*, libclc, and openmp in tandem.
|
||||
license 'Apache-2.0-with-LLVM-exceptions, UoI-NCSA, BSD, public-domain, rc, Apache-2.0 and MIT'
|
||||
compatibility 'all'
|
||||
source_url 'https://github.com/llvm/llvm-project.git'
|
||||
git_hashtag "llvmorg-#{version}"
|
||||
binary_compression 'tar.zst'
|
||||
|
||||
binary_sha256({
|
||||
aarch64: '7518f6c15d13866f9144a231b10cdc6b1995067d859651c03ff9e733a015d84a',
|
||||
armv7l: '7518f6c15d13866f9144a231b10cdc6b1995067d859651c03ff9e733a015d84a',
|
||||
i686: 'ae2f5da8b17d4b5c77afe6b3b057d6bdf204e8465600cf5cae65334ed2cacc4a',
|
||||
x86_64: '1d467898066e233a33b5794c8549868629cc7ecd8942daf4bf491f7b6093636d'
|
||||
})
|
||||
|
||||
depends_on 'gcc_lib' # R
|
||||
depends_on 'glibc' # R
|
||||
depends_on 'libedit' # R
|
||||
depends_on 'libffi' # R
|
||||
depends_on 'libxml2' # R
|
||||
depends_on 'llvm19_dev' => :build
|
||||
depends_on 'ocaml' => :build
|
||||
depends_on 'py3_pygments' => :build
|
||||
depends_on 'py3_pyyaml' => :build
|
||||
depends_on 'sccache' => :build
|
||||
depends_on 'xzutils' # R
|
||||
depends_on 'zlib' # R
|
||||
depends_on 'zstd' # R
|
||||
|
||||
no_env_options
|
||||
conflicts_ok
|
||||
|
||||
case ARCH
|
||||
when 'aarch64', 'armv7l'
|
||||
# LLVM_TARGETS_TO_BUILD = 'ARM;AArch64;AMDGPU'
|
||||
# LLVM_TARGETS_TO_BUILD = 'all'.freeze
|
||||
@ARCH_C_FLAGS = "-fPIC -mfloat-abi=hard -mthumb -mfpu=vfpv3-d16 -march=armv7-a+fp -ccc-gcc-name #{CREW_TARGET}"
|
||||
@ARCH_CXX_FLAGS = "-fPIC -mfloat-abi=hard -mthumb -mfpu=vfpv3-d16 -march=armv7-a+fp -ccc-gcc-name #{CREW_TARGET}"
|
||||
@ARCH_LDFLAGS = ''
|
||||
@ARCH_LTO_LDFLAGS = "#{@ARCH_LDFLAGS} -flto=thin"
|
||||
when 'i686'
|
||||
# LLVM_TARGETS_TO_BUILD = 'X86'.freeze
|
||||
# Because ld.lld: error: undefinler-rt;libc;libcxx;libcxxabi;libunwind;openmped symbol: __atomic_store
|
||||
# Polly demands fPIC
|
||||
@ARCH_C_FLAGS = '-latomic -fPIC'
|
||||
@ARCH_CXX_FLAGS = '-latomic -fPIC'
|
||||
# Because getting this error:
|
||||
# ld.lld: error: relocation R_386_PC32 cannot be used against symbol isl_map_fix_si; recompile with -fPIC
|
||||
# So as per https://github.com/openssl/openssl/issues/11305#issuecomment-602003528
|
||||
@ARCH_LDFLAGS = '-Wl,-znotext'
|
||||
@ARCH_LTO_LDFLAGS = "#{@ARCH_LDFLAGS} -flto=thin"
|
||||
# lldb fails on i686 due to requirement for a kernel > 4.1.
|
||||
# See https://github.com/llvm/llvm-project/issues/57594
|
||||
when 'x86_64'
|
||||
# LLVM_TARGETS_TO_BUILD = 'X86;AMDGPU'
|
||||
# LLVM_TARGETS_TO_BUILD = 'all'.freeze
|
||||
@ARCH_C_FLAGS = '-fPIC'
|
||||
@ARCH_CXX_FLAGS = '-fPIC'
|
||||
@ARCH_LDFLAGS = ''
|
||||
@ARCH_LTO_LDFLAGS = "#{@ARCH_LDFLAGS} -flto=thin"
|
||||
end
|
||||
@ARCH_C_LTO_FLAGS = "#{@ARCH_C_FLAGS} -flto=thin"
|
||||
@ARCH_CXX_LTO_FLAGS = "#{@ARCH_CXX_FLAGS} -flto=thin"
|
||||
# flang isn't supported on 32-bit architectures.
|
||||
# openmp is its own package.
|
||||
|
||||
# Using Targets 'all' for non-i686 because otherwise mesa complains.
|
||||
# This may be patched upstream as per
|
||||
# https://reviews.llvm.org/rG1de56d6d13c083c996dfd44a32041dacae037d66
|
||||
LLVM_TARGETS_TO_BUILD = 'all'.freeze
|
||||
|
||||
def self.patch
|
||||
# Remove rc suffix on final release.
|
||||
system "sed -i 's,set(LLVM_VERSION_SUFFIX rc),,' llvm/CMakeLists.txt"
|
||||
|
||||
# Patch for LLVM 15+ because of https://github.com/llvm/llvm-project/issues/58851
|
||||
File.write 'llvm_crew_lib_prefix.patch', <<~LLVM_PATCH_EOF
|
||||
--- a/clang/lib/Driver/ToolChains/Linux.cpp 2022-11-30 15:50:36.777754608 -0500
|
||||
+++ b/clang/lib/Driver/ToolChains/Linux.cpp 2022-11-30 15:51:57.004417484 -0500
|
||||
@@ -314,6 +314,7 @@ Linux::Linux(const Driver &D, const llvm
|
||||
D.getVFS().exists(D.Dir + "/../lib/libc++.so"))
|
||||
addPathIfExists(D, D.Dir + "/../lib", Paths);
|
||||
|
||||
+ addPathIfExists(D, concat(SysRoot, "#{CREW_LIB_PREFIX}"), Paths);
|
||||
addPathIfExists(D, concat(SysRoot, "/lib"), Paths);
|
||||
addPathIfExists(D, concat(SysRoot, "/usr/lib"), Paths);
|
||||
}
|
||||
LLVM_PATCH_EOF
|
||||
system 'patch -Np1 -i llvm_crew_lib_prefix.patch'
|
||||
end
|
||||
|
||||
def self.build
|
||||
############################################################
|
||||
puts "Building LLVM Targets: #{LLVM_TARGETS_TO_BUILD}".lightgreen
|
||||
puts "Building LLVM Projects: #{@llvm_projects_to_build}".lightgreen
|
||||
############################################################
|
||||
|
||||
unless Dir.exist?('builddir')
|
||||
FileUtils.mkdir_p 'builddir'
|
||||
File.write 'builddir/clc', <<~CLC_EOF
|
||||
#!/bin/bash
|
||||
machine=$(gcc -dumpmachine)
|
||||
version=$(gcc -dumpversion)
|
||||
gnuc_lib=#{CREW_LIB_PREFIX}/gcc/${machine}/${version}
|
||||
clang -B ${gnuc_lib} -L ${gnuc_lib} "$@"
|
||||
CLC_EOF
|
||||
File.write 'builddir/clc++', <<~CLCPLUSPLUS_EOF
|
||||
#!/bin/bash
|
||||
machine=$(gcc -dumpmachine)
|
||||
version=$(gcc -dumpversion)
|
||||
cxx_sys=#{CREW_PREFIX}/include/c++/${version}
|
||||
cxx_inc=#{CREW_PREFIX}/include/c++/${version}/${machine}
|
||||
gnuc_lib=#{CREW_LIB_PREFIX}/gcc/${machine}/${version}
|
||||
clang++ -fPIC -rtlib=compiler-rt -stdlib=libc++ -cxx-isystem ${cxx_sys} -I ${cxx_inc} -B ${gnuc_lib} -L ${gnuc_lib} "$@"
|
||||
CLCPLUSPLUS_EOF
|
||||
system "mold -run cmake -B builddir -G Ninja llvm \
|
||||
-DCMAKE_ASM_COMPILER_TARGET=#{CREW_TARGET} \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_C_COMPILER=$(which clang) \
|
||||
-DCMAKE_C_COMPILER_LAUNCHER=sccache \
|
||||
-DCMAKE_C_COMPILER_TARGET=#{CREW_TARGET} \
|
||||
-DCMAKE_C_FLAGS='#{@ARCH_C_LTO_FLAGS}' \
|
||||
-DCMAKE_CXX_COMPILER=$(which clang++) \
|
||||
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache \
|
||||
-DCMAKE_CXX_FLAGS='#{@ARCH_CXX_LTO_FLAGS}' \
|
||||
-DCMAKE_EXE_LINKER_FLAGS='#{@ARCH_LTO_LDFLAGS}' \
|
||||
-DCMAKE_INSTALL_LIBDIR=#{ARCH_LIB} \
|
||||
-DCMAKE_INSTALL_PREFIX=#{CREW_PREFIX} \
|
||||
-DCLANG_DEFAULT_LINKER=#{CREW_LINKER} \
|
||||
-D_CMAKE_TOOLCHAIN_PREFIX=llvm- \
|
||||
-DCOMPILER_RT_BUILD_BUILTINS=ON \
|
||||
-DCOMPILER_RT_BUILD_LIBFUZZER=OFF \
|
||||
-DCOMPILER_RT_BUILD_SANITIZERS=OFF \
|
||||
-DCOMPILER_RT_DEFAULT_TARGET_ONLY=ON \
|
||||
-DLLDB_INCLUDE_TESTS=OFF \
|
||||
-DLLVM_BINUTILS_INCDIR='#{CREW_PREFIX}/include' \
|
||||
-DLLVM_BUILD_LLVM_DYLIB=ON \
|
||||
-DLLVM_DEFAULT_TARGET_TRIPLE=#{CREW_TARGET} \
|
||||
-DLLVM_ENABLE_FFI=ON \
|
||||
-DLLVM_ENABLE_LTO=Thin \
|
||||
-DLLVM_ENABLE_PROJECTS='#{@llvm_projects_to_build}' \
|
||||
-DLLVM_ENABLE_RTTI=ON \
|
||||
-DLLVM_INCLUDE_BENCHMARKS=OFF \
|
||||
-DLLVM_INSTALL_UTILS=ON \
|
||||
-DLLVM_LIBDIR_SUFFIX='#{CREW_LIB_SUFFIX}' \
|
||||
-DLLVM_LINK_LLVM_DYLIB=ON \
|
||||
-DLLVM_OPTIMIZED_TABLEGEN=ON \
|
||||
-DLLVM_TARGETS_TO_BUILD='#{LLVM_TARGETS_TO_BUILD}' \
|
||||
-Wno-dev"
|
||||
end
|
||||
@counter = 1
|
||||
@counter_max = 20
|
||||
loop do
|
||||
break if Kernel.system "mold -run #{CREW_NINJA} -C builddir -j #{CREW_NPROC}"
|
||||
|
||||
puts "Make iteration #{@counter} of #{@counter_max}...".orange
|
||||
|
||||
@counter += 1
|
||||
break if @counter > @counter_max
|
||||
end
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "DESTDIR=#{CREW_DEST_DIR} #{CREW_NINJA} -C builddir install"
|
||||
Dir.chdir('builddir') do
|
||||
FileUtils.install 'clc', "#{CREW_DEST_PREFIX}/bin/clc", mode: 0o755
|
||||
FileUtils.install 'clc++', "#{CREW_DEST_PREFIX}/bin/clc++", mode: 0o755
|
||||
FileUtils.mkdir_p "#{CREW_DEST_LIB_PREFIX}/bfd-plugins"
|
||||
Dir.chdir("#{CREW_DEST_LIB_PREFIX}/bfd-plugins") do
|
||||
FileUtils.ln_s "../../lib#{CREW_LIB_SUFFIX}/LLVMgold.so", 'LLVMgold.so'
|
||||
end
|
||||
# libunwind.* conflicts with libunwind package
|
||||
FileUtils.rm Dir.glob("#{CREW_DEST_LIB_PREFIX}/libunwind.*")
|
||||
end
|
||||
end
|
||||
|
||||
# preserve for check, skip check for current version
|
||||
def self.check
|
||||
Dir.chdir('builddir') do
|
||||
system 'ninja check-llvm || true'
|
||||
system 'ninja check-clang || true'
|
||||
system 'ninja check-lld || true'
|
||||
end
|
||||
end
|
||||
|
||||
def self.postinstall
|
||||
puts
|
||||
puts "To compile programs, use 'clang' or 'clang++'.".lightblue
|
||||
puts
|
||||
puts 'To avoid the repeated use of switch options,'.lightblue
|
||||
puts "try the wrapper scripts 'clc' or 'clc++'.".lightblue
|
||||
puts
|
||||
puts 'For more information, see https://llvm.org/pubs/2008-10-04-ACAT-LLVM-Intro.pdf'.lightblue
|
||||
puts
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user