Hello,
VS can not find #include <tcl.h>.
can you help me?
#include <tcl.h>
Moderators: silvia, selimgunay, Moderators
Re: #include <tcl.h>
I add directory of tcl and now ti recognize #include <tcl.h>.
But can not recognize :
Tcl_FSEvalFileEx
can any one help?
But can not recognize :
Tcl_FSEvalFileEx
can any one help?
Re: #include <tcl.h>
Once you have a Tcl dev package installed, you'll then possibly come across the code expecting tcl.h to be in /usr/include/, but in order to facilitate multiple versions of Tcl being installed, Ubuntu places tcl.h in /usr/include/tcl/ - note the extra directory level.
Replacing: #include <tcl.h> with #include <tcl/tcl.h> in the source code you're trying to build should get around this.
Replacing: #include <tcl.h> with #include <tcl/tcl.h> in the source code you're trying to build should get around this.
Last edited by chatug on Sun Oct 14, 2018 7:06 pm, edited 1 time in total.
Re: #include <tcl.h>
many thanks.
-
- Posts: 1
- Joined: Wed Oct 17, 2018 11:37 pm
- Contact:
Re: #include <tcl.h>
Thanks for discussion