Microsoft KB Archive/39260

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 16:56, 18 July 2020 by 3155ffGd (talk | contribs) (importing KB archive)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Article ID: 39260

Article Last Modified on 11/21/2006



APPLIES TO

  • Microsoft QuickBasic 4.0, when used with:
    • Microsoft MS-DOS 6.22 Standard Edition
  • Microsoft QuickBASIC 4.0b, when used with:
    • Microsoft MS-DOS 6.22 Standard Edition
  • Microsoft QuickBasic 4.5 for MS-DOS, when used with:
    • Microsoft MS-DOS 6.22 Standard Edition
  • Microsoft BASIC Compiler 6.0
  • Microsoft BASIC Compiler 6.0b



This article was previously published under Q39260

SYMPTOMS

Mixed-language programming with Basic and FORTRAN may produce an "L2025: Symbol defined more than once" linker error. The error occurs even if the /NOE linker switch is used. Possible reasons for this problem are version-dependent, as described below.

MORE INFORMATION

The following are three known problems that make LINK.EXE give an "L2025: Symbol defined more than once" error when linking compiled Basic and FORTRAN. Problem 1 is a software limitation (not a bug), but Problems 2 and 3 are software problems (bugs) that Microsoft is researching:

  1. LINKing compiled Basic with the incorrect version of Microsoft FORTRAN can cause the L2025 error.

    Microsoft Basic Professional Development System (PDS) version 7.10 currently cannot link with any version of FORTRAN (5.00 or earlier), but Microsoft is working on a workaround for this limitation. Basic PDS version 7.00 requires Microsoft FORTRAN version 5.00. QuickBasic versions 4.00b and 4.50 and Microsoft Basic Compiler versions 6.00 and 6.00b require Microsoft FORTRAN version 4.10. QuickBasic version 4.00 requires Microsoft FORTRAN version 4.00.

    The following error displays if you LINK the incorrect version of Microsoft FORTRAN with compiled Basic:

    The symbol __FF_MSGBANNER is defined more than once.

    The solution to this problem is to link only the correct versions of FORTRAN and compiled Basic, as listed above.
  2. Using math functions such as SIN, COS, and SQRT in the FORTRAN subroutine can cause the L2025 linker error. The following linker error occurs if a Basic program compiled with /O is linked with a FORTRAN routine that was compiled with the correct version of Microsoft FORTRAN compiler:

          __ctrand1 [and __ctrand2]: Symbol defined more that once.
                            

    Compile and LINK the code example farther below as follows to duplicate problem #2:

          BC Basic.BAS, Basic.OBJ /x/o;
          FL /c FORTRAN.FOR
          LINK Basic.OBJ+FORTRAN.OBJ, BFTEST.EXE /NOE;


STATUS

Microsoft has confirmed this to be a bug in QuickBasic versions 4.00b and 4.50 and in Microsoft Basic Compiler versions 6.00 and 6.00b (buglist6.00, buglist6.00b). This problem was corrected in Microsoft Basic Professional Development System (PDS) version 7.00 (fixlist7.00).

  1. Using math functions such as SIN, COS, and SQRT in a FORTRAN 5.00 subroutine linked into a Quick library can cause the L2025 linker error in Basic PDS 7.00 (buglist7.00). This problem does not occur when linking into an .EXE program (instead of into a Quick library), or when not using FORTRAN math functions in the Quick library.

    Compile and LINK the code example further below as follows to duplicate Problem 3 in Basic PDS 7.00 and FORTRAN 5.00:

          FL /c FORTRAN.FOR
          LINK /Q /NOE /NOD FORTRAN.OBJ+QBX.LIB,,,QBXQLB.LIB LLIBFORE.LIB
                            

    This LINK gives about 28 L2025 errors, such as the following:

    llibfore.lib(dos\crt0dat.asm) : error L2025:: __osversion : symbol defined more than once

Code Example for Problems 2 and 3 (Above)

The following is a set of routines that demonstrate Problems 2 and 3 above. Note: If the Basic program is compiled with QuickBasic version 4.50 and the BC /O option is not used, Problem 2 does not occur.

=== Basic.BAS ===:
 
   CALL ftest
   END
 
=== FORTRAN.FOR ===:
 
        subroutine ftest
        real a,b,c,d,e,p,q,r,s,t
        c = sin(d)
        p = p/e**5
        q = sqrt(r * r + s * s + t * t)
        return
        end
                


Additional query words: QuickBas BasicCom buglist4.00b buglist4.50 B_BasicCom H_Fortran

Keywords: KB39260