Aide fortran

dany -  
 dany -
Bonjour a tous,
Suite a de nombreuses recherche sur le net mon probleme reste inchange...Je n'arrive pas a faire marche un compilateur fortran... Je suis alle sur le site officiel ou j'ai telecharge la version de fortan l_fc_pc_8.1.024.tar.gz, lors de l'installation tout se passe bien(sh install.sh) mais lorsque je compile un programme qui a besoin de fortran il me dit un truc du genre make:g77ouf77ou.. commande introuvale

Pouvez vous m'aidez SVP car c'est un projet que je dois rendre dans la semaine ...merci par avance

Je suis sous mandrake 10.1 et si je me repete c'est parce qu'on ma dit de poster sur le forum programmation...

7 réponses

  1. philtrain
     
    Bonsoir,

    lorsque je compile un programme qui a besoin de fortran il me dit un truc du genre make:g77ouf77ou.. commande introuvale

    Cela veut dire que le chemin vers la commande g77 ne se trouve pas dans le PATH
    -> le shell ne peut interpréter la commande

    La solution est de rechercher où tu as installé la commande g77, puis d'ajouter le chemin dans le PATH.
    Donc par exemple:
    1) pour localiser g77:
    dans un terminal sous root:
    updatedb
    puis en tant qu'utilisateur normal:
    locate g77 | more
    2) Pour modifier le PATH:
    supposons que tu ais trouvé g77 dans /usr/local/bin
    -> dans le fichier ~/.bashrc
    tu ajoutes a la fin du fichier:
    export PATH=/usr/local/bin:$PATH

    3) Tu vérifie que le résultat est correct:
    dans un nouveau terminal:
    g77 --version

    OK?

    @+
    0
  2. dany
     
    [dany@localhost dany]$ locate g77 | more
    /home/dany/biopython/mfold/mfold-3.1.2/doc/manual-html/img77.gif
    /home/dany/biopython/g77-0.5.18
    /home/dany/biopython/g77-0.5.18/COPYING.g77
    /home/dany/biopython/g77-0.5.18/README.g77
    /home/dany/biopython/g77-0.5.18/f
    /home/dany/biopython/g77-0.5.18/f/CREDITS
    /home/dany/biopython/g77-0.5.18/f/gbe
    /home/dany/biopython/g77-0.5.18/f/gbe/README
    /home/dany/biopython/g77-0.5.18/f/gbe/2.6.3.diff
    /home/dany/biopython/g77-0.5.18/f/gbe/2.7.0.diff
    /home/dany/biopython/g77-0.5.18/f/gbe/2.7.1.diff
    /home/dany/biopython/g77-0.5.18/f/gbe/2.7.2.diff
    /home/dany/biopython/g77-0.5.18/f/ChangeLog
    /home/dany/biopython/g77-0.5.18/f/zzz.c

    Voici ce que me donne la commande.Et sauf si je n'ai rien compris, il n'y a pas g77 dedans. quel est le probleme alors?

    merci
    0
  3. dany
     
    locate g77 | more
    /home/dany/biopython/mfold/mfold-3.1.2/doc/manual-html/img77.gif
    /home/dany/biopython/g77-0.5.18
    /home/dany/biopython/g77-0.5.18/COPYING.g77
    /home/dany/biopython/g77-0.5.18/README.g77
    /home/dany/biopython/g77-0.5.18/f
    /home/dany/biopython/g77-0.5.18/f/CREDITS
    /home/dany/biopython/g77-0.5.18/f/gbe
    /home/dany/biopython/g77-0.5.18/f/gbe/README
    /home/dany/biopython/g77-0.5.18/f/gbe/2.6.3.diff
    /home/dany/biopython/g77-0.5.18/f/gbe/2.7.0.diff
    /home/dany/biopython/g77-0.5.18/f/gbe/2.7.1.diff
    /home/dany/biopython/g77-0.5.18/f/gbe/2.7.2.diff
    /home/dany/biopython/g77-0.5.18/f/ChangeLog
    /home/dany/biopython/g77-0.5.18/f/zzz.c
    /home/dany/biopython/g77-0.5.18/f/DOC
    /home/dany/biopython/g77-0.5.18/f/bad.def
    /home/dany/biopython/g77-0.5.18/f/Makefile.in
    /home/dany/biopython/g77-0.5.18/f/g77.c
    /home/dany/biopython/g77-0.5.18/f/g77.info-9
    /home/dany/biopython/g77-0.5.18/f/README
    /home/dany/biopython/g77-0.5.18/f/Make
    /home/dany/biopython/g77-0.5.18/f/Make-lang.in
    /home/dany/biopython/g77-0.5.18/f/zzz.h
    /home/dany/biopython/g77-0.5.18/f/bad.c
    /home/dany/biopython/g77-0.5.18/f/target.c
    /home/dany/biopython/g77-0.5.18/f/bad.h
    /home/dany/biopython/g77-0.5.18/f/bit.c
    /home/dany/biopython/g77-0.5.18/f/bit.h
    /home/dany/biopython/g77-0.5.18/f/bld-op.def
    /home/dany/biopython/g77-0.5.18/f/bld.c
    /home/dany/biopython/g77-0.5.18/f/bld.h
    /home/dany/biopython/g77-0.5.18/f/com-rt.def
    /home/dany/biopython/g77-0.5.18/f/com.c
    /home/dany/biopython/g77-0.5.18/f/com.h
    /home/dany/biopython/g77-0.5.18/f/config-lang.in
    /home/dany/biopython/g77-0.5.18/f/where.h
    /home/dany/biopython/g77-0.5.18/f/data.c
    /home/dany/biopython/g77-0.5.18/f/data.h
    /home/dany/biopython/g77-0.5.18/f/equiv.c
    /home/dany/biopython/g77-0.5.18/f/equiv.h
    /home/dany/biopython/g77-0.5.18/f/expr.c
    /home/dany/biopython/g77-0.5.18/f/expr.h
    /home/dany/biopython/g77-0.5.18/f/fini.c
    /home/dany/biopython/g77-0.5.18/f/PROJECTS
    /home/dany/biopython/g77-0.5.18/f/g77.1
    /home/dany/biopython/g77-0.5.18/f/global.c
    /home/dany/biopython/g77-0.5.18/f/global.h
    /home/dany/biopython/g77-0.5.18/f/implic.c
    /home/dany/biopython/g77-0.5.18/f/implic.h
    /home/dany/biopython/g77-0.5.18/f/info-b.def
    /home/dany/biopython/g77-0.5.18/f/info-k.def
    /home/dany/biopython/g77-0.5.18/f/info-w.def
    /home/dany/biopython/g77-0.5.18/f/info.c
    /home/dany/biopython/g77-0.5.18/f/info.h
    /home/dany/biopython/g77-0.5.18/f/intrin.c
    /home/dany/biopython/g77-0.5.18/f/intrin.def
    /home/dany/biopython/g77-0.5.18/f/intrin.h
    /home/dany/biopython/g77-0.5.18/f/lab.c
    /home/dany/biopython/g77-0.5.18/f/lab.h
    /home/dany/biopython/g77-0.5.18/f/lex.c
    /home/dany/biopython/g77-0.5.18/f/lex.h
    /home/dany/biopython/g77-0.5.18/f/malloc.c
    /home/dany/biopython/g77-0.5.18/f/malloc.h
    /home/dany/biopython/g77-0.5.18/f/name.c
    /home/dany/biopython/g77-0.5.18/f/name.h
    /home/dany/biopython/g77-0.5.18/f/parse.c
    /home/dany/biopython/g77-0.5.18/f/ste.c
    /home/dany/biopython/g77-0.5.18/f/proj.c
    /home/dany/biopython/g77-0.5.18/f/tm.j
    /home/dany/biopython/g77-0.5.18/f/src.c
    /home/dany/biopython/g77-0.5.18/f/src.h
    /home/dany/biopython/g77-0.5.18/f/st.c
    /home/dany/biopython/g77-0.5.18/f/target.h
    /home/dany/biopython/g77-0.5.18/f/st.h
    /home/dany/biopython/g77-0.5.18/f/sta.c
    /home/dany/biopython/g77-0.5.18/f/sta.h
    /home/dany/biopython/g77-0.5.18/f/stb.c
    /home/dany/biopython/g77-0.5.18/f/stb.h
    /home/dany/biopython/g77-0.5.18/f/stc.c
    /home/dany/biopython/g77-0.5.18/f/stc.h
    /home/dany/biopython/g77-0.5.18/f/std.c
    /home/dany/biopython/g77-0.5.18/f/std.h
    /home/dany/biopython/g77-0.5.18/f/ste.h
    /home/dany/biopython/g77-0.5.18/f/storag.c
    /home/dany/biopython/g77-0.5.18/f/storag.h
    /home/dany/biopython/g77-0.5.18/f/type.h
    /home/dany/biopython/g77-0.5.18/f/stp.c
    /home/dany/biopython/g77-0.5.18/f/stp.h
    /home/dany/biopython/g77-0.5.18/f/str-1t.fin
    /home/dany/biopython/g77-0.5.18/f/str-2t.fin
    /home/dany/biopython/g77-0.5.18/f/str-fo.fin
    /home/dany/biopython/g77-0.5.18/f/str-io.fin
    /home/dany/biopython/g77-0.5.18/f/str-nq.fin
    /home/dany/biopython/g77-0.5.18/f/str-op.fin
    /home/dany/biopython/g77-0.5.18/f/str-ot.fin
    /home/dany/biopython/g77-0.5.18/f/str.c
    /home/dany/biopython/g77-0.5.18/f/str.h
    /home/dany/biopython/g77-0.5.18/f/sts.c
    /home/dany/biopython/g77-0.5.18/f/sts.h
    /home/dany/biopython/g77-0.5.18/f/stt.c
    /home/dany/biopython/g77-0.5.18/f/stt.h
    /home/dany/biopython/g77-0.5.18/f/top.c
    /home/dany/biopython/g77-0.5.18/f/stu.c
    /home/dany/biopython/g77-0.5.18/f/type.c
    /home/dany/biopython/g77-0.5.18/f/stu.h
    /home/dany/biopython/g77-0.5.18/f/stv.c
    /home/dany/biopython/g77-0.5.18/f/stv.h
    /home/dany/biopython/g77-0.5.18/f/stw.c
    /home/dany/biopython/g77-0.5.18/f/stw.h
    /home/dany/biopython/g77-0.5.18/f/symbol.c
    /home/dany/biopython/g77-0.5.18/f/symbol.def
    /home/dany/biopython/g77-0.5.18/f/symbol.h
    /home/dany/biopython/g77-0.5.18/f/where.c
    /home/dany/biopython/g77-0.5.18/f/top.h
    /home/dany/biopython/g77-0.5.18/f/config.j
    /home/dany/biopython/g77-0.5.18/f/runtime
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/Makefile.in
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/Notice
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/README
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/Version.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/abort_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/c_abs.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/c_cos.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/c_div.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/c_exp.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/c_log.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/c_sin.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/c_sqrt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/cabs.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_abs.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_acos.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_asin.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_atan.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_atn2.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_cnjg.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_cos.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_cosh.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_dim.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_exp.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_imag.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_int.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_lg10.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_log.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_mod.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_nint.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_prod.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_sign.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_sin.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_sinh.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_sqrt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_tan.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/d_tanh.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/derf_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/derfc_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/ef1asc_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/ef1cmc_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/erf_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/erfc_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/getarg_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/getenv_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/h_abs.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/h_dim.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/h_dnnt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/h_indx.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/h_len.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/h_mod.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/h_nint.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/h_sign.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/hl_ge.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/hl_gt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/hl_le.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/hl_lt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/i_abs.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/i_dim.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/i_dnnt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/i_indx.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/i_len.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/i_mod.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/i_nint.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/i_sign.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/iargc_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/l_ge.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/l_gt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/l_le.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/l_lt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/main.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/pow_ci.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/pow_dd.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/pow_di.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/pow_hh.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/pow_ii.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/pow_qq.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/pow_ri.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/pow_zi.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/pow_zz.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_abs.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_acos.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_asin.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_atan.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_atn2.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_cnjg.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_cos.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_cosh.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_dim.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_exp.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_imag.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_int.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_lg10.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_log.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_mod.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_nint.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_sign.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_sin.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_sinh.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_sqrt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_tan.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/r_tanh.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/s_cat.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/s_cmp.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/s_copy.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/s_paus.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/s_rnge.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/s_stop.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/sig_die.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/signal_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/system_.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/z_abs.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/z_cos.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/z_div.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/z_exp.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/z_log.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/z_sin.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/z_sqrt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/f2ch.add
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/exit.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/F77_aloc.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libF77/Makefile
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/wsle.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/Makefile.in
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/Notice
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/README
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/Version.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/backspace.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/close.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/dfe.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/dolio.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/due.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/endfile.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/err.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/fio.h
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/fmt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/fmt.h
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/fmtlib.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/fp.h
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/iio.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/ilnw.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/inquire.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/lio.h
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/lread.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/lwrite.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/open.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/rawio.h
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/rdfmt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/rewind.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/rsfe.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/rsli.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/rsne.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/sfe.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/sue.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/typesize.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/uio.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/util.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/wref.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/wsfe.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/wrtfmt.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/wsne.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/xwsne.c
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/f2ch.add
    /home/dany/biopython/g77-0.5.18/f/runtime/libI77/Makefile
    /home/dany/biopython/g77-0.5.18/f/runtime/Makefile.in
    /home/dany/biopython/g77-0.5.18/f/runtime/README
    /home/dany/biopython/g77-0.5.18/f/runtime/TODO
    /home/dany/biopython/g77-0.5.18/f/runtime/configure
    /home/dany/biopython/g77-0.5.18/f/runtime/configure.in
    /home/dany/biopython/g77-0.5.18/f/runtime/f2c.h.in
    /home/dany/biopython/g77-0.5.18/f/runtime/ChangeLog
    /home/dany/biopython/g77-0.5.18/f/runtime/config.log
    /home/dany/biopython/g77-0.5.18/f/runtime/Makefile
    /home/dany/biopython/g77-0.5.18/f/runtime/config.cache
    /home/dany/biopython/g77-0.5.18/f/runtime/config.status
    /home/dany/biopython/g77-0.5.18/f/tree.j
    /home/dany/biopython/g77-0.5.18/f/README.NEXTSTEP
    /home/dany/biopython/g77-0.5.18/f/flags.j
    /home/dany/biopython/g77-0.5.18/f/rtl.j
    /home/dany/biopython/g77-0.5.18/f/tconfig.j
    /home/dany/biopython/g77-0.5.18/f/convert.j
    /home/dany/biopython/g77-0.5.18/f/hconfig.j
    /home/dany/biopython/g77-0.5.18/f/glimits.j
    /home/dany/biopython/g77-0.5.18/f/assert.j
    /home/dany/biopython/g77-0.5.18/f/BUGS
    /home/dany/biopython/g77-0.5.18/f/proj.h
    /home/dany/biopython/g77-0.5.18/f/lang-specs.h
    /home/dany/biopython/g77-0.5.18/f/lang-options.h
    /home/dany/biopython/g77-0.5.18/f/input.j
    /home/dany/biopython/g77-0.5.18/f/g77.texi
    /home/dany/biopython/g77-0.5.18/f/g77.info-1
    /home/dany/biopython/g77-0.5.18/f/g77.info-2
    /home/dany/biopython/g77-0.5.18/f/g77.info-3
    /home/dany/biopython/g77-0.5.18/f/g77.info
    /home/dany/biopython/g77-0.5.18/f/install.texi
    /home/dany/biopython/g77-0.5.18/f/NEWS
    /home/dany/biopython/g77-0.5.18/f/g77.info-4
    /home/dany/biopython/g77-0.5.18/f/g77.info-5
    /home/dany/biopython/g77-0.5.18/f/g77.info-6
    /home/dany/biopython/g77-0.5.18/f/g77.info-7
    /home/dany/biopython/g77-0.5.18/f/news0.texi
    /home/dany/biopython/g77-0.5.18/f/install0.texi
    /home/dany/biopython/g77-0.5.18/f/bugs0.texi
    /home/dany/biopython/g77-0.5.18/f/g77.info-8
    /home/dany/biopython/g77-0.5.18/f/news.texi
    /home/dany/biopython/g77-0.5.18/f/bugs.texi
    /home/dany/biopython/g77-0.5.18/f/INSTALL
    /home/dany/biopython/g77-0.5.18/include
    /home/dany/biopython/mfold-3.1.2/doc/manual-html/img77.gif
    /home/dany/biopython/gcc-g77-3.4.3-7mdk.i586.rpm
    /home/dany/biopython/gcc-g77-4.4.3-7mdk.i586.rpm
    /usr/share/man/fr/man1/g77.1.bz2
    /usr/src/g77-0.5.18
    /usr/src/g77-0.5.18/COPYING.g77
    /usr/src/g77-0.5.18/README.g77
    /usr/src/g77-0.5.18/f
    /usr/src/g77-0.5.18/f/CREDITS
    /usr/src/g77-0.5.18/f/gbe
    /usr/src/g77-0.5.18/f/gbe/README
    /usr/src/g77-0.5.18/f/gbe/2.6.3.diff
    /usr/src/g77-0.5.18/f/gbe/2.7.0.diff
    /usr/src/g77-0.5.18/f/gbe/2.7.1.diff
    /usr/src/g77-0.5.18/f/gbe/2.7.2.diff
    /usr/src/g77-0.5.18/f/ChangeLog
    /usr/src/g77-0.5.18/f/zzz.c
    /usr/src/g77-0.5.18/f/DOC
    /usr/src/g77-0.5.18/f/bad.def
    /usr/src/g77-0.5.18/f/Makefile.in
    /usr/src/g77-0.5.18/f/g77.c
    /usr/src/g77-0.5.18/f/g77.info-9
    /usr/src/g77-0.5.18/f/README
    /usr/src/g77-0.5.18/f/Make
    /usr/src/g77-0.5.18/f/Make-lang.in
    /usr/src/g77-0.5.18/f/zzz.h
    /usr/src/g77-0.5.18/f/bad.c
    /usr/src/g77-0.5.18/f/target.c
    /usr/src/g77-0.5.18/f/bad.h
    /usr/src/g77-0.5.18/f/bit.c
    /usr/src/g77-0.5.18/f/bit.h
    /usr/src/g77-0.5.18/f/bld-op.def
    /usr/src/g77-0.5.18/f/bld.c
    /usr/src/g77-0.5.18/f/bld.h
    /usr/src/g77-0.5.18/f/com-rt.def
    /usr/src/g77-0.5.18/f/com.c
    /usr/src/g77-0.5.18/f/com.h
    /usr/src/g77-0.5.18/f/config-lang.in
    /usr/src/g77-0.5.18/f/where.h
    /usr/src/g77-0.5.18/f/data.c
    /usr/src/g77-0.5.18/f/data.h
    /usr/src/g77-0.5.18/f/equiv.c
    /usr/src/g77-0.5.18/f/equiv.h
    /usr/src/g77-0.5.18/f/expr.c
    /usr/src/g77-0.5.18/f/expr.h
    /usr/src/g77-0.5.18/f/fini.c
    /usr/src/g77-0.5.18/f/PROJECTS
    /usr/src/g77-0.5.18/f/g77.1
    /usr/src/g77-0.5.18/f/global.c
    /usr/src/g77-0.5.18/f/global.h
    /usr/src/g77-0.5.18/f/implic.c
    /usr/src/g77-0.5.18/f/implic.h
    /usr/src/g77-0.5.18/f/info-b.def
    /usr/src/g77-0.5.18/f/info-k.def
    /usr/src/g77-0.5.18/f/info-w.def
    /usr/src/g77-0.5.18/f/info.c
    /usr/src/g77-0.5.18/f/info.h
    /usr/src/g77-0.5.18/f/intrin.c
    /usr/src/g77-0.5.18/f/intrin.def
    /usr/src/g77-0.5.18/f/intrin.h
    /usr/src/g77-0.5.18/f/lab.c
    /usr/src/g77-0.5.18/f/lab.h
    /usr/src/g77-0.5.18/f/lex.c
    /usr/src/g77-0.5.18/f/lex.h
    /usr/src/g77-0.5.18/f/malloc.c
    /usr/src/g77-0.5.18/f/malloc.h
    /usr/src/g77-0.5.18/f/name.c
    /usr/src/g77-0.5.18/f/name.h
    /usr/src/g77-0.5.18/f/parse.c
    /usr/src/g77-0.5.18/f/ste.c
    /usr/src/g77-0.5.18/f/proj.c
    /usr/src/g77-0.5.18/f/tm.j
    /usr/src/g77-0.5.18/f/src.c
    /usr/src/g77-0.5.18/f/src.h
    /usr/src/g77-0.5.18/f/st.c
    /usr/src/g77-0.5.18/f/target.h
    /usr/src/g77-0.5.18/f/st.h
    /usr/src/g77-0.5.18/f/sta.c
    /usr/src/g77-0.5.18/f/sta.h
    /usr/src/g77-0.5.18/f/stb.c
    /usr/src/g77-0.5.18/f/stb.h
    /usr/src/g77-0.5.18/f/stc.c
    /usr/src/g77-0.5.18/f/stc.h
    /usr/src/g77-0.5.18/f/std.c
    /usr/src/g77-0.5.18/f/std.h
    /usr/src/g77-0.5.18/f/ste.h
    /usr/src/g77-0.5.18/f/storag.c
    /usr/src/g77-0.5.18/f/storag.h
    /usr/src/g77-0.5.18/f/type.h
    /usr/src/g77-0.5.18/f/stp.c
    /usr/src/g77-0.5.18/f/stp.h
    /usr/src/g77-0.5.18/f/str-1t.fin
    /usr/src/g77-0.5.18/f/str-2t.fin
    /usr/src/g77-0.5.18/f/str-fo.fin
    /usr/src/g77-0.5.18/f/str-io.fin
    /usr/src/g77-0.5.18/f/str-nq.fin
    /usr/src/g77-0.5.18/f/str-op.fin
    /usr/src/g77-0.5.18/f/str-ot.fin
    /usr/src/g77-0.5.18/f/str.c
    /usr/src/g77-0.5.18/f/str.h
    /usr/src/g77-0.5.18/f/sts.c
    /usr/src/g77-0.5.18/f/sts.h
    /usr/src/g77-0.5.18/f/stt.c
    /usr/src/g77-0.5.18/f/stt.h
    /usr/src/g77-0.5.18/f/top.c
    /usr/src/g77-0.5.18/f/stu.c
    /usr/src/g77-0.5.18/f/type.c
    /usr/src/g77-0.5.18/f/stu.h
    /usr/src/g77-0.5.18/f/stv.c
    /usr/src/g77-0.5.18/f/stv.h
    /usr/src/g77-0.5.18/f/stw.c
    /usr/src/g77-0.5.18/f/stw.h
    /usr/src/g77-0.5.18/f/symbol.c
    /usr/src/g77-0.5.18/f/symbol.def
    /usr/src/g77-0.5.18/f/symbol.h
    /usr/src/g77-0.5.18/f/where.c
    /usr/src/g77-0.5.18/f/top.h
    /usr/src/g77-0.5.18/f/config.j
    /usr/src/g77-0.5.18/f/runtime
    /usr/src/g77-0.5.18/f/runtime/libF77
    /usr/src/g77-0.5.18/f/runtime/libF77/Makefile.in
    /usr/src/g77-0.5.18/f/runtime/libF77/Notice
    /usr/src/g77-0.5.18/f/runtime/libF77/README
    /usr/src/g77-0.5.18/f/runtime/libF77/Version.c
    /usr/src/g77-0.5.18/f/runtime/libF77/abort_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/c_abs.c
    /usr/src/g77-0.5.18/f/runtime/libF77/c_cos.c
    /usr/src/g77-0.5.18/f/runtime/libF77/c_div.c
    /usr/src/g77-0.5.18/f/runtime/libF77/c_exp.c
    /usr/src/g77-0.5.18/f/runtime/libF77/c_log.c
    /usr/src/g77-0.5.18/f/runtime/libF77/c_sin.c
    /usr/src/g77-0.5.18/f/runtime/libF77/c_sqrt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/cabs.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_abs.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_acos.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_asin.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_atan.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_atn2.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_cnjg.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_cos.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_cosh.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_dim.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_exp.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_imag.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_int.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_lg10.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_log.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_mod.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_nint.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_prod.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_sign.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_sin.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_sinh.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_sqrt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_tan.c
    /usr/src/g77-0.5.18/f/runtime/libF77/d_tanh.c
    /usr/src/g77-0.5.18/f/runtime/libF77/derf_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/derfc_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/ef1asc_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/ef1cmc_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/erf_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/erfc_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/getarg_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/getenv_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/h_abs.c
    /usr/src/g77-0.5.18/f/runtime/libF77/h_dim.c
    /usr/src/g77-0.5.18/f/runtime/libF77/h_dnnt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/h_indx.c
    /usr/src/g77-0.5.18/f/runtime/libF77/h_len.c
    /usr/src/g77-0.5.18/f/runtime/libF77/h_mod.c
    /usr/src/g77-0.5.18/f/runtime/libF77/h_nint.c
    /usr/src/g77-0.5.18/f/runtime/libF77/h_sign.c
    /usr/src/g77-0.5.18/f/runtime/libF77/hl_ge.c
    /usr/src/g77-0.5.18/f/runtime/libF77/hl_gt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/hl_le.c
    /usr/src/g77-0.5.18/f/runtime/libF77/hl_lt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/i_abs.c
    /usr/src/g77-0.5.18/f/runtime/libF77/i_dim.c
    /usr/src/g77-0.5.18/f/runtime/libF77/i_dnnt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/i_indx.c
    /usr/src/g77-0.5.18/f/runtime/libF77/i_len.c
    /usr/src/g77-0.5.18/f/runtime/libF77/i_mod.c
    /usr/src/g77-0.5.18/f/runtime/libF77/i_nint.c
    /usr/src/g77-0.5.18/f/runtime/libF77/i_sign.c
    /usr/src/g77-0.5.18/f/runtime/libF77/iargc_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/l_ge.c
    /usr/src/g77-0.5.18/f/runtime/libF77/l_gt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/l_le.c
    /usr/src/g77-0.5.18/f/runtime/libF77/l_lt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/main.c
    /usr/src/g77-0.5.18/f/runtime/libF77/pow_ci.c
    /usr/src/g77-0.5.18/f/runtime/libF77/pow_dd.c
    /usr/src/g77-0.5.18/f/runtime/libF77/pow_di.c
    /usr/src/g77-0.5.18/f/runtime/libF77/pow_hh.c
    /usr/src/g77-0.5.18/f/runtime/libF77/pow_ii.c
    /usr/src/g77-0.5.18/f/runtime/libF77/pow_qq.c
    /usr/src/g77-0.5.18/f/runtime/libF77/pow_ri.c
    /usr/src/g77-0.5.18/f/runtime/libF77/pow_zi.c
    /usr/src/g77-0.5.18/f/runtime/libF77/pow_zz.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_abs.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_acos.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_asin.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_atan.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_atn2.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_cnjg.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_cos.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_cosh.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_dim.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_exp.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_imag.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_int.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_lg10.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_log.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_mod.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_nint.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_sign.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_sin.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_sinh.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_sqrt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_tan.c
    /usr/src/g77-0.5.18/f/runtime/libF77/r_tanh.c
    /usr/src/g77-0.5.18/f/runtime/libF77/s_cat.c
    /usr/src/g77-0.5.18/f/runtime/libF77/s_cmp.c
    /usr/src/g77-0.5.18/f/runtime/libF77/s_copy.c
    /usr/src/g77-0.5.18/f/runtime/libF77/s_paus.c
    /usr/src/g77-0.5.18/f/runtime/libF77/s_rnge.c
    /usr/src/g77-0.5.18/f/runtime/libF77/s_stop.c
    /usr/src/g77-0.5.18/f/runtime/libF77/sig_die.c
    /usr/src/g77-0.5.18/f/runtime/libF77/signal_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/system_.c
    /usr/src/g77-0.5.18/f/runtime/libF77/z_abs.c
    /usr/src/g77-0.5.18/f/runtime/libF77/z_cos.c
    /usr/src/g77-0.5.18/f/runtime/libF77/z_div.c
    /usr/src/g77-0.5.18/f/runtime/libF77/z_exp.c
    /usr/src/g77-0.5.18/f/runtime/libF77/z_log.c
    /usr/src/g77-0.5.18/f/runtime/libF77/z_sin.c
    /usr/src/g77-0.5.18/f/runtime/libF77/z_sqrt.c
    /usr/src/g77-0.5.18/f/runtime/libF77/f2ch.add
    /usr/src/g77-0.5.18/f/runtime/libF77/exit.c
    /usr/src/g77-0.5.18/f/runtime/libF77/F77_aloc.c
    /usr/src/g77-0.5.18/f/runtime/libI77
    /usr/src/g77-0.5.18/f/runtime/libI77/wsle.c
    /usr/src/g77-0.5.18/f/runtime/libI77/Makefile.in
    /usr/src/g77-0.5.18/f/runtime/libI77/Notice
    /usr/src/g77-0.5.18/f/runtime/libI77/README
    /usr/src/g77-0.5.18/f/runtime/libI77/Version.c
    /usr/src/g77-0.5.18/f/runtime/libI77/backspace.c
    /usr/src/g77-0.5.18/f/runtime/libI77/close.c
    /usr/src/g77-0.5.18/f/runtime/libI77/dfe.c
    /usr/src/g77-0.5.18/f/runtime/libI77/dolio.c
    /usr/src/g77-0.5.18/f/runtime/libI77/due.c
    /usr/src/g77-0.5.18/f/runtime/libI77/endfile.c
    /usr/src/g77-0.5.18/f/runtime/libI77/err.c
    /usr/src/g77-0.5.18/f/runtime/libI77/fio.h
    /usr/src/g77-0.5.18/f/runtime/libI77/fmt.c
    /usr/src/g77-0.5.18/f/runtime/libI77/fmt.h
    /usr/src/g77-0.5.18/f/runtime/libI77/fmtlib.c
    /usr/src/g77-0.5.18/f/runtime/libI77/fp.h
    /usr/src/g77-0.5.18/f/runtime/libI77/iio.c
    /usr/src/g77-0.5.18/f/runtime/libI77/ilnw.c
    /usr/src/g77-0.5.18/f/runtime/libI77/inquire.c
    /usr/src/g77-0.5.18/f/runtime/libI77/lio.h
    /usr/src/g77-0.5.18/f/runtime/libI77/lread.c
    /usr/src/g77-0.5.18/f/runtime/libI77/lwrite.c
    /usr/src/g77-0.5.18/f/runtime/libI77/open.c
    /usr/src/g77-0.5.18/f/runtime/libI77/rawio.h
    /usr/src/g77-0.5.18/f/runtime/libI77/rdfmt.c
    /usr/src/g77-0.5.18/f/runtime/libI77/rewind.c
    /usr/src/g77-0.5.18/f/runtime/libI77/rsfe.c
    /usr/src/g77-0.5.18/f/runtime/libI77/rsli.c
    /usr/src/g77-0.5.18/f/runtime/libI77/rsne.c
    /usr/src/g77-0.5.18/f/runtime/libI77/sfe.c
    /usr/src/g77-0.5.18/f/runtime/libI77/sue.c
    /usr/src/g77-0.5.18/f/runtime/libI77/typesize.c
    /usr/src/g77-0.5.18/f/runtime/libI77/uio.c
    /usr/src/g77-0.5.18/f/runtime/libI77/util.c
    /usr/src/g77-0.5.18/f/runtime/libI77/wref.c
    /usr/src/g77-0.5.18/f/runtime/libI77/wsfe.c
    /usr/src/g77-0.5.18/f/runtime/libI77/wrtfmt.c
    /usr/src/g77-0.5.18/f/runtime/libI77/wsne.c
    /usr/src/g77-0.5.18/f/runtime/libI77/xwsne.c
    /usr/src/g77-0.5.18/f/runtime/libI77/f2ch.add
    /usr/src/g77-0.5.18/f/runtime/Makefile.in
    /usr/src/g77-0.5.18/f/runtime/README
    /usr/src/g77-0.5.18/f/runtime/TODO
    /usr/src/g77-0.5.18/f/runtime/configure
    /usr/src/g77-0.5.18/f/runtime/configure.in
    /usr/src/g77-0.5.18/f/runtime/f2c.h.in
    /usr/src/g77-0.5.18/f/runtime/ChangeLog
    /usr/src/g77-0.5.18/f/tree.j
    /usr/src/g77-0.5.18/f/README.NEXTSTEP
    /usr/src/g77-0.5.18/f/flags.j
    /usr/src/g77-0.5.18/f/rtl.j
    /usr/src/g77-0.5.18/f/tconfig.j
    /usr/src/g77-0.5.18/f/convert.j
    /usr/src/g77-0.5.18/f/hconfig.j
    /usr/src/g77-0.5.18/f/glimits.j
    /usr/src/g77-0.5.18/f/assert.j
    /usr/src/g77-0.5.18/f/BUGS
    /usr/src/g77-0.5.18/f/proj.h
    /usr/src/g77-0.5.18/f/lang-specs.h
    /usr/src/g77-0.5.18/f/lang-options.h
    /usr/src/g77-0.5.18/f/input.j
    /usr/src/g77-0.5.18/f/g77.texi
    /usr/src/g77-0.5.18/f/g77.info-1
    /usr/src/g77-0.5.18/f/g77.info-2
    /usr/src/g77-0.5.18/f/g77.info-3
    /usr/src/g77-0.5.18/f/g77.info
    /usr/src/g77-0.5.18/f/install.texi
    /usr/src/g77-0.5.18/f/NEWS
    /usr/src/g77-0.5.18/f/g77.info-4
    /usr/src/g77-0.5.18/f/g77.info-5
    /usr/src/g77-0.5.18/f/g77.info-6
    /usr/src/g77-0.5.18/f/g77.info-7
    /usr/src/g77-0.5.18/f/news0.texi
    /usr/src/g77-0.5.18/f/install0.texi
    /usr/src/g77-0.5.18/f/bugs0.texi
    /usr/src/g77-0.5.18/f/g77.info-8
    /usr/src/g77-0.5.18/f/news.texi
    /usr/src/g77-0.5.18/f/bugs.texi
    /usr/src/g77-0.5.18/f/INSTALL
    /usr/src/g77
    /usr/FSF/g77-0.5.18.tar.gz

    desole je n'avais pas tout mis
    0
  4. philtrain
     
    ouarf, c'est le bordel!

    c'est quoi le /usr/src/g77 ?

    -----------------------------------------

    Tu aurais du:
    - mettre g77-0.5.18.tar.gz dans /home/dany
    - tar xvzf g77-0.5.18.tar.gz
    - cd g77-0.5.18
    - ./configure
    - make
    - su
    ->password
    - make install
    - exit

    --> les exécutables s'installent généralement dans /usr/bin/local

    (sous réserve d'autres indications -> lire g77-0.5.18/f/INSTALL )

    ou alors, plus facile, installer le paquet .rpm fourni avec ta distribution (le paquet gcc-g77) :
    - su
    ->password
    - urpmi gcc-g77
    - exit

    @+
    0
  5. Vous n’avez pas trouvé la réponse que vous recherchez ?

    Posez votre question
  6. dany
     
    Merci de ton aide mes tes solutions n'ont pas marche...

    La premiere ne peut pas se faire car je n'ai pas de configure dans le dossier g77-0.5.18, dans ce dossier il y a 2 sous dossier: f et include et 2 fichier: COPYING.g77 et README.g77.

    Ensuite pour ce qui est du rpm et bien :

    [root@localhost dany]# urpmi gcc-g77
    pas de paquetage nommé gcc-g77

    Voila si tu as d'autres propositions n'hesite pas car je ne vois plus comment faire....Mais ce qui est in comprehensible, c'est que j'ai installe sans probleme:

    1. Intel(R) Fortran Compiler for 32-bit applications, Version 8.1
    2. Linux Application Debugger for 32-bit applications, Version 8.1

    a l'aide de l_fc_pc_8.1.024 pris sur le site de fortran alors pourquoi ca na marche pas ....

    bon si tu peux m'expliquer ...merci
    0
  7. philtrain
     
    1) As-tu lu le fichier INSTALL?
    En principe, tout y est expliqué.
    Le fichier configure se trouve ici:
    g77-0.5.18/f/runtime/configure

    2) Si tu n'as pas le paquet rpm gcc-g77 (ce qui m'étonne car il est fourni avec la plupart des distributions, mais je n'utilise pas mandrake, donc je ne sais pas vérifier), tu peux le trouver ici:
    http://rpm.pbone.net/index.php3/stat/4/idpl/1527481/com/gcc-g77-3.3.2-9mdk.i586.rpm.html

    Je viens d'installer et de tester sans problème le paquet rpm gcc-g77 fourni avec ma distribution (SuSe 9.2)(cela faisait un certain temps que je n'avais pas écri du code fortran ...)aucune configuration particulière n'est nécessaire, ca fonctionne tout de suite. g77 se trouve comme d'habitude dans /usr/bin/

    @+
    0
  8. dany
     
    merci beaucoup de ton aide philtrain , ca a marche....
    encore merci
    0