d83995caab
Not much different from i.MX6, apart from switching to aarch64 and the appropriate tune flags. [ChangeLog][Platform Specific Changes][Linux] Added a device spec for 64-bit i.MX8 systems (Vivante graphics stack) Change-Id: I1fe939fca87d5f3031cefbf43fa359aeeaf44752 Reviewed-by: Andy Nichols <andy.nichols@qt.io>
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
#
|
|
# qmake configuration for the NXP i.MX8 based boards (64-bit)
|
|
#
|
|
# The configuration below is set up for running with the fbdev-style
|
|
# Vivante graphics stack. (so eglfs with the eglfs_viv backend, no
|
|
# direct drm use via eglfs_kms)
|
|
|
|
# Wayland should also be functional. However, when writing Wayland
|
|
# *compositors* with Qt, the eglfs backend will have to be switched to
|
|
# eglfs_viv_wl by setting the QT_QPA_EGLFS_INTEGRATION environment
|
|
# variable.
|
|
#
|
|
# Below is an example configure line that assumes there is an AArch64
|
|
# toolchain and sysroot available in $HOME/imx8. On device Qt is
|
|
# expected to be placed under /usr/local/qt514 whereas on the host
|
|
# 'make install' will copy the host tools and the target libraries to
|
|
# $HOME/imx8/qt5.
|
|
#
|
|
# ./configure -release -opengl es2 -device linux-imx8-g++ \
|
|
# -device-option CROSS_COMPILE=~/imx8/toolchain/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux- \
|
|
# -sysroot ~/imx8/sysroot \
|
|
# -opensource -confirm-license -make libs -prefix /usr/local/qt514 -extprefix ~/imx8/qt5 -v
|
|
|
|
include(../common/linux_device_pre.conf)
|
|
|
|
QMAKE_LIBS_EGL += -lEGL
|
|
QMAKE_LIBS_OPENGL_ES2 += -lGLESv2 -lEGL -lGAL
|
|
QMAKE_LIBS_OPENVG += -lOpenVG -lEGL -lGAL
|
|
|
|
IMX8_CFLAGS = -march=armv8-a -mtune=cortex-a72.cortex-a53 -DLINUX=1 -DEGL_API_FB=1
|
|
QMAKE_CFLAGS += $$IMX8_CFLAGS
|
|
QMAKE_CXXFLAGS += $$IMX8_CFLAGS
|
|
|
|
DISTRO_OPTS += aarch64
|
|
|
|
# Preferred eglfs backend
|
|
EGLFS_DEVICE_INTEGRATION = eglfs_viv
|
|
|
|
include(../common/linux_arm_device_post.conf)
|
|
|
|
load(qt_config)
|