@NiLuJe, I understand that
but a
shared compile expectedly gives
Code:
[root@kindle tcc]# tcc -Iinclude -Iinclude/freetype2/freetype -Iinclude/freetype2 -Iinclude/fbink -L/mnt/us/linkfonts/lib/autohint -lfreetype -L/mnt/us/usbnet/bin -lfbink -o fbinkpantspatrol fbinkpantspatrol.c
tcc: undefined symbol 'fbink_init'
tcc: undefined symbol 'fbink_print_raw_data'
and a
static compile seems to now need a static freetype lib
Code:
[root@kindle tcc]# tcc -Iinclude -Iinclude/freetype2/freetype -Iinclude/freetype2 -Iinclude/fbink -L/mnt/us/linkfonts/lib/autohint -lfreetype -L/mnt/us/usbnet/bin -lfbink -static -o fbinkpantspatrol fbinkpantspatrol.c
tcc: cannot find -lfreetype
I don't want to hijack the thread with C compilation noobe stuff. Lemme learn more. Go in peace for now.