Dylan Beaudette wrote:

> however my futile attempt has resulted in a segfault. The tail end
> of which looks like:

> Any tips?

Compile with debug info and without optimisation:

        make clean
        make CFLAGS=-g &> build.log

Pay attention to any warnings which are generated.

Run the program under gdb; when it segfaults, you can view the call
stack with "bt" (or "bt full" to see arguments). The top-most entry
will be the source line where the segfault occurred.

-- 
Glynn Clements <[email protected]>
_______________________________________________
grass-dev mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/grass-dev

Reply via email to