Hi!
I'm trying to use minilua as part of a shared (C++) library but I'm getting a bunch of undefined references when I compile:
error: undefined reference to `.L32'
error: undefined reference to `.L75'
error: undefined reference to `.L63'
error: undefined reference to `.L26'
error: undefined reference to `.L8'
error: undefined reference to `.L50'
error: undefined reference to `.L58'
error: undefined reference to `.L11'
etc....
Here's what I'm doing:
- Compiling with GCC
- This is a C++ library, but the minilua implementation is in a .c file
I'm not sure what could be causing it...
Hi!
I'm trying to use minilua as part of a shared (C++) library but I'm getting a bunch of undefined references when I compile:
Here's what I'm doing:
I'm not sure what could be causing it...