Thu, 19 Sep 2024 19:18:15 UTC | login

Information for build binaryen-118-1.fc41

ID328922
Package Namebinaryen
Version118
Release1.fc41
Epoch
Sourcegit+https://src.fedoraproject.org/rpms/binaryen.git#49ff61495dc3b6f82d0c08638572d40bb517846c
SummaryCompiler and toolchain infrastructure library for WebAssembly
DescriptionBinaryen is a compiler and toolchain infrastructure library for WebAssembly, written in C++. It aims to make compiling to WebAssembly easy, fast, and effective: * Easy: Binaryen has a simple C API in a single header, and can also be used from JavaScript. It accepts input in WebAssembly-like form but also accepts a general control flow graph for compilers that prefer that. * Fast: Binaryen's internal IR uses compact data structures and is designed for completely parallel codegen and optimization, using all available CPU cores. Binaryen's IR also compiles down to WebAssembly extremely easily and quickly because it is essentially a subset of WebAssembly. * Effective: Binaryen's optimizer has many passes that can improve code very significantly (e.g. local coloring to coalesce local variables; dead code elimination; precomputing expressions when possible at compile time; etc.). These optimizations aim to make Binaryen powerful enough to be used as a compiler backend by itself. One specific area of focus is on WebAssembly-specific optimizations (that general-purpose compilers might not do), which you can think of as wasm minification , similar to minification for JavaScript, CSS, etc., all of which are language-specific (an example of such an optimization is block return value generation in SimplifyLocals).
Built bydavidlt
State failed
Volume DEFAULT
StartedThu, 19 Sep 2024 10:15:29 UTC
CompletedThu, 19 Sep 2024 15:07:34 UTC
Taskbuild (f41, /rpms/binaryen.git:49ff61495dc3b6f82d0c08638572d40bb517846c)
Extra{'source': {'original_url': 'git+https://src.fedoraproject.org/rpms/binaryen.git#49ff61495dc3b6f82d0c08638572d40bb517846c'}}
Tags No tags
RPMs No RPMs
Changelog * Wed Jul 24 2024 Dominik Mierzejewski <dominik@greysector.net> - 118-1 - update to 118 (#2266705) - drop obsolete patches - switch to modern macros * Wed Jul 24 2024 Miroslav Suchý <msuchy@redhat.com> - 116-5 - convert license to SPDX * Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 116-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild * Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 116-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 116-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild * Thu Jul 27 2023 Dominik Mierzejewski <dominik@greysector.net> 116-1 - update to 116 (#2169040) - drop obsolete patches - work around/fix test failures * Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 111-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild * Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 111-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild * Tue Dec 13 2022 Dominik Mierzejewski <dominik@greysector.net> 111-1 - update to 111 (#2144160) - backport upstream fixes for OOB reads in string_view - disable multi_unit_abbrev_noprint.wasm test running out of memory on i686 * Wed Sep 21 2022 Dominik Mierzejewski <rpm@greysector.net> 110-1 - update to 110 (#2081423) - fix building with external gtest