|
From: Earnie B. <ea...@us...> - 2006-03-10 12:30:44
|
Quoting Keith MARSHALL <kei...@to...>: > Gerardo Gonzales wrote: >> I was trying to compile BLAS library trough ATLAS, the configure >> program compiles well but after running nothing happens (only the >> cursor saying that the program is running). With Ctrl-C I abort >> the running so I think there is a problem with the I/O interface. >> Any ideas? > > Get rid of rxvt? > Another workaround is to create a script as the same name as the .exe without the .exe extension that starts your program in a new windows. E.G.: I have foo.exe that doesn't work in rxvt. I then create a script named foo as follows. When I execute foo a new window opens with the desired output. <script name="foo"> #! /bin/sh start /path/to/foo.exe "$@" </script> This script idea is also good for modifying PATH to include a package specific path so that some controlling program can spawn other binaries in its directory. Earnie Boyd http://shop.siebunlimited.com |