Details
-
Bug
-
Resolution: Done
-
P1: Critical
-
4.8.4
-
None
-
any qcc build (blackberry for example)
-
2ddf396d66eccccdc7dc2befbf9b9eff19418303,
Description
in gui.pro released since oct-12/2012 there was added functionality for neon on the QCC platform. The method in which this was added was to change the line
neon:*-g++* to neon:*-g++*|*-qcc*
this is creating a logic error where ANY qcc configuration will ALWAYS compile with neon even if you pass -no-neon (left to right logic can read the new line as (neon and *-g++) or *-qcc*. It seems to be solved with either
*-g++*|*-qcc*:neon
or (the method I am using and tested)
neon { *-g++*|*-qcc* {