Como instalar o Extreme tux Racer

1

Eu extraí o Extreme tux racer na minha pasta pessoal, depois de extraí-lo na mesma pasta, eu executo comandos -

~/game/autorun.sh
~/game/./configure

depois dos comandos run -

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 make supports nested variables... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking for g++... no
checking for c++... no
checking for gpp... no
checking for aCC... no
checking for CC... no
checking for cxx... no
checking for cc++... no
checking for cl.exe... no
checking for FCC... no
checking for KCC... no
checking for RCC... no
checking for xlC_r... no
checking for xlC... no
checking whether the C++ compiler works... no
configure: error: in '/home/username/game':
configure: error: C++ compiler cannot create executables
See 'config.log' for more details

Qual é o problema e qual é a solução para isso? link Eu tenho arquivos salvos no meu HDD, então eu não estou querendo baixar do Ubuntu App Store

    
por aVIRA 05.10.2014 / 12:50

2 respostas

1

Bem, uma maneira simples é:

  1. Abra o Ubuntu Software Center

  2. Procure por Extreme Tux Racer

  3. Instale, clicando no botão instalar fornecido.

OR

1. Descompacte o tarball de código:

shell$ tar xvfz tuxracer-<version>.tar.gz e shell$ cd tuxracer-<version>

2. Configure para o seu sistema:

shell$ ./configure <configure options>

Muitas pessoas poderão executar o configure sem passar nenhuma opção. As opções de configuração mais usadas são:

--prefix=DIR: Specify where to install tuxracer. (The tuxracer binary will be placed in DIR/bin) --with-tcl-libs=DIR: Specify Tcl library location --with-tcl-inc=DIR: Specify Tcl header file location --with-tcl-lib-name=NAME: Specify Tcl library base name --with-gl-libs=DIR: Specify OpenGL library location --with-gl-inc=DIR: Specify OpenGL header file location --with-glut-libs=DIR: Specify GLUT library location --with-glut-inc=DIR: Specify GLUT header file location --enable-stencil-buffer: Use if your hardware has a stencil buffer --with-data-dir=PATH: Location of tuxracer data directory (can be also configured in options file later)

Execute ./configure --help para obter uma lista completa de opções.

3. Compile:

shell$ make

O Tux Racer deve compilar de forma limpa, com poucos (se houver) avisos. Por favor, consulte a compilação # FAQ ou nossa página de Suporte se o Tux Racer não conseguir compilar.

4. Instale o binário do tuxracer:

shell$ make install

A menos que você tenha especificado a opção --prefix quando você executou o configure, este comando irá instalar o binário do tuxracer em / usr / local / bin

5. Instale os arquivos de dados:

shell$ cd /usr/local/share
shell$ tar xvfz /path/to/tuxracer-data-<version>.tar.gz
shell$ mv tuxracer-data-<version> tuxracer

Você pode instalar os arquivos de dados em qualquer lugar que desejar, mas o tuxracer procura em / usr / local / share / tuxracer por padrão.

6. Você está feito!

    
por devGeek 05.10.2014 / 12:57
2

Extreme Tux Racer está em Oficial Repositório do Ubuntu .

Você pode instalá-lo sem compilações difíceis por:

sudo apt-get install extremetuxracer
    
por user308564 05.10.2014 / 16:02