alias gcc='gcc -fpermissive' or modifying ./configure script
- by robo
I am compiling quite big project from source. The compilation always ends with:
error: invalid conversion from ‘const char*’ to ‘char*’ [-fpermissive]
I have already compiled this project one year ago. So I know a solution to this. Actualy I found more solutions:
Adding a typecast to appropriate line of cpp code
(It went to endless number of…