SDL_ttf ?


Also etwas eigeninitiative wäre manchmal schon nicht schlecht...

Auf die Idee Freetype zu installieren bist du nicht gekommen?

http://www.aep-emu.de/temp/freetype.zip
 
keine ahnung wo ich ne geeignete her bekommen soll ... müssn die nit auf das jeweilige system geportet sein ?
 
Code:
<i>
</i>C:/devkitGP2X/lib\libSDL_ttf.a(SDL_ttf.o): In function `TTF_OpenFontIndex':
C:\gp2x\SDL_ttf-2.0.7/SDL_ttf.c:372: undefined reference to `SDL_RWFromFile'
 
man lädt sich die lib, ruft configure mit --host=arm-linux auf und guckt obs compiliert
wenn ja -> fertig
wenn nein -> problem und im forum suchen ob es schonmal einer geportet hat ;)

Zu der einen Fehlermeldung: Keine Ahnung wo die jetzt herkommt... ist das die einzige Funktion die er nicht findet?
Falls ja kann es sein das ich die ttf-lib mit einer anderen SDL Version gebaut habe als du installiert hast.
 
jap ist die einzige fehler meldung ... zur SDL Version weiß ich nit welche es ist ...

gibts denn keine vor Kompillierte Version (also von einer kompletten SDL lib) die man einfach einfügen kann ??
 
jetzt machen wir das mal andersrum: schick mir mal den kram den du grad kompilieren willst und ich guck obs bei mir funktioniert.
 
sorry geht nit ... is closed source ... denk nicht das es gut ankommt wenn ich den vor dem release weiter gebe ^^
 
1) afaik theoddbot's library set comes with libfreetype.a
2) order of -l is important, but as you only give the errors, not the invocation of the compiler/linker, can't check it. please be complete! it's hard enough as it is... probably you just need to add -lSDL somewhere more downstream...
3) first try to get things working from the command line, then make a simple script to automate the build, then learn about make and makefiles, not the other way around...
You can memorize multiplication tables, but it's hard to do multiplication if you don't know about addition, or even the meaning of those funny symbols like 0, 4, 7 etc.
 
so ... der hat nun ohne fehler kompilliert ... wenn man akkus endlich mal geladen sind teste ich mal ^^

danke für die hilfe
 
Good to see.. hopefully there's not too many trouble executing it. Also, please don't forget to write a short 'conclusion' to the thread where you summarize what you did, why it went wrong, and what it was you had to do to make it work. So hopefully someone else doesn't have to ask for the same help later.

Pieter.
 
yeah its running fine ^^


nachdem die SDL_ttf und freetype lib eingefügt ist , hab ich es geschaft mit folgenden flags das ganze kompiliert bekommen :
Code:
<i>
</i>-lSDL_ttf -lfreetype -lz -lm -lSDL -lpthread

halt eben auch in der reihenfolge ...

in der makefile sieht das ganze so aus :
Code:
<i>
</i>LIBS = `$(SDL_BASE)sdl-config --libs` -lSDL_ttf -lfreetype -lz -lm -lSDL -lpthread

das wars im grunde auch ^^
 
Back
Top