Potrzebuję pomocy z zainstalowaniem bibliotek pod ubuntu.
Nie potrafię zainstalować ani SDL ani ALLEGRO, zainstalowałem je przez synaptica, niby są, ale jak próbuję je includować to nie mogę ich używać.
[CODE]/tmp/cc3g4GMf.o: In function `main':
main.cpp:(.text+0x5b): undefined reference to `_install_allegro_version_check'
main.cpp:(.text+0x60): undefined reference to `install_keyboard'
main.cpp:(.text+0x6c): undefined reference to `set_color_depth'
main.cpp:(.text+0x98): undefined reference to `set_gfx_mode'
main.cpp:(.text+0x9f): undefined reference to `default_palette'
main.cpp:(.text+0xa4): undefined reference to `set_palette'
main.cpp:(.text+0xa9): undefined reference to `screen'
main.cpp:(.text+0xcf): undefined reference to `makecol'
main.cpp:(.text+0xd5): undefined reference to `font'
main.cpp:(.text+0xdb): undefined reference to `screen'
main.cpp:(.text+0x10b): undefined reference to `textout_ex'
main.cpp:(.text+0x110): undefined reference to `readkey'
main.cpp:(.text+0x115): undefined reference to `allegro_exit'
collect2: ld returned 1 exit status
[/code]
Oto co dostaję po próbuje skompilowania.
#include <allegro.h>
using namespace std;
int main()
{
allegro_init();
install_keyboard();
set_color_depth( 8 );
set_gfx_mode( GFX_AUTODETECT, 800, 600, 0, 0 );
set_palette( default_palette );
clear_to_color( screen, 48 );
textout_ex( screen, font, "Witaj w Allegro !", 20, 20, makecol( 255, 0, 255 ), - 1 );
readkey();
allegro_exit();
return 0;
}
END_OF_MAIN();
A oto kod, który jest z tutoriala i który mi na windowsie działał. Gdzie popełniłem błąd?
/edit:
W przyszłości proszę o pisanie postów
na temat.
Pietrzuch.