मैंने रास्पबेरी कंप्यूट मॉड्यूल पर रास्पियन की स्थापना और उबंटू 20 पर क्यूटीक्रिएटर के लिए सेटअप क्रॉस संकलन के बारे में लिखा था।
यह ब्लॉगपोस्ट - इस समय - Qt, raspi OS Bookworm और Ubuntu 22.04 LTSके नवीनतम संस्करण 6.8 का अपडेट है।
आवश्यकताएँ
मैंने निम्नलिखित हार्ड और सॉफ्टवेयर का उपयोग किया:
*Raspberry Pi 4
*raspi OS Bookworm, अनुशंसित सॉफ़्टवेयर के बिना
*Ubuntu 22.04 LTS
*Qt 6.8
*QtCreator 14.02
नोट्स
यदि आपके पास पर्याप्त रैम और सीपीयू कोर वाला लैपटॉप या डेस्कटॉप कंप्यूटर है, तो आप वर्चुअल मशीन में क्रॉस संकलन कर सकते हैं। लेकिन मैंने अनुभव किया, कि एक देशी कंप्यूटर बहुत तेज है और कम त्रुटियां पैदा करता है।
मेरे कोड उदाहरणों में फ़ाइल पथ और आईपी पते पर एक नज़र डालें और उन्हें अपनी आवश्यकताओं के अनुसार समायोजित करें।
जीसीसी, एलडी और एलडीडी के डिस्कवर संस्करण। बाद में क्रॉस कंपाइलर बनाने के लिए उसी संस्करण का स्रोत कोड डाउनलोड किया जाना चाहिए।
pi@raspberrypi:~ $ gcc --version
gcc (Debian 12.2.0-14) 12.2.0
Copyright (C) 2022 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
pi@raspberrypi:~ $ ld --version
GNU ld (GNU Binutils for Debian) 2.40
Copyright (C) 2023 Free Software Foundation, Inc.
This program is free software; you may redistribute it under the terms of
the GNU General Public License version 3 or (at your option) a later version.
This program has absolutely no warranty.
pi@raspberrypi:~ $ ldd --version
ldd (Debian GLIBC 2.36-9+rpt2+deb12u8) 2.36
Copyright (C) 2022 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Written by Roland McGrath and Ulrich Drepper.
~/.bashrc के अंत में कोड के निम्नलिखित टुकड़े को जोड़ें और परिवर्तनों को अपडेट करें:
cd ~
wget https://github.com/Kitware/CMake/releases/download/v3.30.5/cmake-3.30.5.tar.gz
tar -xzvf cmake-3.30.5.tar.gz
cd cmake-3.30.5
./bootstrap
make -j$(nproc)
sudo make install
# Update PATH Environment Variable
which cmake
/usr/local/bin/cmake
export PATH=/usr/local/bin/cmake:$PATH
source ~/.bashrc
cmake --version
एक क्रॉस कंपाइलर के रूप में जीसीसी बनाएं
आवश्यक स्रोत कोड डाउनलोड करें। आपको निम्न आदेशों को अपनी आवश्यकताओं के अनुसार संशोधित करना चाहिए। जब तक मैं इस पृष्ठ को बनाता हूं, वे हैं:
जीसीसी 12.2.0
Binutils 2.40 (एलडी संस्करण)
glibc 2.36 (LDD संस्करण)
cd ~
mkdir gcc_all && cd gcc_all
wget https://ftpmirror.gnu.org/binutils/binutils-2.40.tar.bz2
wget https://ftpmirror.gnu.org/glibc/glibc-2.36.tar.bz2
wget https://ftpmirror.gnu.org/gcc/gcc-12.2.0/gcc-12.2.0.tar.gz
git clone --depth=1 https://github.com/raspberrypi/linux
tar xf binutils-2.40.tar.bz2
tar xf glibc-2.36.tar.bz2
tar xf gcc-12.2.0.tar.gz
rm *.tar.*
cd gcc-12.2.0
contrib/download_prerequisites
उपरोक्त फ़ोल्डर में कर्नेल हेडर की प्रतिलिपि बनाएँ।
cd ~/gcc_all
cd linux
KERNEL=kernel7
make ARCH=arm64 INSTALL_HDR_PATH=/opt/cross-pi-gcc/aarch64-linux-gnu headers_install
बिनुटिल्स बनाएं।
cd ~/gcc_all
mkdir build-binutils && cd build-binutils
../binutils-2.40/configure --prefix=/opt/cross-pi-gcc --target=aarch64-linux-gnu --with-arch=armv8 --disable-multilib
make -j 8
make install
संपादित करें gcc-12.2.0/libsanitizer/asan/asan_linux.cpp। कोड का निम्नलिखित टुकड़ा जोड़ें।
#ifndef PATH_MAX
#define PATH_MAX 4096
#endif
जीसीसी का आंशिक निर्माण करें।
cd ~/gcc_all
mkdir build-gcc && cd build-gcc
../gcc-12.2.0/configure --prefix=/opt/cross-pi-gcc --target=aarch64-linux-gnu --enable-languages=c,c++ --disable-multilib
make -j8 all-gcc
make install-gcc
आंशिक रूप से ग्लिबक का निर्माण।
cd ~/gcc_all
mkdir build-glibc && cd build-glibc
../glibc-2.36/configure --prefix=/opt/cross-pi-gcc/aarch64-linux-gnu --build=$MACHTYPE --host=aarch64-linux-gnu --target=aarch64-linux-gnu --with-headers=/opt/cross-pi-gcc/aarch64-linux-gnu/include --disable-multilib libc_cv_forced_unwind=yes
make install-bootstrap-headers=yes install-headers
make -j8 csu/subdir_lib
install csu/crt1.o csu/crti.o csu/crtn.o /opt/cross-pi-gcc/aarch64-linux-gnu/lib
aarch64-linux-gnu-gcc -nostdlib -nostartfiles -shared -x c /dev/null -o /opt/cross-pi-gcc/aarch64-linux-gnu/lib/libc.so
touch /opt/cross-pi-gcc/aarch64-linux-gnu/include/gnu/stubs.h
जीसीसी पर वापस।
cd ~/gcc_all/build-gcc
make -j8 all-target-libgcc
make install-target-libgcc
glibc इमारत खत्म.
cd ~/gcc_all/build-glibc
make -j8
make install
जीसीसी का निर्माण समाप्त करें।
cd ~/gcc_all/build-gcc
make -j8
make install
इस बिंदु पर, हमारे पास जीसीसी के साथ एक पूर्ण क्रॉस कंपाइलर टूलचेन है। फ़ोल्डर gcc_all की अब और आवश्यकता नहीं है। आप इसे हटा सकते हैं।</:code19:></:code18:></:code17:></:code16:></:code15:></:code14:></:code13:></:code12:></:code11:></:code10:></:code9:></:code8:></:code7:>
बिल्डिंग Qt6
Qt6 बनाने की दो संभावनाएं हैं। डाउनलोड करने के लिए एक "single" (https://download.qt.io/official_releases/qt/6.8/6.8.0/single/qt-everywhere-src-6.8.0.tar.xz) संस्करण है, जिसमें qtbase और सभी सबमॉड्यूल शामिल हैं। यह बहुत भारी सामान है और इसे संकलित करने के लिए बहुत अधिक शक्ति और समय की आवश्यकता होती है।
मेरी सिफारिश है, qtbase आधार के रूप में संकलित करने के लिए और बाद में केवल प्रत्येक सबमॉड्यूल को संकलित करें जिसकी आपको अलग से आवश्यकता है।
sysroot और qt6 के लिए फ़ोल्डर बनाएं। मैं अपने कार्यक्षेत्र/qt-rpi-cross-compilation निर्देशिका में इस फ़ोल्डर को बनाता हूं।
cd ~/workspace/qt-rpi-cross-compilation/qt6/src
wget https://download.qt.io/official_releases/qt/6.8/6.8.0/submodules/qtbase-everywhere-src-6.8.0.tar.xz
tar xf qtbase-everywhere-src-6.8.0.tar.xz
~/workspace/qt-rpi-cross-compilation/qt6 में toolchain.cmake नाम की एक फ़ाइल बनाएं।
आपको अपने परिवेश में "set(TARGET_SYSROOT /home/factory/workspace/qt-rpi-cross-compilation/rpi-sysroot)" लाइन को समायोजित करने की आवश्यकता है।
यदि आप QtCreator में कोई प्रोजेक्ट बनाते हैं, तो आपको "Run" कॉन्फ़िगरेशन को समायोजित करना होगा। "Environment"कम से कम आपको जोड़ना होगा:
-LD_LIBRARY_PATH=:/usr/local/qt6/lib/
क्यूटी सबमॉड्यूल जोड़ें
QML मॉड्यूल जोड़ें
डाउनलोड स्रोत कोड:
cd ~/workspace/qt-rpi-cross-compilation/qt6/src
wget https://download.qt.io/official_releases/qt/6.8/6.8.0/submodules/qtshadertools-everywhere-src-6.8.0.tar.xz
tar xf qtshadertools-everywhere-src-6.8.0.tar.xz
wget https://download.qt.io/official_releases/qt/6.8/6.8.0/submodules/qtdeclarative-everywhere-src-6.8.0.tar.xz
tar xf qtdeclarative-everywhere-src-6.8.0.tar.xz
आपको ~/workspace/qt-rpi-cross-compilation/qt6/src/qtdeclarative-everywhere-src-6.8.0/dependencies.yaml और ~/workspace/qt-rpi-cross-compilation/qt6/src/qtshadertools-everywhere-src-6.8.0/dependencies.yamlपर निर्भरता की जांच करनी होगी।
सुनिश्चित करें कि आवश्यक मॉड्यूल पहले बनाए और स्थापित किए जाने चाहिए।