/usr/bin/x86_64-linux-gnu-qmake is in qt5-qmake 5.9.5+dfsg-0ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | #!/bin/sh
QMAKE_MODE=
if [ "x$1" = x-query ]; then
exec /usr/lib/qt5/bin/qmake "$@" -qtconf /usr/lib/x86_64-linux-gnu/qt5/qt.conf
elif [ "x$1" = x-makefile ] || [ "x$1" = x-project ]; then
QMAKE_MODE="$1"
shift
fi
exec /usr/lib/qt5/bin/qmake \
$QMAKE_MODE \
-qtconf /usr/lib/x86_64-linux-gnu/qt5/qt.conf \
-early \
QMAKE_CC=${CC:-x86_64-linux-gnu-gcc} \
QMAKE_CXX=${CXX:-x86_64-linux-gnu-g++} \
QMAKE_LINK=${CXX:-x86_64-linux-gnu-g++} \
QMAKE_QMAKE=/usr/bin/x86_64-linux-gnu-qmake \
PKG_CONFIG=x86_64-linux-gnu-pkg-config \
-before \
"$@"
|