Adding -fpermissive
to CXX_FLAGS
in flags.cmake
files seems to be a workaround. Command:
sed -ie 's/CXX_FLAGS = /CXX_FLAGS =-fpermissive /' **/flags.make
You are viewing a single comment's thread from:
Adding -fpermissive
to CXX_FLAGS
in flags.cmake
files seems to be a workaround. Command:
sed -ie 's/CXX_FLAGS = /CXX_FLAGS =-fpermissive /' **/flags.make
@edit: I had a problem allocating the make files..
**/flags.make
was not working.. Did it this way:find -iname flags.make >> tmp cat ./tmp | while read line; do sed -ie 's/CXX_FLAGS = /CXX_FLAGS =-fpermissive /' $line;done Thank you for the "solution" :D