Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
I've seen this come up in the Compile Output for the project I'm working on, there are various solutions online, but I'm not sure how to implement these in the project.
The solution is to add:
-Wno-psabi
How or where do I do this?
Hi I would guess on QMAKE_CXXFLAGS += -Wno-psabi or QMAKE_CFLAGS
in your .pro file.
Thank you, I just added this to the .pro file:
QMAKE_CFLAGS += -Wno-psabi
Then cleaned and rebuilt, sadly absolutely no difference. Then I change it to:
QMAKE_CXXFLAGS += -Wno-psabi
And that did the trick, thanks again!