itime g95

spb

Registered
Hi,

With g77 I can get the system time by using the intrinsic function itime

call itime(hms)

where hms is an integer(3) array

When I try to compile this same software using g95 I get

ld: Undefined symbols:
_itime_

If I try to link in the libf2c.a file I get

ld: Undefined symbols:
_MAIN__
_itime_

Which library do I need to get the itime subroutine to work with g95? Is there something else that I'm missing?

Thank you,
sb
 
Back
Top