Closed KristianKarl closed 8 months ago
It turns out for Linux, the order of object files and the static libraries matter.
I changed the following line in Makefile:
; ${COMPILE} padkit/lib/libpadkit.a ${OBJECTS} -o bin/gwplus
to
; ${COMPILE} ${OBJECTS} padkit/lib/libpadkit.a -o bin/gwplus
It now compiles on Linux.
Hi!
I have some problems when building the project. It looks to my as if the linker does not find the functions in
padkit/lib/libpadkit.a
. When I check, the static lib is built and exists:This is what I did: