Quote:
truss - trace system calls and signals
The truss utility executes the specified command and pro-
duces a trace of the system calls it performs, the signals
it receives, and the machine faults it incurs. Each line of
the trace output reports either the fault or signal name or
the system call name with its arguments and return value(s).
System call arguments are displayed symbolically when possi-
ble using defines from relevant system headers; for any path
name pointer argument, the pointed-to string is displayed.
Error returns are reported using the error code names
described in intro(3).
Optionally (see the -u option), truss will also produce an
entry/exit trace of user-level function calls executed by
the traced process, indented to indicate nesting.
Alternatively, you could find the core dump file, move it to a machine with gcc on it, and use the debug tool to look at the ASM that it was trying to run when it crashed (IMHO a little harder to do than the truss, but still a viable option).