On Wed, Oct 9, 2013 at 5:32 PM, Robert Fletcher <[email protected]> wrote: > The more I think about it, I think lp_solve may be running, but it's trying > to access some file that isn't there. It just isn't being explicit about > which file it's looking for.
I was thinking something on similar lines. You may want to consider "ldd" on the executable to see if the program runs and maybe dynamically links basically properly, e.g.: ~ $ ldd /bin/bash linux-vdso.so.1 => (0x00007fffabdfe000) libncurses.so.5 => /lib/libncurses.so.5 (0x00007f448c3cc000) libdl.so.2 => /lib/libdl.so.2 (0x00007f448c1c8000) libc.so.6 => /lib/libc.so.6 (0x00007f448be41000) /lib64/ld-linux-x86-64.so.2 (0x00007f448c622000) If that seems to go okay, then the program itself is emitting that output. You may also want to consider using: "echo $?" to similar effect: ~ $ foo bash: foo: command not found ~ $ echo $? 127 ~ $ false ~ $ echo $? 1 ~ $ true ~ $ echo $? 0 -- -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/heroku?hl=en_US?hl=en --- You received this message because you are subscribed to the Google Groups "Heroku Community" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
