Linux compilation fails with current head commit with gcc 4.9.2
undefined reference to symbol 'roundf@@GLIBC_2.2.5'
/lib/x86_64-linux-gnu/libm.so.6: error adding symbols: DSO missing from command line
It can be fixed by changing
https://github.com/ccxvii/asstools/blob/master/Makefile#L15
to
AI_LIBS += -L../assimp/build/code -lassimp -lz -lstdc++ -lm
(adding the -lm )
Thanks for the good work 👍
Linux compilation fails with current head commit with gcc 4.9.2
undefined reference to symbol 'roundf@@GLIBC_2.2.5'
/lib/x86_64-linux-gnu/libm.so.6: error adding symbols: DSO missing from command line
It can be fixed by changing
https://github.com/ccxvii/asstools/blob/master/Makefile#L15
to
AI_LIBS += -L../assimp/build/code -lassimp -lz -lstdc++ -lm
(adding the -lm )
Thanks for the good work 👍