> HELP ! i'm a relative newbie trying to get DOSEMU up and running.
> i have the slackware 2.0 distribution (GCC 2.5.8 and libc 4.5.26),
> and have upgraded my kernel to 1.1.45.
> when i "make most" from the DOSEMU0.53 directory, the compile crashes
> with error messages in the "init" section, with warnings from "parser.y".
> i've tried to re-direct the screen output with a:
> make most | junk.txt
> but none of the error messages end up in "junk.txt" (i assume they
> are directed to STDERR not STDOUT).
> can anyone suggest:
> 1. what is going wrong with the make ?
> 2. how to capture the error messages on file, so i can give more
> information (other than pencil and several pages of paper) ?
> thanks in advance,
> Mat
Pipes are used to send the output to another command !!
such as :
make most | more
To capture the STOUT and STDERR you can use:
make most >& outputfile (under tcsh)
or
make most 1>outputfile 2>&1 (under bash or sh)
only STDOUT is easier :
make most > outputfile (for both)
(but this won't give much info in this case)
Dosemu compiles without any problems on my systems. Did you install bison
or yacc and flex ?
If not, you have to this first before you'll be able to compile the yacc part.
It is in the Slackware distribution on disks d2 and d3. (use pkgtool to install it)
regards,
--
Kees Lemmens, | Phone : +31-15-787229
Dep. Applied Analysis, | Fax : +31-15-787209
Fac. Techn. Maths & Informatics, | PO Box : 5031; NL-2600 GA Delft
The Netherlands. |
--
Kees Lemmens, | Phone : +31-15-787229
Dep. Applied Analysis, | Fax : +31-15-787209
Fac. Techn. Maths & Informatics, | PO Box : 5031; NL-2600 GA Delft
The Netherlands. |