[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [MiNT] building fvdi
> text.s.gnu.o(.text+0x806): undefined reference to `bt'
Standa added something a year ago:
"outline effect function C wrapper added (using bt() as a debug)."
Try changing
_bitmap_outline:
...
ifne 1
to
_bitmap_outline:
...
ifne 0
to disable the part calling _bt,
> text_sq.s.gnu.o(.text+0x1d2): undefined reference to `external_vst_effects'
It seems neither Standa nor I have built fVDI without FreeType for a while...
If you check loader.c, you'll find the definition of
external_vst_effects (and a whole number of other external_...
functions), inside an #ifdef FT2...
I _think_ you should be OK if you just remove that #ifdef, since the
function pointers would then be NULL and text_sq.s will then not
attempt to call the function.
/Johan