-
Notifications
You must be signed in to change notification settings - Fork 460
Description
Hello,
I am not sure if this is the proper place to post this but I will give it a show. I am trying to use this gdbinit file while debugging some fortran code compiled by gfortran. I have noticed that I receive an error for just about everything when using this file though. For instance, when there is a breakpoint or an error in the execution of the file being debugged I get the following error:
A syntax error in expression, near `= 1'.
After messing around it seems that the issue is in the comparisons within hook-stop and within context. As I commented out the if comparisons I was able to push the error from one if to the next (ie it went from "A syntax error in expression, near = 1'." to "A syntax error in expression, near
> 0'." which is the next if statement;
Any clues as to why this is happening. I have checked that all of the variables are still active by calling printf "%i \n", $SHOW_CONTEXT and so on from within gdb and they are.
I am using gdb 7.7.1 on Mac OSX 10.9.3
Thanks for your help!
I will also paste this question to stack overflow