You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cc -Wall -O2 -DHAVE_STDIO -DENABLE_LOADERS -MMD -c fmbankdump.c -o fmbankdump.o
[...]
fmbankdump.c:4:10: fatal error: fm_voice.h: No such file or directory
4 | #include "fm_voice.h"
| ^~~~~~~~~~~~
The header got moved to fm_voice_bank.h, and the fm_voice_bank_load function this code wants to use was dropped.
/nix/store/2p1sq1nr09xr3xb1a9lrjgdanvk1aakb-binutils-2.42/bin/ld: fmbankdump.o: in function `main':
fmbankdump.c:(.text.startup+0x67): undefined reference to `fm_voice_bank_load'
fb01dump complains about missing function:
/nix/store/2p1sq1nr09xr3xb1a9lrjgdanvk1aakb-binutils-2.42/bin/ld: fb01dump.o: in function `main':
fb01dump.c:(.text.startup+0x120): undefined reference to `fb01_bulk_voice_bank_dump'
This include is broken:
libfmvoice/fmbankdump.c
Line 4 in e3b08e2
The header got moved to
fm_voice_bank.h
, and thefm_voice_bank_load
function this code wants to use was dropped.fb01dump
complains about missing function:fb01dump
usesfb01_bulk_voice_bank_dump
:libfmvoice/fb01dump.c
Line 42 in e3b08e2
The header says this should exist, unless we're building for emscripten:
libfmvoice/syx_fb01.h
Lines 148 to 151 in e3b08e2
But it's only implented when we don't
HAVE_STDIO
:libfmvoice/syx_fb01.c
Line 195 in e3b08e2
[…]
libfmvoice/syx_fb01.c
Lines 249 to 269 in e3b08e2
And the Makefile says that we do
HAVE_STDIO
:libfmvoice/Makefile
Line 3 in e3b08e2
The text was updated successfully, but these errors were encountered: