I compile the Tux Racer World Challenger app! But I have a problem with TCL some files of this application include:
include # TCL_HEADER
But when I compile, I get an error I get libtcl8.5.dylib in my project:
Fatal Error: 'tcl.h' file not found
I have added libtcl8.5.dylib in my project. I'm using Xcode 3.2.3 Please help me!
You also need to make sure that the TCLH file
The helpful files are tclDecls.h
and tclPlatDecls.h
) anywhere on the path of your project. to get a copy (I believe there is one under
/ system / library / frameworks /tcl.framework / versions
if everything fails , But you should confirm it yourself). Note that you can use the TCL 8.4 header file to create with the Tcl 8.5 library provide you are only using API functions supported by 8.4; This means that it is not entirely important that you match versions completely (though still a good idea) if you need 8.5 functionality (i.e., word API), then surely you 8.5 (or later) headers must be used.
Comments
Post a Comment