I am new to Frama-c and quite new to programming in general. I installed Frama-C on my Mac. I am using OSX. From the Command Line I enter Frama-C-Gui which opens fine at which time I select "New Project" Frama-C GUI then adding a new Project
I navigate through my files and then select my VERY simple .C file however when I select it I receive an error saying:
"Frama-C aborter: invalid user input. Reverting to previous state. Look at the console for additional information (if any)."
Frama-C Gui with error message
My file is very simple and just the loop below:
for (int j=-100;j<=100;j++){i=j;
while (i!=0){i=i+2; x=x-5; y=y-y/x;}}
Any assistance on how to be able to run files here successfully would be very appreciated!