Thank You for your continued support and contributions!
%program > file
%make > error
Well, usually you would use redirection (pipe sends the output to another program):Code: [Select]%program > fileSo, I would assume that runningCode: [Select]%make > errorShould redirect stdout to a file named "error".
6) Once it's done, type make zip.
Quote from: LambdaCalculus379 on September 12, 2007, 02:46:13 PM6) Once it's done, type make zip.This is wrong -- when building the simulator you issue make install instead of make zip -- "install" also creates the needed folder structure (in the archos folder) for running the sim.
You can use make zip too. I didn't realize install was an option, I always do 'make zip; unzip -o rockbox.zip -d archos' which works as well.
the steps LambdaCalculus379 posted at first didn't contain the unzip step, so they wouldn't work correctly)
i used the make > error command and it stopped on the line LD rockboxui.exebut didn't print the actual error outputthe command did output the error message to the screen in cygwin but not the file
make 2>&1 | tee -a log.txt
Page created in 0.122 seconds with 15 queries.