Bugzilla – Attachment 1188 Details for
Bug 8337
Switch client interface to Qt
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
How to build Qt statically
BUILD-STATIC-QT.txt (text/plain), 18.18 KB, created by
Pierre Ossman
on 2024-04-23 06:34:54 CEST
(
hide
)
Description:
How to build Qt statically
Filename:
MIME Type:
Creator:
Pierre Ossman
Created:
2024-04-23 06:34:54 CEST
Size:
18.18 KB
patch
obsolete
> How to Build Static Qt SDK -*-outline-*- > Rev1.0 2023-06-21 Qt Professional Service >================================================================================= >* Ubuntu 20 > >** Qt 5.15.2 > >*** Download the source from the following URL > > https://download.qt.io/official_releases/qt/5.15/5.15.2/single/qt-everywhere-src-5.15.2.tar.xz > >*** Extend the source tree > > mkdir -p /opt/Qt/Static/src > cd /opt/Qt/Static/src > tar xvf qt-everywhere-src-5.15.2.tar.xz > >*** Apply patches > > cd /opt/Qt/Static/src/qt-everywhere-src-5.15.2 > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/linux/qtbase-5.15.2-gcc11.patch > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/linux/qtbase-5.15.2-static.patch > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/linux/qtdeclarative-5.15.2-gcc11.patch > >*** Configure, build and install > > ./configure -opensource -release -static \ > -prefix /opt/Qt/Static/5.15.2 \ > -nomake tests -nomake examples \ > -skip qtlocation \ > -skip qtwebengine > make -j4 > make install > > >** Qt 6.2.4 > >*** Prerequisites > > Cmake version must be greater than or equal to 3.21. If it's not > available on the system (usually not available), it must be > installed in advance. > > To build from the source and install it into /usr/local/: > > 1) download cmake-3.26.4.tar.gz > 2) cd cmake-3.26.4 > 3) configure > 4) cmake --build . --parallel 4 > 5) sudo cmake --install > >*** Download the source from the following URL > > https://download.qt.io/official_releases/qt/6.2/6.2.4/single/qt-everywhere-src-6.2.4.tar.xz > >*** Extend the source tree > > mkdir -p /opt/Qt/Static/src > cd /opt/Qt/Static/src > tar xvf qt-everywhere-src-6.2.4.tar.xz > >*** Apply patches > > cd /opt/Qt/Static/src/qt-everywhere-src-6.2.4 > patch -p1 < [PATCH_DIR]/static-qt/6.2.4/patches/linux/qtwebengine-6.2.4-cmake.patch > >*** Configure, build and install > > ./configure -opensource -release -static \ > -prefix /opt/Qt/Static/6.2.4 \ > -nomake tests -nomake examples \ > -skip qtlocation \ > -skip qtwebengine \ > -no-libb2 -qt-zlib -qt-libpng -qt-webp -no-libjpeg -no-tiff \ > -no-icu -qt-pcre \ > -no-opengl -no-eglfs > cmake --build . --parallel 4 > cmake --install . > > >================================================================================= >* macOS > >** Qt 5.15.2 > >*** Download the source from the following URL > > https://download.qt.io/official_releases/qt/5.15/5.15.2/single/qt-everywhere-src-5.15.2.tar.xz > >*** Extend the source tree > > mkdir -p /opt/Qt/Static/src > cd /opt/Qt/Static/src > tar xvf qt-everywhere-src-5.15.2.tar.xz > >*** Apply patches > > cd /opt/Qt/Static/src/qt-everywhere-src-5.15.2 > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/macos/qtbase-5.15.2-gcc11.patch > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/macos/qtbase-5.15.2-static.patch > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/macos/qtbase-5.15.2-cocoa.patch > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/macos/qtdeclarative-5.15.2-gcc11.patch > >*** Configure, build and install > > ./configure -opensource -release -static -no-pch -no-libjpeg \ > -prefix $HOME/Qt/Static/5.15.2 \ > -nomake tests -nomake examples \ > -skip qtlocation \ > -skip qtwebengine > make -j4 > make install > >** Qt 6.2.4 > >*** Download the source from the following URL > > https://download.qt.io/official_releases/qt/6.2/6.2.4/single/qt-everywhere-src-6.2.4.tar.xz > >*** Extend the source tree > > mkdir -p /opt/Qt/Static/src > cd /opt/Qt/Static/src > tar xvf qt-everywhere-src-6.2.4.tar.xz > >*** Apply patches > > cd /opt/Qt/Static/src/qt-everywhere-src-6.2.4 > patch -p1 < [PATCH_DIR]/static-qt/6.2.4/patches/macos/qtwebengine-6.2.4-cmake.patch > >*** Configure, build and install > > ./configure -opensource -release -static -no-pch -no-libjpeg \ > -prefix $HOME/Qt/Static/6.2.4 \ > -nomake tests -nomake examples \ > -skip qtlocation \ > -skip qtwebengine \ > -c++std c++20 \ > -no-openssl -securetransport > cmake --build . --parallel 4 > cmake --install . > > >================================================================================= >* Windows > >** Prerequisites > > Install ruby from https://rubyinstaller.org/downloads/ > > Install ActivePerl from https://www.activestate.com/products/perl/ > > Install libzstd by MSys2 pacman. > pacman -S mingw-w64-x86_64-zstd > >** Qt 5.15.2 > >*** Download the source from the following URL > > https://download.qt.io/official_releases/qt/5.15/5.15.2/single/qt-everywhere-src-5.15.2.zip > >*** Extend the source tree (Use MSYS2 MINGW64 Shell) > > mkdir -p /c/Qt/Static/src > cd /c/Qt/Static/src > unzip qt-everywhere-src-5.15.2.zip > >*** Apply patches (Use MSYS2 MINGW64 Shell) > > cd /c/Qt/Static/src/qt-everywhere-src-5.15.2 > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/win/qtbase-5.15.2-gcc11.patch > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/win/qtbase-5.15.2-static.patch > patch -p1 < [PATCH_DIR]/static-qt/5.12.2/patches/win/qtdeclarative-5.15.2-gcc11.patch > >*** Configure (Use WindowsPowerShell) > > cd C:\Qt\Static\src\qt-everywhere-src-5.15.2 > > $ENV:Path="C:\msys64\mingw64\bin;C:\tools\ruby31\bin;C:\Python310\Scripts\;C:\Python310\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\opt\jom;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\msys64\usr\bin;C:\Windows\System32\WindowsPowerShell\v1.0" > > $ENV:LANG="en" > > cmd /c configure.bat -static -release -platform win32-g++ -opensource -confirm-license -prefix C:/Qt/Static/5.15.2 -qt-zlib -qt-libpng -qt-webp -no-libjpeg -qt-freetype -no-opengl -skip qt3d -skip qtactiveqt -skip qtandroidextras -skip qtcharts -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtgamepad -skip qtlocation -skip qtlottie -skip qtmultimedia -skip qtnetworkauth -skip qtpurchasing -skip qtquick3d -skip qtquicktimeline -skip qtremoteobjects -skip qtscript -skip qtsensors -skip qtspeech -skip qtwayland -skip qtwebglplugin -skip qtwebview -skip webengine -make libs -nomake tools -nomake examples -nomake tests -no-iconv -no-icu -qt-pcre -no-jasper > > ## NOTE > ## Path to Python/Ruby must be adusted to the valid installations. > >*** Build and install (Use MSYS2 MINGW64 Shell) > > export PATH="/c/Windows/System32:/c/Qt/5.15.2/mingw81_64/bin:/c/msys64/mingw64/bin:/c/msys64/usr/bin:/c/Ruby32-x64/bin:/c/opt/jom:/c/Python39:/c/Strawberry/perl/bin:/c/Git/bin:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Program Files (x86)/Windows Kits/10/bin/10.0.18362.0/x64" > > export LANG=en > > cd /c/Qt/Static/src/qt-everywhere-src-5.15.2 > mingw32-make -j4 > mingw32-make install > > ## NOTE1 > ## The last path component (Windows Kits) must be adjusted to > ## the directory where dxc.exe (DirectX Shader Compiler) exists. > > ## NOTE2 > ## Path to Python/Ruby must be adusted to the valid installations. > >** Qt 6.2.4 > >*** Download the source from the following URL > > https://download.qt.io/official_releases/qt/6.2/6.2.4/single/qt-everywhere-src-6.2.4.zip > >*** Extend the source tree (Use MSYS2 MINGW64 Shell) > > mkdir -p /c/Qt/Static/src > cd /c/Qt/Static/src > unzip qt-everywhere-src-6.2.4.zip > >*** Apply patches (Use MSYS2 MINGW64 Shell) > > cd /c/Qt/Static/src/qt-everywhere-src-6.2.4 > patch -p1 < [PATCH_DIR]/static-qt/6.2.4/patches/win/qtwebengine-6.2.4-cmake.patch > > ## NOTE > ## While building Qt6, the following CMake include file must be modified. > ## (After finishing Qt6 build, you must revert it to the original.) > ## > ## file: /c/msys64/mingw64/lib/cmake/zstd/zstdTargets.cmake > ## line: 22 > ## (ORIGINAL) foreach(_cmake_expected_target IN ITEMS zstd::libzstd_shared zstd::libzstd_static) > ## (WHILE Qt6 BUILDING) foreach(_cmake_expected_target IN ITEMS zstd::libzstd_static) > >*** Configure (Use WindowsPowerShell) > > cd C:\Qt\Static\src\qt-everywhere-src-6.2.4 > > $ENV:Path="C:\msys64\mingw64\bin;C:\tools\ruby31\bin;C:\Python310\Scripts\;C:\Python310\;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\opt\jom;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\msys64\usr\bin;C:\Windows\System32\WindowsPowerShell\v1.0" > > $ENV:LANG="en" > > cmd /c configure.bat -static -release -platform win32-g++ -opensource -confirm-license -prefix C:/Qt/Static/6.2.4 -no-libb2 -qt-zlib -qt-libpng -qt-webp -no-libjpeg -no-tiff -qt-freetype -no-opengl -skip qt3d -skip qtactiveqt -skip qtandroidextras -skip qtcharts -skip qtconnectivity -skip qtdatavis3d -skip qtdoc -skip qtgamepad -skip qtlocation -skip qtlottie -skip qtmultimedia -skip qtnetworkauth -skip qtpurchasing -skip qtquick3d -skip qtquicktimeline -skip qtremoteobjects -skip qtscript -skip qtsensors -skip qtspeech -skip qtwayland -skip qtwebglplugin -skip qtwebview -skip webengine -make libs -nomake tools -nomake examples -nomake tests -no-icu -qt-pcre -no-jasper > > ## NOTE > ## Path to Python/Ruby must be adusted to the valid installations. > >*** Build and install (Use MSYS2 MINGW64 Shell) > > export PATH="/c/Windows/System32:/c/Qt/6.2.4/mingw_64/bin:/c/msys64/mingw64/bin:/c/msys64/usr/bin:/c/tools/ruby31/bin:/c/opt/jom:/c/Python310:/c/Strawberry/perl/bin:/c/Git/bin:/c/Windows:/c/Windows/System32/Wbem:/c/Windows/System32/WindowsPowerShell/v1.0:/c/Program Files (x86)/Windows Kits/10/bin/x64" > > export LANG=en > > cd /c/Qt/Static/src/qt-everywhere-src-6.2.4 > cmake --build . --parallel 4 > cmake --install . > > ## NOTE1 > ## The last path component (Windows Kits) must be adjusted to > ## the directory where dxc.exe (DirectX Shader Compiler) exists. > > ## NOTE2 > ## Path to Python/Ruby must be adusted to the valid installations. > > >================================================================================= >* Appendix 1: MSYS2 MINGW64 Package List > >autoconf-wrapper 20221207-1 >autoconf2.13 2.13-5 >autoconf2.69 2.69-2 >autoconf2.71 2.71-1 >autogen 5.18.16-4 >automake-wrapper 20221207-1 >automake1.11 1.11.6-6 >automake1.12 1.12.6-6 >automake1.13 1.13.4-7 >automake1.14 1.14.1-6 >automake1.15 1.15.1-4 >automake1.16 1.16.5-1 >base 2022.06-1 >base-devel 2022.12-2 >bash 5.2.015-1 >bash-completion 2.11-2 >binutils 2.40-1 >bison 3.8.2-4 >brotli 1.0.9-5 >bsdtar 3.6.2-3 >bzip2 1.0.8-4 >ca-certificates 20211016-2 >coreutils 8.32-5 >curl 7.87.0-2 >dash 0.5.12-1 >db 5.3.28-4 >diffstat 1.65-1 >diffutils 3.9-1 >dos2unix 7.4.3-1 >doxygen 1.9.6-1 >file 5.44-5 >filesystem 2023.02.07-1 >findutils 4.9.0-3 >flex 2.6.4-3 >gawk 5.2.2-1 >gcc-libs 11.3.0-3 >gdbm 1.23-1 >getent 2.18.90-4 >gettext 0.21-2 >gmp 6.2.1-2 >gnupg 2.2.40-1 >grep 1~3.0-6 >groff 1.22.4-4 >gzip 1.12-2 >heimdal 7.8.0-3 >heimdal-libs 7.8.0-3 >inetutils 1.9.4-5 >info 7.0.2-1 >isl 0.26-1 >jsoncpp 1.9.5-1 >less 633-1 >libarchive 3.6.2-3 >libargp 20110921-4 >libasprintf 0.21-2 >libassuan 2.5.5-2 >libatomic_ops 7.8.0-1 >libbz2 1.0.8-4 >libcbor 0.10.2-1 >libcrypt 2.1-4 >libcurl 7.87.0-2 >libdb 5.3.28-4 >libedit 20210910_3.1-2 >libexpat 2.5.0-1 >libffi 3.4.4-1 >libfido2 1.13.0-1 >libgc 8.2.4-1 >libgcrypt 1.10.1-5 >libgdbm 1.23-1 >libgettextpo 0.21-2 >libgnutls 3.7.8-2 >libgpg-error 1.46-2 >libgpgme 1.18.0-1 >libguile 3.0.9-1 >libhogweed 3.8.1-1 >libiconv 1.17-1 >libidn2 2.3.4-2 >libintl 0.21-2 >libksba 1.6.3-1 >libltdl 2.4.7-3 >liblz4 1.9.4-1 >liblzma 5.4.1-1 >libnettle 3.8.1-1 >libnghttp2 1.51.0-1 >libnpth 1.6-1 >libopenssl 3.0.7-2 >libp11-kit 0.24.1-4 >libpcre 8.45-3 >libpcre2_8 10.42-1 >libpsl 0.21.2-1 >libreadline 8.2.001-3 >libsqlite 3.40.1-1 >libssh2 1.10.0-3 >libtasn1 4.19.0-1 >libtool 2.4.7-3 >libunistring 1.1-2 >libutil-linux 2.35.2-3 >libxml2 2.10.3-2 >libxslt 1.1.37-1 >libzstd 1.5.2-2 >m4 1.4.19-2 >make 4.4.1-1 >mingw-w64-ucrt-x86_64-binutils 2.40-4 >mingw-w64-ucrt-x86_64-crt-git 11.0.0.r18.g9df2e604d-1 >mingw-w64-ucrt-x86_64-expat 2.5.0-1 >mingw-w64-ucrt-x86_64-gcc 13.1.0-6 >mingw-w64-ucrt-x86_64-gcc-libs 13.1.0-6 >mingw-w64-ucrt-x86_64-gettext 0.21.1-1 >mingw-w64-ucrt-x86_64-gmp 6.2.1-5 >mingw-w64-ucrt-x86_64-headers-git 11.0.0.r18.g9df2e604d-1 >mingw-w64-ucrt-x86_64-isl 0.26-1 >mingw-w64-ucrt-x86_64-libiconv 1.17-3 >mingw-w64-ucrt-x86_64-libmangle-git 11.0.0.r18.g9df2e604d-1 >mingw-w64-ucrt-x86_64-libwinpthread-git 11.0.0.r18.g9df2e604d-1 >mingw-w64-ucrt-x86_64-make 4.4-2 >mingw-w64-ucrt-x86_64-mpc 1.3.1-1 >mingw-w64-ucrt-x86_64-mpfr 4.2.0.p9-1 >mingw-w64-ucrt-x86_64-pkgconf 1~1.8.0-2 >mingw-w64-ucrt-x86_64-tools-git 11.0.0.r18.g9df2e604d-1 >mingw-w64-ucrt-x86_64-windows-default-manifest 6.4-4 >mingw-w64-ucrt-x86_64-winpthreads-git 11.0.0.r18.g9df2e604d-1 >mingw-w64-ucrt-x86_64-zlib 1.2.13-3 >mingw-w64-ucrt-x86_64-zstd 1.5.5-1 >mingw-w64-x86_64-SDL2 2.26.5-1 >mingw-w64-x86_64-aom 3.6.1-1 >mingw-w64-x86_64-binutils 2.40-2 >mingw-w64-x86_64-brotli 1.0.9-5 >mingw-w64-x86_64-bzip2 1.0.8-2 >mingw-w64-x86_64-c-ares 1.18.1-2 >mingw-w64-x86_64-ca-certificates 20211016-4 >mingw-w64-x86_64-cairo 1.17.6-3 >mingw-w64-x86_64-cmake 3.26.3-2 >mingw-w64-x86_64-crt-git 10.0.0.r258.g530c58e17-2 >mingw-w64-x86_64-curl 7.87.0-3 >mingw-w64-x86_64-dav1d 1.2.0-1 >mingw-w64-x86_64-diffutils 3.6-2 >mingw-w64-x86_64-djvulibre 3.5.28-3 >mingw-w64-x86_64-expat 2.5.0-1 >mingw-w64-x86_64-fftw 3.3.10-5 >mingw-w64-x86_64-flif 0.4-2 >mingw-w64-x86_64-fontconfig 2.14.1-1 >mingw-w64-x86_64-freeglut 3.4.0-2 >mingw-w64-x86_64-freetype 2.12.1-1 >mingw-w64-x86_64-fribidi 1.0.12-1 >mingw-w64-x86_64-gcc 13.1.0-5 >mingw-w64-x86_64-gcc-ada 13.1.0-5 >mingw-w64-x86_64-gcc-fortran 13.1.0-5 >mingw-w64-x86_64-gcc-libgfortran 13.1.0-5 >mingw-w64-x86_64-gcc-libs 13.1.0-5 >mingw-w64-x86_64-gcc-objc 13.1.0-5 >mingw-w64-x86_64-gdb 13.1-4 >mingw-w64-x86_64-gdb-multiarch 13.1-4 >mingw-w64-x86_64-gdk-pixbuf2 2.42.10-2 >mingw-w64-x86_64-gettext 0.21.1-1 >mingw-w64-x86_64-giflib 5.2.1-3 >mingw-w64-x86_64-glib2 2.74.5-1 >mingw-w64-x86_64-gmp 6.2.1-5 >mingw-w64-x86_64-gnupg 2.3.8-1 >mingw-w64-x86_64-gnutls 3.8.0-1 >mingw-w64-x86_64-graphite2 1.3.14-2 >mingw-w64-x86_64-gsfonts 20200910-2 >mingw-w64-x86_64-harfbuzz 6.0.0-1 >mingw-w64-x86_64-headers-git 10.0.0.r258.g530c58e17-1 >mingw-w64-x86_64-iconv 1.17-3 >mingw-w64-x86_64-icu 72.1-1 >mingw-w64-x86_64-isl 0.25-1 >mingw-w64-x86_64-jasper 4.0.0-1 >mingw-w64-x86_64-jbigkit 2.1-4 >mingw-w64-x86_64-jq 1.6-5 >mingw-w64-x86_64-jsoncpp 1.9.5-2 >mingw-w64-x86_64-lcms2 2.15-1 >mingw-w64-x86_64-ldns 1.8.3-3 >mingw-w64-x86_64-lerc 4.0.0-1 >mingw-w64-x86_64-libarchive 3.6.2-2 >mingw-w64-x86_64-libassuan 2.5.5-1 >mingw-w64-x86_64-libb2 0.98.1-2 >mingw-w64-x86_64-libde265 1.0.11-1 >mingw-w64-x86_64-libdeflate 1.18-1 >mingw-w64-x86_64-libffi 3.4.4-1 >mingw-w64-x86_64-libgccjit 13.1.0-5 >mingw-w64-x86_64-libgcrypt 1.10.1-1 >mingw-w64-x86_64-libgpg-error 1.46-2 >mingw-w64-x86_64-libheif 1.16.1-1 >mingw-w64-x86_64-libiconv 1.17-3 >mingw-w64-x86_64-libidn2 2.3.3-1 >mingw-w64-x86_64-libjpeg-turbo 2.1.4-1 >mingw-w64-x86_64-libksba 1.6.2-1 >mingw-w64-x86_64-liblqr 0.4.2-4 >mingw-w64-x86_64-libltdl 2.4.7-1 >mingw-w64-x86_64-libmangle-git 10.0.0.r258.g530c58e17-1 >mingw-w64-x86_64-libpng 1.6.39-1 >mingw-w64-x86_64-libpsl 0.21.2-3 >mingw-w64-x86_64-libraqm 0.10.1-1 >mingw-w64-x86_64-libraw 0.21.1-1 >mingw-w64-x86_64-libsigsegv 2.13-1 >mingw-w64-x86_64-libssh2 1.10.0-2 >mingw-w64-x86_64-libsystre 1.0.1-4 >mingw-w64-x86_64-libtasn1 4.19.0-1 >mingw-w64-x86_64-libtiff 4.5.0-1 >mingw-w64-x86_64-libtre-git r128.6fb7206-2 >mingw-w64-x86_64-libunistring 1.1-1 >mingw-w64-x86_64-libusb 1.0.26-1 >mingw-w64-x86_64-libusb-compat-git r76.b5db9d0-2 >mingw-w64-x86_64-libuv 1.44.2-2 >mingw-w64-x86_64-libwebp 1.3.0-3 >mingw-w64-x86_64-libwinpthread-git 10.0.0.r258.g530c58e17-1 >mingw-w64-x86_64-libwmf 0.2.12-4 >mingw-w64-x86_64-libxml2 2.10.3-1 >mingw-w64-x86_64-llvm 15.0.7-2 >mingw-w64-x86_64-lz4 1.9.4-1 >mingw-w64-x86_64-lzo2 2.10-2 >mingw-w64-x86_64-make 4.4-2 >mingw-w64-x86_64-meson 1.0.0-1 >mingw-w64-x86_64-mlir 15.0.7-2 >mingw-w64-x86_64-mpc 1.3.1-1 >mingw-w64-x86_64-mpdecimal 2.5.1-1 >mingw-w64-x86_64-mpfr 4.2.0-1 >mingw-w64-x86_64-ncurses 6.4.20230211-1 >mingw-w64-x86_64-nettle 3.8.1-1 >mingw-w64-x86_64-nghttp2 1.51.0-1 >mingw-w64-x86_64-ninja 1.11.1-3 >mingw-w64-x86_64-npth 1.6-2 >mingw-w64-x86_64-oniguruma 6.9.8-1 >mingw-w64-x86_64-openssl 3.0.7-3 >mingw-w64-x86_64-p11-kit 0.24.1-5 >mingw-w64-x86_64-pcre2 10.42-1 >mingw-w64-x86_64-pixman 0.42.2-1 >mingw-w64-x86_64-pkgconf 1~1.8.0-2 >mingw-w64-x86_64-python 3.10.9-2 >mingw-w64-x86_64-rapidjson 1.1.0-5 >mingw-w64-x86_64-rav1e 0.6.3-1 >mingw-w64-x86_64-readline 8.2.001-6 >mingw-w64-x86_64-rhash 1.4.3-1 >mingw-w64-x86_64-sqlite3 3.40.1-1 >mingw-w64-x86_64-svt-av1 1.5.0-1 >mingw-w64-x86_64-tcl 8.6.12-1 >mingw-w64-x86_64-termcap 1.3.1-6 >mingw-w64-x86_64-tk 8.6.12-1 >mingw-w64-x86_64-tools-git 10.0.0.r258.g530c58e17-1 >mingw-w64-x86_64-ttf-dejavu 2.37-3 >mingw-w64-x86_64-tzdata 2022g-1 >mingw-w64-x86_64-unbound 1.17.0-2 >mingw-w64-x86_64-vulkan-headers 1.3.250-1 >mingw-w64-x86_64-vulkan-loader 1.3.250-1 >mingw-w64-x86_64-windows-default-manifest 6.4-4 >mingw-w64-x86_64-wineditline 2.205-3 >mingw-w64-x86_64-winpthreads-git 10.0.0.r258.g530c58e17-1 >mingw-w64-x86_64-winstorecompat-git 10.0.0.r258.g530c58e17-1 >mingw-w64-x86_64-x265 3.5-3 >mingw-w64-x86_64-xxhash 0.8.1-2 >mingw-w64-x86_64-xz 5.2.9-1 >mingw-w64-x86_64-zlib 1.2.13-2 >mingw-w64-x86_64-zstd 1.5.5-1 >mintty 1~3.6.4-1 >mpc 1.3.0-2 >mpfr 4.2.0-2 >msys2-keyring 1~20221024-1 >msys2-launcher 1.5-1 >msys2-runtime 3.4.6-3 >msys2-runtime-devel 3.4.6-3 >msys2-w32api-headers 10.0.0.r16.g49a56d453-1 >msys2-w32api-runtime 10.0.0.r16.g49a56d453-1 >nano 7.2-1 >ncurses 6.3-3 >nettle 3.8.1-1 >openssh 9.3p1-1 >openssl 3.0.7-2 >p11-kit 0.24.1-4 >pacman 6.0.2-6 >pacman-contrib 1.8.0-1 >pacman-mirrors 20221016-1 >patch 2.7.6-2 >perl 5.36.0-1 >pinentry 1.2.1-1 >pkgconf 1.9.4-1 >rebase 4.5.0-2 >sed 4.9-1 >tar 1.34-3 >tcl 8.6.12-1 >texinfo 7.0.3-1 >texinfo-tex 7.0.3-1 >time 1.9-3 >tzcode 2022g-1 >unzip 6.0-2 >util-linux 2.35.2-3 >vim 8.2.5117-2 >wget 1.21.4-1 >which 2.21-4 >xz 5.4.1-1 >zlib 1.2.13-1 >zstd 1.5.2-2 > > >=================================================================================
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 8337
: 1188 |
1189
|
1190