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
RE: [Tutorial] [Mining] Get rich the old fashioned way!
You are viewing a single comment's thread from:
[Tutorial] [Mining] Get rich the old fashioned way!
@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
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
That saved me some time. Cheers
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit