Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.

Cannot link

Wagner__Urs
Novato
623 Visualizações

 

I am using a lib for a dll (newbie in fortran)

I get the link error

Severity    Code    Description    Project    File    Line    Suppression State
Error        error LNK2019: unresolved external symbol _TEXT@24 referenced in function _TEXTPU        PLO.obj        

In dll the functio is defined according dumpbin

    Exports

       ordinal    name

                  _LINEWIDTH
                  _MARKER
                  _PLOT_INI
                  _TEXT

What is the meaning of @24? What must I do that the linker is using _TEXT instead of _TEXT@24

Thanks

Urs

 

0 Kudos
4 Respostas
Steve_Lionel
Colaborador honorário III
623 Visualizações

@24 means that the caller of TEXT is using the STDCALL calling convention, which is not the default in Intel Fortran. The 24 indicates the number of bytes pushed on the stack for arguments that it expects the called routine to pop off before return. The calling conventions must be consistent or else you'll get stack corruption.

Are you using the /iface:cvf option or an ATTRIBUTES STDCALL directive in the source of TEXTPU?

JAlexiou
Novo colaborador I
623 Visualizações

Try adding the alias compiler directive

    SUBROUTINE TEST()
    !DEC$ ATTRIBUTES DLLEXPORT :: TEST
    !DEC$ ATTRIBUTES ALIAS:'TEST :: TEST
    IMPLICIT NONE
        ! Code Starts Here
    END SUBROUTINE

 

Steve_Lionel
Colaborador honorário III
623 Visualizações

TEXT is already being exported. Either it doesn't have the STDCALL attribute or it has a different number of arguments than in the caller (something I neglected to mention in my earlier response.)

Wagner__Urs
Novato
623 Visualizações

Thank You

I had set the calling convention to CVF. After changing to default it works fine.

Responder