-
-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Labels
self-buildingUser created packageUser created package
Description
Content
When using vcpkg to install qt5-base, the compilation process fails when reaching the qt module. The error message is as follows:
ERROR: Feature 'xcb' was enabled, but the pre-condition 'features.thread && libs.xcb && tests.xcb_syslibs && features.xkbcommon-x11' failed.
compile.sh
export VCPKG_DEFAULT_HOST_TRIPLET="arm64-linux"
export VCPKG_DEFAULT_TRIPLET="arm64-linux"
export VCPKG_FORCE_SYSTEM_BINARIES="arm"
export VCPKG_OVERLAY_PORTS="/data/data/com.termux/files/home/qt/overlay-ports"
export VCPKG_ROOT="/data/data/com.termux/files/home/vcpkg"
export VCPKG_TARGET_TRIPLET="arm64-linux"
export PATH=$VCPKG_ROOT:$PATH
vcpkg install --allow-unsupported
vcpkg.json
{
"dependencies": [
"qt5-base"
],
"overrides":[
{
"name":"qt5-base",
"version":"5.15.16"
}]
}
This issue prevents further progress in the build process.
How can I resolve this issue?
config-arm64-linux-dbg-err.log.txt
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
self-buildingUser created packageUser created package