Qt building from sources - xcb dependencies
-
ignoring the missing dependencies is difficult since configure stopps.
-- [QtBase] Could NOT find EGL (missing: HAVE_EGL) (found version "1.5") -- Configuring incomplete, errors occurred!
GSSAPI
could now be identified withlibkrb5-dev (1.21.3-3)
FindEGL.cmake
is looking forEGL/egl.h
which can be found inlibegl-dev
and in packageemscripten
. Even iflibegl-devel
is installed, it is not found.FindSlog2.cmake
is looking for/sys/slog2.h
which is not found in any package.To which Qt parts do
EGL
andSlog2
refere to? I then can decide if I can ignore or skip that modules.@MasterQ said in Qt building from sources - xcb dependencies:
To which Qt parts do EGL
QtBase, you can see that in the configure output ([QtBase]).
Not sure about slog.After installing missing dependencies you should start from scratch:
- Delete build folder
- Create new build folder
- Run cmake
-
M MasterQ has marked this topic as solved on