Não é possível instalar o emulador de TI Linux no Linux Mint 16 KDE

1

Eu tenho o Linux Mint 16 KDE, e eu queria instalar o Texas Instruments Emulator a partir do link .

Eu fiz o download e extraí o código-fonte e instalei todos os pacotes necessários que foram mencionados no documento de instalação.

No terminal, digitei "./configure" e, em seguida, "make", depois do que recebi a seguinte mensagem de erro:

"/usr/bin/ld: ../emu/libtilemcore.a(graycolor.o): undefined reference to symbol 'pow@@GLIBC_2.2.5'
/lib/x86_64-linux-gnu/libm.so.6: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
make[1]: *** [tilem2] Error 1
make[1]: Leaving directory '/home/clearsky/Desktop/Texas Instruments/tilem-2.0/gui'
make: *** [all] Error 2"

Aqui está a saída completa do teminal:

./configure
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking how to run the C preprocessor... gcc -E
checking for ar... ar
checking for ranlib... ranlib
checking for a BSD-compatible install... /usr/bin/install -c
checking whether make sets $(MAKE)... yes
checking for update-desktop-database... :
checking for update-mime-database... update-mime-database
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GTK... yes
checking for gtk_init... yes
checking for TICALCS... yes
checking for ticalcs_library_init... yes
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking whether byte ordering is bigendian... no
checking for inline... inline
checking for C/C++ restrict keyword... __restrict
checking for uintptr_t... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating emu/Makefile
config.status: creating db/Makefile
config.status: creating data/Makefile
config.status: creating gui/Makefile
config.status: creating gui/tilem2.rc
config.status: creating installer/win32/Makefile
config.status: creating installer/win32/installer.nsi
config.status: creating config.h
config.status: config.h is unchanged

make
cd emu && make
make[1]: Entering directory '/home/clearsky/Desktop/Texas Instruments/tilem-2.0/emu'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/clearsky/Desktop/Texas Instruments/tilem-2.0/emu'
cd db && make
make[1]: Entering directory '/home/clearsky/Desktop/Texas Instruments/tilem-2.0/db'
make[1]: Nothing to be done for 'all'.
make[1]: Leaving directory '/home/clearsky/Desktop/Texas Instruments/tilem-2.0/db'
cd gui && make
make[1]: Entering directory '/home/clearsky/Desktop/Texas Instruments/tilem-2.0/gui'
gcc -g -O2 -W -Wall -Wwrite-strings    -o tilem2 tilem2.o address.o animatedgif.o animation.o breakpoints.o config.o charmap.o debugger.o disasmview.o emulator.o emucore.o emuwin.o event.o filedlg.o files.o fixedtreeview.o gifencod.o icons.o keybindings.o keypaddlg.o link.o macro.o memmodel.o memview.o memory.o pbar.o preferences.o sendfile.o screenshot.o skinops.o ti81prg.o menu.o rcvmenu.o tool.o  -L../db -ltilemdb -L../emu -ltilemcore -pthread -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgio-2.0 -lpangoft2-1.0 -lpangocairo-1.0 -lgdk_pixbuf-2.0 -lcairo -lpango-1.0 -lfreetype -lfontconfig -lgobject-2.0 -lgthread-2.0 -lglib-2.0   -lticalcs2 -lticables2 -ltifiles2 -lticonv -lglib-2.0   
/usr/bin/ld: ../emu/libtilemcore.a(graycolor.o): undefined reference to symbol 'pow@@GLIBC_2.2.5'
/lib/x86_64-linux-gnu/libm.so.6: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
make[1]: *** [tilem2] Error 1
make[1]: Leaving directory '/home/clearsky/Desktop/Texas Instruments/tilem-2.0/gui'
make: *** [all] Error 2

Alguém pode me ajudar a encontrar uma solução para esse problema?

    
por ClearSky 16.01.2014 / 01:00

2 respostas

1

Se você quer apenas que este emulador funcione, em vez de descobrir por que você não pode compilá-lo, considere usar Omnimaga PPA ou PPA glennric ou algum outro PPA que tenha o pacote tilem. Certifique-se de escolher a versão correta do Ubuntu na qual sua versão do Mint é baseada.

    
por 16.01.2014 / 02:50
2

Eu entrei no Makefile no subdiretório gui e adicionei -lm na linha GTK_LIBS e isso pareceu corrigir o erro.

    
por 30.01.2014 / 04:01