![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.tcl archiveerror LNK2001: unresolved external symbol __imp__Tcl_CreateInterp
From: Patrick <PatrickSurname@xxyyyzzzz.com>
Date: Mon Mar 06 2006 - 03:16:25 CET
Installed Tcl8.4.12.0 in C:\Tcl on Windows XP SP2.
Using C:\Program Files\Microsoft Platform SDK and Microsoft Visual C++
Used the New Project dialog to create a win32 console application.
I listed C:\Tcl\Include as the only Additional Include Directory.
I put C:\Tcl\Lib as the only Additional Library Directory.
Inserted the lines:
#include "tcl.h"
and
Tcl_Interp *tclinterp = Tcl_CreateInterp();
into the main program file.
Why isn't the linker finding the Tcl_CreateInterp object code?
|