./configure error, no ubuntu de 32 bits

0

Eu tenho o Ubuntu 32 bit no processador i7. Eu tentei compilar e instalar este pacote chamado xgrafix, eu instalei dependências, mas agora tem erro como segue:

samir@samir-HP:~/Downloads/xgrafix$ ./configure --with-X11_LIBDIR /usr/lib/i386-linux-gnu/
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type: /usr/lib/i386-linux-gnu/
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether to enable maintainer-specific portions of Makefiles... no
checking build system type... Invalid configuration '/usr/lib/i386-linux-gnu/': machine '/usr/lib/i386' not recognized
configure: error: /bin/bash ./config/config.sub /usr/lib/i386-linux-gnu/ failed

Eu tentei várias coisas, mas não consegui resolver isso.

    
por Samir Chauhan 02.01.2013 / 06:59

1 resposta

0

Basta fazer um palpite aqui. Supondo que esse script configure específico seja escrito usando, talvez seja necessário alterar

--with-X11_LIBDIR /usr/lib/i386-linux-gnu/  to

--with-X11_LIBDIR=/usr/lib/i386-linux-gnu/  (added the assignment operator)
    
por 02.01.2013 / 08:53