如何安装 Extreme tux Racer

如何安装 Extreme tux Racer

我已经将 Extreme tux racer 解压到我的主文件夹中,将其解压到同一文件夹中后,我运行命令-

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

然后运行以下命令-

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

这是什么问题?有何解决方案? http://sourceforge.net/projects/extremetuxracer/ 我的硬盘上保存了文件,所以我不想从 Ubuntu 应用商店下载

答案1

极限燕尾服赛车手位于Ubuntu 官方仓库

您可以通过以下方式轻松安装它:

sudo apt-get install extremetuxracer

答案2

嗯,一个简单的方法是:

  1. 打开Ubuntu 软件中心

  2. 搜索,极限燕尾服赛车手

  3. 安装,点击安装按钮。

或者

1. 解压代码包:

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

2. 配置您的系统:

shell$ ./configure <configure options>

许多人可以在不传递任何选项的情况下运行 configure。最常用的 configure 选项是:

--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)

运行 ./configure --help 获取完整的选项列表。

3.编译:

shell$ make

Tux Racer 应该可以顺利编译,并且几乎没有警告(如果有的话)。请参阅常见问题解答#编译或者如果 Tux Racer 编译失败请访问我们的支持页面。

4. 安装 tuxracer 二进制文件:

shell$ make install

除非你在运行 configure 时指定了 --prefix 选项,否则此命令将在 /usr/local/bin 中安装 tuxracer 二进制文件

5.安装数据文件:

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

您可以将数据文件安装在任何您希望的位置,但 tuxracer 默认查找 /usr/local/share/tuxracer。

6. 完成啦!

相关内容