Bonjour,
Je suis en train de compiler un vieux code fortran qui, à l'origine,
tournais sous VMS. Il a été, depuis, épuré pour tourner sous MacOS, mais je
n'arrive pas à le compiler sous gnu/linux.
Lors de l'édition des liens, j'ai :
wait.o: In function `wait_':
wait.f:(.text+0xd): undefined reference to `sleep_'
dat_n_tim.o: In function `dat_n_tim_':
dat_n_tim.for:(.text+0x16): undefined reference to `date_'
dat_n_tim.for:(.text+0x3f): undefined reference to `time_'
wait.f contient :
subroutine wait (itempo,ier)
integer*4 sleep,ier,iret,itempo ! itempo in seconds
c
iret=sleep (itempo)
ier=iret
c
return
end
et dat_n_time.for contient :
character*18 function dat_n_tim()
call date(dat_n_tim(1:))
dat_n_tim(10:)=' '
call time(dat_n_tim(11:))
return
end
Une idée de ce qu'il faut faire pour que ça passe ?
Merci d'avance.
--
Frédéric
http://www.gbiloba.org