O Ubuntu Qmake não é um executável

1

depois de instalar a nova versão do QtCreator no Ubuntu e

tux-world@alachiq:~ > sudo apt-get install qt5-qmake build-essential g++ gcc
   Reading package lists... Done
   Building dependency tree       
   Reading state information... Done
   build-essential is already the newest version.
   g++ is already the newest version.
   g++ set to manually installed.
   gcc is already the newest version.
   qt5-qmake is already the newest version.
   0 upgraded, 0 newly installed, 0 to remove and 247 not upgraded.

na opção de Build & Run e escolha qmake em /usr/bin/qmake eu recebo este erro:

The qmake executable /usr/lib/i386-linux-gnu/qt4/bin/qmake could not be added: qmake '/usr/lib/i386-linux-gnu/qt4/bin/qmake' is not an executable.

no sistema Home eu não tenho nenhum problema depois de instalar esses pacotes e configurar o Qmake na opção

Outras informações:

tux-world@alachiq:~ > apt-cache search qt5-qmake
qt5-qmake - Qt 5 qmake Makefile generator tool

tux-world@alachiq:~ > ldd /opt/qtForArm/bin/qmake 
     ldd: /opt/qtForArm/bin/qmake: No such file or directory

tux-world@alachiq:~ > sudo chmod +x /usr/lib/i386-linux-gnu/qt4/bin/qmake
[sudo] password for tux-world: 
chmod: cannot access ‘/usr/lib/i386-linux-gnu/qt4/bin/qmake’: No such file or directory

UPDATE :

tux-world@alachiq:~ > apt-cache policy qt5-qmake
qt5-qmake:
  Installed: 5.2.1+dfsg-1ubuntu14.2
  Candidate: 5.2.1+dfsg-1ubuntu14.2
  Version table:
 *** 5.2.1+dfsg-1ubuntu14.2 0
        500 http://archive.ubuntu.com/ubuntu/ trusty-updates/main i386 Packages
        100 /var/lib/dpkg/status
     5.2.1+dfsg-1ubuntu14 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/main i386 Packages



tux-world@alachiq:~ > ls -a -l /usr/bin/qmake 
lrwxrwxrwx 1 root root 9 فوریه 19 15:53 /usr/bin/qmake -> qtchooser



tux-world@alachiq:~ > qtchooser 
Usage:
  qtchooser { -l | -list-versions | -print-env }
  qtchooser -run-tool=<tool name> [-qt=<Qt version>] [program arguments]
  <executable name> [-qt=<Qt version>] [program arguments]

Environment variables accepted:
 QTCHOOSER_RUNTOOL  name of the tool to be run (same as the -run-tool argument)
 QT_SELECT          version of Qt to be run (same as the -qt argument)

tux-world@alachiq:~ > 
    
por DolDurma 27.07.2014 / 08:00

1 resposta

2

Você instalou o qt5-qmake, mas o seu Qt Creator está procurando pela versão Qt4 do qmake. Você pode instalar qt4-qmake ou adicionar seu executável Qt5 qmake ao Qt Creator em Ferramentas - > Opções - > Construir & Executar - > Versões do Qt.

/ edit após uma atualização na pergunta:

O Qt Chooser é uma ferramenta para selecionar automaticamente os binários Qt corretos, dependendo de sua configuração e / ou variáveis de ambiente.

Se você quiser usar o qmake do Qt 5, tudo o que você precisa é instalar o pacote qt5-default . Isso apontará os vários binários (como /usr/bin/qmake ) fornecidos pelo Qt Chooser para sua instalação do Qt 5. Se você quiser usar o qmake do Qt 4, você precisará instalar o qt4-default , que faz a mesma coisa, mas para o Qt 4.

    
por 27.07.2014 / 11:29