You should be able to use this from Windows Command Prompt, Visual Studio Command Prompt, or PowerShell:
$ compile_command > compile.log 2>&1 Or if you’re in PowerShell (or Bash, for that matter), you can send it to a file and view it at the same time: $ compile_command 2>&1 | tee compile.log That’s how I usually do it. Let me know if that works. -- Sean Fisk On Thu, Jan 9, 2014 at 11:05 AM, Tony Barbieri <[email protected]> wrote: > Is the log saved out somewhere? That is all that's printed to the output > window. Can I make it more verbose somehow? > > Thanks much! > > -tony > > > On Thu, Jan 9, 2014 at 11:04 AM, Sean Fisk <[email protected]> wrote: > >> Hi Tony, >> >> Yikes, that's not a very helpful error message, is it? I've built >> Shiboken a number of times, but never on Windows. Can you post the full log >> so we have a little more context? As an attachment would probably be >> preferable. >> >> Thanks, >> >> >> -- >> Sean Fisk >> >> >> On Thu, Jan 9, 2014 at 10:55 AM, Tony Barbieri <[email protected]>wrote: >> >>> Hello! >>> >>> I am trying to build PySide 1.2.1 against Qt 4.7.1 on Windows using VS >>> 2010. >>> >>> I seem to continually hit an error when running generator on shiboken. >>> Not much info is given but the following is output: >>> >>> [ 98%] Running generator for 'shiboken'... >>> NMAKE : fatal error U1077: >>> 'W:\PySide\1.2.1\pyside_build\py2.7-qt4.7.1-64bit-release\shiboken\generator\shiboken.EXE' >>> : return code '0xc0000139' >>> Stop. >>> NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual >>> Studio 10.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' >>> Stop. >>> NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual >>> Studio 10.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' >>> Stop. >>> error: Error compiling shiboken >>> >>> Any help would much appreciated! >>> >>> -- >>> -tony >>> >>> _______________________________________________ >>> PySide mailing list >>> [email protected] >>> http://lists.qt-project.org/mailman/listinfo/pyside >>> >>> >> > > > -- > -tony >
_______________________________________________ PySide mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/pyside
