You are viewing a single comment's thread from:
RE: [Tutorial] [Mining] Get rich the old fashioned way!
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.makewas not working.. Did it this way:find -iname flags.make >> tmpcat ./tmp | while read line; do sed -ie 's/CXX_FLAGS = /CXX_FLAGS =-fpermissive /' $line;done
Thank you for the "solution" :D
That saved me some time. Cheers