Custom Query (301 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (55 - 57 of 301)

Ticket Resolution Summary Owner Reporter
#212 fixed UIC produces double carriage returns when using a pipe rudi
Description

UIC has a problem when it's output is redirected. Obviously there is a double text mode conversion in effect. So that:

UIC somefile.ui -o outfile.h

is not the same as:

UIC somefile.ui > outfile.h
#213 fixed UIC hogs CPU rudi
Description

When an UI file with CR+LF line endings is piped to UIC, UIC will hang eating 100% CPU. It looks like UIC generally doesn't like DOS-style line endings when used in pipe mode (see #212). However, while in Windows it simply does nothing in this scenario, in OS/2 the behavior is nasty.

#214 fixed make process hangs when compiling .rc file rudi
Description

When an RC_FILE is specified in the project, QMAKE creates a call to compile resources. It looks like this:

set INCLUDE=%INCLUDE%;$(INCLUDEPATH) & $(RC) -n -r $(RC_FILE) $(RES_FILE)

In some cases %INCLUDE% gets too long for CMD.EXE (or RC.EXE ?) so that the build process will hang. Why do we need %INCLUDE% here at all ? In Windows this is not done either. When using the MinGW tool chain, only "." is specified to the "windres" tool and when using MSVC, they pass %DEFINES% and leave %INCLUDE% untouched.

Note: See TracQuery for help on using queries.