News:

The new Release 25.03 is out! You can download binaries for Windows and many major Linux distros here .

Main Menu

Correct settings for using g95 Fortran compiler?

Started by mconsidine, December 21, 2008, 10:48:22 PM

Previous topic - Next topic

mconsidine

Hi,
I think this is the right board for this question!  In any case, I'm able to compile a three line "Hello world" program using the GNU Fortran compiler.  But if I set up the g95 compiler (under Windows, MinGW) and run the same program, I'm getting a linker error associated with libf95.a.  Specifically,

Linking console executable: bin\Release\test2.exe
..\..\..\MinGW\lib\gcc-lib\i686-pc-mingw32\4.0.4\libf95.a(main.o):(.text+0x32): undefined reference to `MAIN_'
Process terminated with status 1 (0 minutes, 0 seconds)
1 errors, 0 warnings

where "test2" consists of these three lines :
10 PROGRAM hello
20 PRINT*,'Hello world'
30 END PROGRAM hello

So I'm thinking I don't have some flag/define/option/etc. that's specific to g95 set.

My question is : does anyone use g95 under CodeBlocks and if so could you share your compiler settings and defaults?

Thanks in advance.  And apologies if this is the wrong board for this question.  (I searched for "g95" but perversely got no hits.  Even though I've seen the word in the text of messages ...)

Matt

mconsidine

Answering my own question :

I finally got the G95 compiler to work by adding this to the linker options :
  -lfrtbegin
This was placed first in the list (for what it's worth), ahead of the two that came from copying
the G77 compiler settings as outlined in another thread here.

Matt

dmoore

Python plugins: [url="https://github.com/spillz/codeblocks-python"]https://github.com/spillz/codeblocks-python[/url]
Code::Blocks Daily Builds -- Ubuntu PPA: [url="https://launchpad.net/~damien-moore/+archive/codeblocks"]https://launchpad.net/~damien-moore/+archive/codeblocks[/url]

linqyxy


vd63

For me, it don't works.

I have the following message

ld: crt2.o: pas de fichier tel: No such file or directory

I'll try to add manually crt2.o in the link librairies section without succeed.

Thank you for any idea ...

stahta01

Quote from: vd63 on November 01, 2009, 10:29:58 AM
For me, it don't works.

I have the following message

ld: crt2.o: pas de fichier tel: No such file or directory

I'll try to add manually crt2.o in the link librairies section without succeed.

Thank you for any idea ...

Under C/C++ the cause is normally missing the Compiler/Debugger settings for Linker search directory containing  "crt2.o" file.

Tim S.
C Programmer working to learn more about C++.
On Windows 10 64 bit and Windows 11 64 bit.
--
When in doubt, read the CB WiKi FAQ. [url="http://wiki.codeblocks.org"]http://wiki.codeblocks.org[/url]

vd63


I think about it and I try to add path c:\MinGW\lib in the search directories linker section, but without success. I try to manually add crt2.o to the project too, but no effect ...

Jenny

Hello, I just installed Fortran 95 Compiler for Windows (mingw), but I have no idea, how to open the environment, or where to write the quelltext. Can somebody help me?