Re: Question about perl while bootstrapping gcc

2010-04-17 Thread Alexey Salmin
On 4/17/10, Alan Lehotsky wrote: > Take a look at the at(1) or batch(1) commands if you really want to execute > a command and logout while it's still running. > Or screen(1)

Re: Question about perl while bootstrapping gcc

2010-04-16 Thread Jim Wilson
On 04/16/2010 11:10 AM, Dominique Dhumieres wrote: I use to build gcc with a command line such as make -j2>& somelogfile& I recently found that if I logout, the build fails with perl: no user 501 Try "nohup make ...". See the man page or info manual for nohup. Jim

Re: Question about perl while bootstrapping gcc

2010-04-16 Thread Alan Lehotsky
This is normal unix behavior (unless you have some kind of shell that I'm unfamiliar with.) When you use & to create a subjob, it is still attached to your terminal session. Take a look at the at(1) or batch(1) commands if you really want to execute a command and logout while it's still runnin