linking problem

Post Reply
gazim
Posts: 66
Joined: Sun Feb 18, 2001 1:01 pm

linking problem

Post by gazim »

I've been getting the following error messages when I try to compile my code with the api libraries of version 5.01.1138031466. Same libraries of the 04.04.1067366033 version of texis has no issue compiling and linking. Any help would be appreciated. Thanks in advance.


Linking...
Creating library Debug/TeOleDB.lib and object Debug/TeOleDB.exp
api3nt.lib(xpm.obj) : LNK2001:
api3nt.lib(npmp.obj) : LNK2001:
texisnt.lib(htprintf.obj) : LNK2001:
texisnt.lib(fldmathp.obj) : LNK2001:
texisnt.lib(http.obj) : LNK2001:
texisnt.lib(htformat.obj) : LNK2001:
texisnt.lib(abtree.obj) : LNK2001:
texisnt.lib(nlock.obj) : LNK2001:
texisnt.lib(txlicense.obj) : LNK2001:
texisnt.lib(meter.obj) : LNK2001:
texisnt.lib(setprop.obj) : LNK2001:
texisnt.lib(sysdep.obj) : LNK2001:
texisnt.lib(fldops.obj) : LNK2001:
texisnt.lib(geocode.obj) : LNK2001:
texisnt.lib(sysdep.obj) : LNK2001:
texisnt.lib(htprintf.obj) : LNK2001:
texisnt.lib(htbufio.obj) : LNK2001:
texisnt.lib(http.obj) : LNK2001:
texisnt.lib(conn.obj) : LNK2001:
texisnt.lib(http.obj) : LNK2001:
texisnt.lib(http.obj) : LNK2001:
texisnt.lib(http.obj) : LNK2001:
texisnt.lib(http.obj) : LNK2001:
texisnt.lib(http.obj) : LNK2001:
texisnt.lib(http.obj) : LNK2001:
texisnt.lib(http.obj) : LNK2001:
texisnt.lib(conn.obj) : LNK2001:
texisnt.lib(conn.obj) : LNK2001:
texisnt.lib(ftplib.obj) : LNK2001:
texisnt.lib(ftplib.obj) : LNK2001:
texisnt.lib(ftplib.obj) : LNK2001:
User avatar
John
Site Admin
Posts: 2622
Joined: Mon Apr 24, 2000 3:18 pm
Location: Cleveland, OH
Contact:

linking problem

Post by John »

Can you open a tech support ticket with the full message, including which libraries (static/dll) you are link against, and which symbols are unresolved.
John Turnbull
Thunderstone Software
User avatar
mark
Site Admin
Posts: 5519
Joined: Tue Apr 25, 2000 6:56 pm

linking problem

Post by mark »

Are you using the same libraries and order listed in the sample makefile? What is your link command?
gazim
Posts: 66
Joined: Sun Feb 18, 2001 1:01 pm

linking problem

Post by gazim »

I've opened a tech support ticket. I haven't received a automated confirmation email for my ticket. I am not sure if I am supposed to receive one.

Below please find the excerpts from my MakeFile. I am using MS Visual C++ 6.0. TIA.

<<

LINK32=link.exe
LINK32_FLAGS=texisnt.lib tispnt.lib api3nt.lib wsock32.lib netapi32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib mtx.lib mtxguid.lib version.lib /nologo /stack:0x989680 /subsystem:windows /dll /incremental:yes /pdb:"$(OUTDIR)\txOledb.pdb" /debug /machine:I386 /nodefaultlib:"libcmt.lib" /def:".\txOledb.def" /out:"$(OUTDIR)\txOledb.dll" /implib:"$(OUTDIR)\txOledb.lib"
DEF_FILE= \
".\txOledb.def"
LINK32_OBJS= \
"$(INTDIR)\CTexisRow.obj" \
"$(INTDIR)\DB.obj" \
"$(INTDIR)\putmsg.obj" \
"$(INTDIR)\StdAfx.obj" \
"$(INTDIR)\TexisCOM.obj" \
"$(INTDIR)\txOledb.obj" \
"$(INTDIR)\TexisRS.obj" \
"$(INTDIR)\txOledb.res"

"$(OUTDIR)\txOledb.dll" : "$(OUTDIR)" $(DEF_FILE) $(LINK32_OBJS)
$(LINK32) @<<
$(LINK32_FLAGS) $(LINK32_OBJS)
<<
User avatar
mark
Site Admin
Posts: 5519
Joined: Tue Apr 25, 2000 6:56 pm

linking problem

Post by mark »

There's no auto-response to tickets. It was received and replied to.
Post Reply