Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

libtcl(3) [opensolaris man page]

libtcl(3)						     Library Functions Manual							 libtcl(3)

NAME
libtcl - Tool Command Language application interfaces SYNOPSIS
cc [ flag ...] file..." [ library ... ] -ltcl8.4 DESCRIPTION
The Tcl library is a collection of interfaces for writing Tcl applications in C. For more detail, see section 3tcl man pages specific to the library interfaces. Additional information is also available from the Tcl Developer Xchange site: http://www.scriptics.com/ LICENSE
The Tcl software is copyrighted by the Regents of the University of California, Sun Microsystems, Inc., Scriptics Corporation, and other parties. FILES
/usr/lib/libtcl8.4.so shared object /usr/lib/libtclstub8.4.a stubs library ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +--------------------+-----------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +--------------------+-----------------+ |Availability | SUNWTcl | +--------------------+-----------------+ |Interface Stability | Uncommitted | +--------------------+-----------------+ SEE ALSO
libtk(3) NOTES
Source for Tcl is available on http://opensolaris.org. 16 July 2001 libtcl(3)

Check Out this Related Man Page

Tcl_GetVersion(3TCL)					      Tcl Library Procedures					      Tcl_GetVersion(3TCL)

__________________________________________________________________________________________________________________________________________________

NAME
Tcl_GetVersion - get the version of the library at runtime SYNOPSIS
#include <tcl.h> Tcl_GetVersion(major, minor, patchLevel, type) ARGUMENTS
int *major (out) Major version number of the Tcl library. int *minor (out) Minor version number of the Tcl library. int *patchLevel (out) The patch level of the Tcl library (or alpha or beta number). Tcl_ReleaseType *type(out) The type of release, also indicates the type of patch level. Can be one of TCL_ALPHA_RELEASE, TCL_BETA_RELEASE, or TCL_FINAL_RELEASE. _________________________________________________________________ DESCRIPTION
Tcl_GetVersion should be used to query the version number of the Tcl library at runtime. This is useful when using a dynamically loaded Tcl library or when writing a stubs-aware extension. For instance, if you write an extension that is linked against the Tcl stubs library, it could be loaded into a program linked to an older version of Tcl than you expected. Use Tcl_GetVersion to verify that fact, and possi- bly to change the behavior of your extension. Tcl_GetVersion accepts NULL for any of the arguments. For instance if you do not care about the patchLevel of the library, pass a NULL for the patchLevel argument. KEYWORDS
version, patchlevel, major, minor, alpha, beta, release ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +--------------------+-----------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +--------------------+-----------------+ |Availability | SUNWTcl | +--------------------+-----------------+ |Interface Stability | Uncommitted | +--------------------+-----------------+ NOTES
Source for Tcl is available on http://opensolaris.org. Tcl 7.5 Tcl_GetVersion(3TCL)
Man Page

We Also Found This Discussion For You

1. UNIX for Advanced & Expert Users

What happens when an exe/lib links to another shared one:

We build our code on all platforms Sol, Hp, Aix, Sgi & linux. Some base libraries have changed. All the dependent exe & lib which use those base libraries have changed in all platforms in terms of size/checksum or both except linux. No code has changed in these. We have a post utility... (8 Replies)
Discussion started by: vibhor_agarwali
8 Replies