5afde92bd7
adding shared install paths via QMAKE_LFLAGS in the spec has the tiny side effect that they are searched _first_, which is generally a really bad idea - they should be _last_. for that purpose, introduce QMAKE_RPATHLINKDIR_POST, and migrate all specs to use it. QMAKE_RPATHDIR_POST is added for consistency, but not actually used. Task-number: QTBUG-59457 Change-Id: Iac6cda5e9111ef8cca454a69861fe8408bb40589 Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
45 lines
1.5 KiB
Plaintext
45 lines
1.5 KiB
Plaintext
# qmake configuration for the Raspberry Pi 3 using the Broadcom graphics stack
|
|
|
|
include(../common/linux_device_pre.conf)
|
|
|
|
# For modern Yocto-based sysroots that have the proper include and lib
|
|
# setup in egl.pc we will pull the necessary arguments from
|
|
# there. However, to support Raspbian and older stuff that has /opt/vc
|
|
# and possibly no pkg-config, have some static values as well:
|
|
|
|
# I consider it a bug that this is required, but our EGL config.test _requires_ it
|
|
QMAKE_RPATHLINKDIR_POST += $$[QT_SYSROOT]/opt/vc/lib
|
|
|
|
VC_LIBRARY_PATH = /opt/vc/lib
|
|
VC_INCLUDE_PATH = =/opt/vc/include
|
|
|
|
VC_LINK_LINE = -L=$${VC_LIBRARY_PATH}
|
|
|
|
QMAKE_LIBDIR_OPENGL_ES2 = =$${VC_LIBRARY_PATH}
|
|
QMAKE_LIBDIR_EGL = $$QMAKE_LIBDIR_OPENGL_ES2
|
|
QMAKE_LIBDIR_OPENVG = $$QMAKE_LIBDIR_OPENGL_ES2
|
|
|
|
QMAKE_INCDIR_EGL = \
|
|
$${VC_INCLUDE_PATH} \
|
|
$${VC_INCLUDE_PATH}/interface/vcos/pthreads \
|
|
$${VC_INCLUDE_PATH}/interface/vmcs_host/linux
|
|
|
|
QMAKE_INCDIR_OPENGL_ES2 = $${QMAKE_INCDIR_EGL}
|
|
|
|
QMAKE_LIBS_OPENGL_ES2 = $${VC_LINK_LINE} -lGLESv2
|
|
|
|
# The official opt vc EGL references GLESv2 symbols: need to link it
|
|
QMAKE_LIBS_EGL = $${VC_LINK_LINE} -lEGL -lGLESv2
|
|
|
|
QMAKE_CFLAGS = -march=armv8-a -mtune=cortex-a53 -mfpu=crypto-neon-fp-armv8
|
|
QMAKE_CXXFLAGS = $$QMAKE_CFLAGS
|
|
|
|
DISTRO_OPTS += hard-float
|
|
DISTRO_OPTS += deb-multi-arch
|
|
|
|
EGLFS_DEVICE_INTEGRATION= eglfs_brcm
|
|
|
|
include(../common/linux_arm_device_post.conf)
|
|
|
|
load(qt_config)
|