Open clort81 opened 3 years ago
This is caused by a misplaced library reference when linking the executable.
As a temporary mesaure, from the directory containing the source, open src/Makefile
.
Change line 22 from
$(CC) -o opuscomment $(DEFAULT_MACROS) $(CFLAGS) $(LDFLAGS) $(LIBS) $(OBJS)
to
$(CC) -o opuscomment $(DEFAULT_MACROS) $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS)
That is, make sure $(LIBS) appear last in the linking step. Now compilation should work.
Hi @clort81
Build fails. the -logg failing to link ogg libraries?
Standard debian / devuan (ceres) build environment: libogg-dev and liboggplay1-dev installed arch aarch64