You are not logged in.
Hi
Can't build qt app due to error: "could not exec '/usr/lib/qt4/bin/qmake': No such file or directory"
I've checked this directory - file exists,
[crow@nest bin]$ file qmake
qmake: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.32, BuildID[sha1]=42bd35b01fb040951a5c2c66ed28fd09b1c6a463, stripped
system is x86-64, why make can't use it? Where this problem arises from?
Thanks
Last edited by chord (2013-10-01 08:03:00)
Offline
You are sure qmake is in /usr/lib/qt/bin ? On my system it is located at /usr/lib/qt4/bin
Offline
Yeah, it is just a typo, /usr/lib/qt4/bin.
Offline
A bit ugly... but...
# mkdir -p /usr/lib/qt/bin
# ln -s /usr/bin/qmake-qt4 /usr/lib/qt/bin/qmake
Offline
What does
# ldd /usr/lib/qt4/bin/qmake
says?
Online
Uhm, fix the build script instead of using ugly workarounds.
Evil #archlinux@libera.chat channel op and general support dude.
. files on github, Screenshots, Random pics and the rest
Offline
How about
qmake -qt=4
as a workaround?
Offline