This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: windows and cygwin compiled dll ?


Hi,

i use the files from the example:
http://cygwin.com/building-reloc-dlls.txt

I created whith the make script (the same example) the DLL. 
Then I use (thank to John Vincent)
 
dlltool -D fooB.dll -l fooB.lib

I got the lib.

Then I copy the main.c, fooB.dll, fooB.lib and the cygwin1.dll in the MSVC
Projectdir.

compiling whith MSVC returns:

--------------------Konfiguration: relocDLLTest - Win32
Debug--------------------
Kompilierung läuft...
main.c
C:\user\Hansen\DLL\relocDLLTest\main.c(8) : warning C4013: 'doit'
undefiniert; Annahme: extern mit Rueckgabetyp int
C:\user\Hansen\DLL\relocDLLTest\main.c(9) : warning C4013: 'doittoo'
undefiniert; Annahme: extern mit Rueckgabetyp int
Linker-Vorgang läuft...
main.obj : error LNK2001: Nichtaufgeloestes externes Symbol _doittoo
main.obj : error LNK2001: Nichtaufgeloestes externes Symbol _doit
Debug/relocDLLTest.exe : fatal error LNK1120: 2 unaufgeloeste externe
Verweise
Fehler beim Ausführen von link.exe.

relocDLLTest.exe - 3 Fehler, 2 Warnung(en)


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

so i added to the main file the lines

int doit(int i);
int doittoo(int i);

and compiled again

--------------------Konfiguration: relocDLLTest - Win32
Debug--------------------
Kompilierung läuft...
main.c
Linker-Vorgang läuft...
main.obj : error LNK2001: Nichtaufgeloestes externes Symbol _doittoo
main.obj : error LNK2001: Nichtaufgeloestes externes Symbol _doit
Debug/relocDLLTest.exe : fatal error LNK1120: 2 unaufgeloeste externe
Verweise
Fehler beim Ausführen von link.exe.

relocDLLTest.exe - 3 Fehler, 0 Warnung(en)

----------

I got again the LNK2001 Error. (the same error I got whithout the lib file.)
have i to use this stupid __decspec(dlleport) ? 

hope you could still help

Stefan Hansen

-- 
GMX - Die Kommunikationsplattform im Internet.
http://www.gmx.net


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]