Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (61 - 63 of 301)

Ticket Resolution Summary Owner Reporter
#220 fixed QMake doesn't support shadow builds rudi
Description

Our QMake fails to create response files in the right location when called from outside the source tree. This is feature is needed for so-called shadow builds, which appear to be the default in recent versions of QtCreator?. Find a fix attached...

#221 fixed Add QtDeclarative rudi
Description

In order to build QtCreator? we need the QtDeclarative library. I just learned that this library uses the same type of code, that caused the SIGFPE in Creator's QMLJS.DLL. Find my fix attached.

#222 fixed Instantiating QApplication modifies floating point control word. rudi
Description

The following code:

int main(int argc, char *arg[])
{
  qDebug("FCW: %04x", _control87(0, 0) );

  QApplication  a(argc, argv);

  qDebug("FCW: %04x", _control87(0, 0) );

  ...
}

produces:

FCW: 037f
FCW: 0367

I.O.W., it enables floating point overflow and underflow exceptions. I don't think that this should happen.

Note: See TracQuery for help on using queries.