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
src/mod-host.c: In function ‘help_cb’:
src/mod-host.c:571:28: error: ‘help_msg’ undeclared (first use in this function)
571 | size_t i, len = strlen(help_msg);
| ^~~~~~~~
src/mod-host.c:571:28: note: each undeclared identifier is reported only once for each function it appears in
src/mod-host.c: In function ‘main’:
src/mod-host.c:779:26: error: ‘version’ undeclared (first use in this function)
779 | argv[0], version);
| ^~~~~~~
Whats going wrong?
ToM
The text was updated successfully, but these errors were encountered:
I had the same error during compilation. It seems the makefile runs a python script to fill the src/info.h header. If python is not installed then this fails silently leaving a 0 bytes info.h file which does not contain the required help_msg variable.
Here's the list of packages I needed to build in a nix-shell on nixos:
Hi,
during "make" I get two errors:
src/mod-host.c: In function ‘help_cb’:
src/mod-host.c:571:28: error: ‘help_msg’ undeclared (first use in this function)
571 | size_t i, len = strlen(help_msg);
| ^~~~~~~~
src/mod-host.c:571:28: note: each undeclared identifier is reported only once for each function it appears in
src/mod-host.c: In function ‘main’:
src/mod-host.c:779:26: error: ‘version’ undeclared (first use in this function)
779 | argv[0], version);
| ^~~~~~~
Whats going wrong?
ToM
The text was updated successfully, but these errors were encountered: