mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 20:53:03 +01:00
Brings following fixes * ec28b8f9cc7f [libcxx] [test] Extend mingw workarounds for armv7/aarch64 too (#136419) * 8c2dc1b5aa7f [clang-repl] Implement LoadDynamicLibrary for clang-repl wasm use cases (#133037) * 02afcbf63fee [SystemZ] Fix compile time regression in adjustInliningThreshold(). (#137527) * c877757659e8 [clang-repl] : Fix clang-repl crash with --cuda flag (#136404) * f4779c389868 [InstCombine] Preserve signbit semantics of NaN with fold to fabs (#136648) * 57a31e183dc8 [InstCombine] Do not fold logical is_finite test (#136851) * 1cf8c7797d2b [GlobalOpt] Do not promote malloc if there are atomic loads/stores (#137158) * 24805c2e0817 [lldb] Use correct path for lldb-server executable (#131519) * 182e8b7f8a71 [clang-format] Correctly annotate kw_operator in using decls (#136545) * 425d1aad294f [RISCV] Handle scalarized reductions in getArithmeticReductionCost * 2d7ad98ec0a8 [clang][analyzer] Fix error path of builtin overflow (#136345) * e7ae5532bc27 [clang-format] Fix mismatched break in BlockIndent (#124998) * 8f288eb619db [lldb][test] Adjust TestTargetReadInstructionsFlavor skipIfs * d76ec6a75d39 [lldb] Fix SBTarget::ReadInstruction with flavor (#134626) * 62072e7f877e [clang][AST] Handle implicit first argument in CallExpr::getBeginLoc() * 581772ed077e [LoongArch] Don't crash on instruction prefetch intrinsics (#135760) * 89adc2d4f93b [HEXAGON] Fix corner cases for hwloops pass (#135439) * 78f6719ca9b5 [GlobalMerge][PPC] Don't merge globals in llvm.metadata section (#131801) * ab0074fe306f Bump version to 20.1.4 (From OE-Core rev: a94a08b86f08e4fbf038abbda6d210b11edb0dd6) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
633 B
PHP
25 lines
633 B
PHP
LLVM_RELEASE = ""
|
|
LLVM_DIR = "llvm${LLVM_RELEASE}"
|
|
|
|
LLVM_HTTP ?= "https://github.com/llvm"
|
|
|
|
MAJOR_VER = "20"
|
|
MINOR_VER = "1"
|
|
PATCH_VER = "4"
|
|
# could be 'rcX' or 'git' or empty ( for release )
|
|
VER_SUFFIX = ""
|
|
|
|
PV = "${MAJOR_VER}.${MINOR_VER}.${PATCH_VER}${VER_SUFFIX}"
|
|
|
|
LLVMMD5SUM = "8a15a0759ef07f2682d2ba4b893c9afe"
|
|
CLANGMD5SUM = "ff42885ed2ab98f1ecb8c1fc41205343"
|
|
LLDMD5SUM = "ae7dc7c027b1fa89b5b013d391d3ee2b"
|
|
LLDBMD5SUM = "2e0d44968471fcde980034dbb826bea9"
|
|
|
|
LLVM_LIBDIR_SUFFIX = "${@d.getVar('baselib').replace('lib', '')}"
|
|
|
|
# set the default pigz thread
|
|
export PIGZ = "-p ${@oe.utils.cpu_count(at_least=2)}"
|
|
|
|
require common.inc
|