Topic: unrecognized gcc debugging option

Hi -
I'm new to simple fortran (and its been years since I programmed in it...)  I ran my code, made up of a bunch of different routines, and got this...

f951.exe: warning: unrecognized gcc debugging option: r
f951.exe: warning: unrecognized gcc debugging option: l
f951.exe: warning: unrecognized gcc debugging option: l
f951.exe: warning: unrecognized gcc debugging option: e
f951.exe: warning: unrecognized gcc debugging option: l

Any idea as to what it means?  It doesn't seem to impact the code I am working with...

Re: unrecognized gcc debugging option

Brendan,

Could you send along a copy of your project file (the ".prj" file only) along to support@approximatrix.com?  I suspect there is a problematic project option somehow being set.

Jeff Armstrong
Approximatrix, LLC

Re: unrecognized gcc debugging option

Although I replied directly to Brendan, I'll repeat the fix here. The problem occurs because an option, "-dparallel," was set in the project's Fortran flags.  The "-dparallel" option has no meaning to our compiler, and it's causing the warning you're seeing.  If you remove that option, everything should work fine.  The "-dparallel" flag might have some meaning in other compilers.

Jeff Armstrong
Approximatrix, LLC

Re: unrecognized gcc debugging option

Jeff's fix worked like a charm.  Thanks!

On to Open MP!