Asmod4n / mruby-simplemsgpack

mruby wrapper for msgpack (>= 1.0) / msgpack.org[mruby]
Apache License 2.0
5 stars 3 forks source link

Compilation fails #10

Closed lemmuh closed 2 hours ago

lemmuh commented 3 hours ago

Hi Hendrik,

on my system with:

cmake version 3.30.5
gcc version 13.1.0 

the compilation fails with the following error:

i686-w64-mingw32-gcc: error: unrecognized command-line option ‘-rdynamic’

It seems to me that the compiler does not support the -rdynamic option anymore.

Do you have any experience what is the right compiler options for my gcc version and where do I have to set a new option (inside CMakeList.txt?) ?

Thanks !

Asmod4n commented 2 hours ago

Try installing msgpack with development headers. It might work then.

otherwise you have to reach out to the msgpack authors how to build it for your system.

lemmuh commented 2 hours ago

Thanks !