S4
S4 copied to clipboard
[Problems with installation] c99
I had some problems with installation. When I compiled python module there were some errors with gcc: use option -std=c99 or -std=gnu99 to compile your code I add in the python install scrypt these lines:
S4module = Extension('S4', .............................................. library_dirs = ['$OBJDIR'], extra_compile_args = ['-std=c99'] )
This work for me. I think it will be useful for someone.
Thx for watching.