save make output to a text file

Crusty

Lifer
Sep 30, 2001
12,684
2
81
make options >> output.txt

Or something like that depending on what OS you are using.
 

trexpesto

Golden Member
Jun 3, 2004
1,237
0
0
Is it like BASH ? Try something like this if you want to still see the output on screen. May have to fiddle with it.

make [options] 2>&1 | tee log.txt

this might work too:

make [options] &> log.txt