Document/ Source code for generating pre-build qt package that installed from the Linux QT Installer
-
Hello, I would like to know where can i found the documentation / source code for building the pre-built qt package that are installed from the Linux QT Installer like https://download.qt.io/archive/qt/5.10/5.10.1/qt-opensource-linux-x64-5.10.1.run .
Where can i get the steps / source codes of the build script for that?
-
Hello, I would like to know where can i found the documentation / source code for building the pre-built qt package that are installed from the Linux QT Installer like https://download.qt.io/archive/qt/5.10/5.10.1/qt-opensource-linux-x64-5.10.1.run .
Where can i get the steps / source codes of the build script for that?
@michael_wu_1995 said in Document/ Source code for generating pre-build qt package that installed from the Linux QT Installer:
Where can i get the steps / source codes of the build script for that?
From the Qt developers. This is user forum, not sure you will get an answer here.
Qt sources are here: https://code.qt.io/ -
Hello, I would like to know where can i found the documentation / source code for building the pre-built qt package that are installed from the Linux QT Installer like https://download.qt.io/archive/qt/5.10/5.10.1/qt-opensource-linux-x64-5.10.1.run .
Where can i get the steps / source codes of the build script for that?
@michael_wu_1995 said in Document/ Source code for generating pre-build qt package that installed from the Linux QT Installer:
Hello, I would like to know where can i found the documentation / source code for building the pre-built qt package that are installed from the Linux QT Installer like https://download.qt.io/archive/qt/5.10/5.10.1/qt-opensource-linux-x64-5.10.1.run .
Where can i get the steps / source codes of the build script for that?
Hi, and welcome!
The Qt source code is in the "singles" subfolder of the link you posted. Look inside https://download.qt.io/archive/qt/5.10/5.10.1/
For example: https://download.qt.io/archive/qt/5.10/5.10.1/single/qt-everywhere-src-5.10.1.tar.xz (Note: The .tar.xz package is for Linux, while the .zip package is for Windows)
There is no single build script.
- You run the
configure
script in the top-level of the source folder- The configure options for Qt 5.10.1 on Linux are at https://code.qt.io/cgit/qtsdk/qtsdk.git/tree/packaging-tools/bld_config/configure_linux_opensource?h=v5.10.1-packaging
- After configuration is complete, just run
make
andmake install
.
- You run the
-
@michael_wu_1995 said in Document/ Source code for generating pre-build qt package that installed from the Linux QT Installer:
Hello, I would like to know where can i found the documentation / source code for building the pre-built qt package that are installed from the Linux QT Installer like https://download.qt.io/archive/qt/5.10/5.10.1/qt-opensource-linux-x64-5.10.1.run .
Where can i get the steps / source codes of the build script for that?
Hi, and welcome!
The Qt source code is in the "singles" subfolder of the link you posted. Look inside https://download.qt.io/archive/qt/5.10/5.10.1/
For example: https://download.qt.io/archive/qt/5.10/5.10.1/single/qt-everywhere-src-5.10.1.tar.xz (Note: The .tar.xz package is for Linux, while the .zip package is for Windows)
There is no single build script.
- You run the
configure
script in the top-level of the source folder- The configure options for Qt 5.10.1 on Linux are at https://code.qt.io/cgit/qtsdk/qtsdk.git/tree/packaging-tools/bld_config/configure_linux_opensource?h=v5.10.1-packaging
- After configuration is complete, just run
make
andmake install
.
@jksh Thank you very much, https://code.qt.io/cgit/qtsdk/qtsdk.git/tree/packaging-tools/bld_config/configure_linux_opensource?h=v5.10.1-packaging is exactly what i want. Thanks for you help.
- You run the
-
@jksh Thank you very much, https://code.qt.io/cgit/qtsdk/qtsdk.git/tree/packaging-tools/bld_config/configure_linux_opensource?h=v5.10.1-packaging is exactly what i want. Thanks for you help.
@michael_wu_1995 said in Document/ Source code for generating pre-build qt package that installed from the Linux QT Installer:
is exactly what i want
it seems your issue is solved, so please don't forget to mark your post as such! Thanks.