mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-23 21:36:50 +08:00
set -e won't work if logical OR is used after commands. These error echo's need to be removed so that error catch will works. Also set -ex added to print executed command when error caught. Task-number: QTQAINFRA-1533 Change-Id: Ib4ea832a0ee813f99f59ebacad51ec57c3eff57d Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
95 lines
4.1 KiB
Bash
Executable File
95 lines
4.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#############################################################################
|
|
##
|
|
## Copyright (C) 2017 The Qt Company Ltd.
|
|
## Contact: http://www.qt.io/licensing/
|
|
##
|
|
## This file is part of the provisioning scripts of the Qt Toolkit.
|
|
##
|
|
## $QT_BEGIN_LICENSE:LGPL21$
|
|
## Commercial License Usage
|
|
## Licensees holding valid commercial Qt licenses may use this file in
|
|
## accordance with the commercial license agreement provided with the
|
|
## Software or, alternatively, in accordance with the terms contained in
|
|
## a written agreement between you and The Qt Company. For licensing terms
|
|
## and conditions see http://www.qt.io/terms-conditions. For further
|
|
## information use the contact form at http://www.qt.io/contact-us.
|
|
##
|
|
## GNU Lesser General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
|
## General Public License version 2.1 or version 3 as published by the Free
|
|
## Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
## LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
## following information to ensure the GNU Lesser General Public License
|
|
## requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
##
|
|
## As a special exception, The Qt Company gives you certain additional
|
|
## rights. These rights are described in The Qt Company LGPL Exception
|
|
## version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
##
|
|
## $QT_END_LICENSE$
|
|
##
|
|
#############################################################################
|
|
|
|
set -ex
|
|
# build latest qemu to usermode
|
|
sudo apt-get -y install automake autoconf libtool
|
|
|
|
tempDir=$(mktemp -d)
|
|
git clone git://git.qemu.org/qemu.git "$tempDir"
|
|
cd "$tempDir"
|
|
|
|
#latest commit from the master proven to work
|
|
git checkout c7f1cf01b8245762ca5864e835d84f6677ae8b1f
|
|
git submodule update --init pixman
|
|
./configure --target-list=arm-linux-user,aarch64-linux-user --static
|
|
make
|
|
sudo make install
|
|
rm -rf "$tempDir"
|
|
|
|
# Enable binfmt support
|
|
sudo apt-get -y install binfmt-support
|
|
|
|
# Install qemu binfmt for 32bit and 64bit arm architectures
|
|
sudo update-binfmts --package qemu-arm --install arm \
|
|
/usr/local/bin/qemu-arm \
|
|
--magic \
|
|
"\x7f\x45\x4c\x46\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x28\x00" \
|
|
--mask \
|
|
"\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff"
|
|
sudo update-binfmts --package qemu-aarch64 --install aarch64 \
|
|
/usr/local/bin/qemu-aarch64 \
|
|
--magic \
|
|
"\x7f\x45\x4c\x46\x02\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\xb7\x00" \
|
|
--mask \
|
|
"\xff\xff\xff\xff\xff\xff\xff\x00\xff\xff\xff\xff\xff\xff\xff\xff\xfe\xff\xff\xff"
|
|
|
|
# First test using QFont fails if fonts-noto-cjk is installed. This happens because
|
|
# running fontcache for that font takes > 5 mins when run on QEMU. Running fc-cache
|
|
# doesn't help since host version creates cache for a wrong architecture and running
|
|
# armv7 fc-cache segfaults on QEMU.
|
|
sudo DEBIAN_FRONTEND=noninteractive apt-get -y remove fonts-noto-cjk
|
|
|
|
# If normal fontconfig paths are used, qemu parses what ever files it finds from
|
|
# the toolchain sysroot and the rest from the system fonts.
|
|
QEMU_FONTCONFPATH=~/qemu_fonts
|
|
QEMU_FONTCONFFILE=$QEMU_FONTCONFPATH/fonts.qemu.conf
|
|
mkdir -p $QEMU_FONTCONFPATH
|
|
|
|
# Copy system font configuration files from system to a location with prefix that can't be found from
|
|
# the toolchain sysroot
|
|
cp -Lr /etc/fonts/* $QEMU_FONTCONFPATH
|
|
|
|
# Create links to the actual system font files
|
|
ln -s /usr/share/fonts $QEMU_FONTCONFPATH/fonts
|
|
ln -s /usr/local/share/fonts $QEMU_FONTCONFPATH/local_fonts
|
|
|
|
# Change font configuration file to point to files that can't be found from the toolchain sysroot
|
|
sed $QEMU_FONTCONFPATH/fonts.conf -e "s:conf.d:$QEMU_FONTCONFPATH/conf.d:" > $QEMU_FONTCONFFILE
|
|
sed $QEMU_FONTCONFFILE -e "s:/usr/share/fonts:$QEMU_FONTCONFPATH/fonts:" -i
|
|
sed $QEMU_FONTCONFFILE -e "s:/usr/local/share/fonts:$QEMU_FONTCONFPATH/local_fonts:" -i
|
|
|
|
# Set QEMU font configuration variables
|
|
echo "export QEMU_SET_ENV=\"FONTCONFIG_FILE=$QEMU_FONTCONFFILE,FONTCONFIG_PATH=$QEMU_FONTCONFPATH\"" >> ~/.profile
|