Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-27612

gui.pro has a logic error

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • P1: Critical
    • 4.8.4
    • 4.8.4
    • Build System
    • 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* {
      

      Attachments

        No reviews matched the request. Check your Options in the drop-down menu of this sections header.

        Activity

          People

            buddenha Oswald Buddenhagen
            bryanh99 Bryan H
            Votes:
            0 Vote for this issue
            Watchers:
            6 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Gerrit Reviews

                There are no open Gerrit changes