> It looks like I'm having a shared libraries issue. Both processes die and > gdb tells me > > Program received signal SIGABRT, Aborted. > 0x00007fffeb281a75 in *__GI_raise (sig=<value optimized out>) > at ../nptl/sysdeps/unix/sysv/linux/raise.c:64 > in ../nptl/sysdeps/unix/sysv/linux/raise.c > ../nptl/sysdeps/unix/sysv/linux/raise.c: No such file or > directory.
It's just saying that the program was ultimately aborted in a function called 'raise' -- which is called when you call abort(). You need to figure out what called abort() (and thereby raise()), for example by doing a backtrace in the compiler. W. ------------------------------------------------------------------------- Wolfgang Bangerth email: [email protected] www: http://www.math.tamu.edu/~bangerth/ _______________________________________________ dealii mailing list http://poisson.dealii.org/mailman/listinfo/dealii
