[SCore-users] Absoft V7 f77 and f90

kameyama at pccluster.org kameyama at pccluster.org
Tue Nov 12 13:21:04 JST 2002


In article <20021112022756.9045920024 at neal.il.is.s.u-tokyo.ac.jp> kameyama at pccluster.org wrotes:
> The contents of /opt/score/etc/compilers/absoft on SCore 5.2 is following:
> 
>     options{"absoft"} = sub {
>         if ($lang eq "f90") {
>             $addoptions = "-YEXT_NAMES=LCS -YEXT_SFX=_";
>         } else {
>             $addoptions = "-f -N15";
>         }
>     };

Sorry, this script include bug.
I missing $.

This is correct code:
     $options{"absoft"} = sub {
         if ($lang eq "f90") {
             $addoptions = "-YEXT_NAMES=LCS -YEXT_SFX=_";
         } else {
             $addoptions = "-f -N15";
         }
     };

                       from Kameyama Toyohisa



More information about the SCore-users mailing list