tclConfig.sh 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. # tclConfig.sh --
  2. #
  3. # This shell script (for sh) is generated automatically by Tcl's
  4. # configure script. It will create shell variables for most of
  5. # the configuration options discovered by the configure script.
  6. # This script is intended to be included by the configure scripts
  7. # for Tcl extensions so that they don't have to figure this all
  8. # out for themselves.
  9. #
  10. # The information in this file is specific to a single platform.
  11. TCL_DLL_FILE="tcl86t.dll"
  12. # Tcl's version number.
  13. TCL_VERSION='8.6'
  14. TCL_MAJOR_VERSION='8'
  15. TCL_MINOR_VERSION='6'
  16. TCL_PATCH_LEVEL='8.6.13'
  17. # C compiler to use for compilation.
  18. TCL_CC='cl'
  19. # -D flags for use with the C compiler.
  20. TCL_DEFS='-nologo -c /D_ATL_XP_TARGETING /DHAVE_CPUID=1 -W3 -wd4311 -wd4312 -wd4090 -wd4146 -wd4311 -wd4312 -FpD:\_w\1\b\externals\tcl-core-8.6.13.0\win\Release_AMD64_VC13\tcl_ThreadedDynamic\ -fp:strict -O2 -GS -GL -MD -I"D:\_w\1\b\externals\tcl-core-8.6.13.0\win\..\win" -I"D:\_w\1\b\externals\tcl-core-8.6.13.0\win\..\generic" -I"D:\_w\1\b\externals\tcl-core-8.6.13.0\win\..\libtommath" /DTCL_TOMMATH /DMP_PREC=4 /Dinline=__inline /DHAVE_ZLIB=1 /D_CRT_SECURE_NO_DEPRECATE /D_CRT_NONSTDC_NO_DEPRECATE /DMP_FIXED_CUTOFFS /DSTDC_HEADERS /DUSE_NMAKE=1 /DHAVE_STDINT_H=1 /DHAVE_INTTYPES_H=1 /DHAVE_STDBOOL_H=1 /DTCL_THREADS=1 /DUSE_THREAD_ALLOC=1 /DNDEBUG /DTCL_CFG_OPTIMIZED /DTCL_CFG_DO64BIT /DBUILD_tcl'
  21. # If TCL was built with debugging symbols, generated libraries contain
  22. # this string at the end of the library name (before the extension).
  23. TCL_DBGX=t
  24. # Default flags used in an optimized and debuggable build, respectively.
  25. TCL_CFLAGS_DEBUG='-nologo -c -W3 -YX -FpD:\_w\1\b\externals\tcl-core-8.6.13.0\win\Release_AMD64_VC13\tcl_ThreadedDynamic\ -MDd'
  26. TCL_CFLAGS_OPTIMIZE='-nologo -c -W3 -YX -FpD:\_w\1\b\externals\tcl-core-8.6.13.0\win\Release_AMD64_VC13\tcl_ThreadedDynamic\ -MD'
  27. # Default linker flags used in an optimized and debuggable build, respectively.
  28. TCL_LDFLAGS_DEBUG='-nologo -machine:AMD64 -debug -debugtype:cv'
  29. TCL_LDFLAGS_OPTIMIZE='-nologo -machine:AMD64 -release -opt:ref -opt:icf,3'
  30. # Flag, 1: we built a shared lib, 0 we didn't
  31. TCL_SHARED_BUILD=1
  32. # The name of the Tcl library (may be either a .a file or a shared library):
  33. TCL_LIB_FILE='tcl86t.lib'
  34. # Flag to indicate whether shared libraries need export files.
  35. TCL_NEEDS_EXP_FILE=
  36. # String that can be evaluated to generate the part of the export file
  37. # name that comes after the "libxxx" (includes version number, if any,
  38. # extension, and anything else needed). May depend on the variables
  39. # VERSION. On most UNIX systems this is ${VERSION}.exp.
  40. TCL_EXPORT_FILE_SUFFIX='86t.lib'
  41. # Additional libraries to use when linking Tcl.
  42. TCL_LIBS='kernel32.lib advapi32.lib netapi32.lib user32.lib userenv.lib ws2_32.lib ucrt.lib netapi32.lib user32.lib userenv.lib ws2_32.lib'
  43. # Top-level directory in which Tcl's platform-independent files are
  44. # installed.
  45. TCL_PREFIX='D:\_w\1\a\amd64'
  46. # Top-level directory in which Tcl's platform-specific files (e.g.
  47. # executables) are installed.
  48. TCL_EXEC_PREFIX='D:\_w\1\a\amd64\bin'
  49. # Flags to pass to cc when compiling the components of a shared library:
  50. TCL_SHLIB_CFLAGS=''
  51. # Flags to pass to cc to get warning messages
  52. TCL_CFLAGS_WARNING='-W3'
  53. # Extra flags to pass to cc:
  54. TCL_EXTRA_CFLAGS='-YX'
  55. # Base command to use for combining object files into a shared library:
  56. TCL_SHLIB_LD='link -nologo -machine:AMD64 -ltcg -release -opt:ref -opt:icf,3 -nodefaultlib:libucrt.lib -dll'
  57. # Base command to use for combining object files into a static library:
  58. TCL_STLIB_LD='lib -nologo'
  59. # Either '$LIBS' (if dependent libraries should be included when linking
  60. # shared libraries) or an empty string. See Tcl's configure.in for more
  61. # explanation.
  62. TCL_SHLIB_LD_LIBS='kernel32.lib advapi32.lib netapi32.lib user32.lib userenv.lib ws2_32.lib ucrt.lib netapi32.lib user32.lib userenv.lib ws2_32.lib'
  63. # Suffix to use for the name of a shared library.
  64. TCL_SHLIB_SUFFIX='.dll'
  65. # Library file(s) to include in tclsh and other base applications
  66. # in order to provide facilities needed by DLOBJ above.
  67. TCL_DL_LIBS=''
  68. # Flags to pass to the compiler when linking object files into
  69. # an executable tclsh or tcltest binary.
  70. TCL_LD_FLAGS=''
  71. # Flags to pass to cc/ld, such as "-R /usr/local/tcl/lib", that tell the
  72. # run-time dynamic linker where to look for shared libraries such as
  73. # libtcl.so. Used when linking applications. Only works if there
  74. # is a variable "LIB_RUNTIME_DIR" defined in the Makefile.
  75. TCL_CC_SEARCH_FLAGS=''
  76. TCL_LD_SEARCH_FLAGS=''
  77. # Additional object files linked with Tcl to provide compatibility
  78. # with standard facilities from ANSI C or POSIX.
  79. TCL_COMPAT_OBJS=''
  80. # Name of the ranlib program to use.
  81. TCL_RANLIB=''
  82. # -l flag to pass to the linker to pick up the Tcl library
  83. TCL_LIB_FLAG=''
  84. # String to pass to linker to pick up the Tcl library from its
  85. # build directory.
  86. TCL_BUILD_LIB_SPEC=''
  87. # String to pass to linker to pick up the Tcl library from its
  88. # installed directory.
  89. TCL_LIB_SPEC='D:\_w\1\a\amd64\lib\tcl86t.lib'
  90. # String to pass to the compiler so that an extension can
  91. # find installed Tcl headers.
  92. TCL_INCLUDE_SPEC='-ID:\_w\1\a\amd64\include'
  93. # Indicates whether a version numbers should be used in -l switches
  94. # ("ok" means it's safe to use switches like -ltcl7.5; "nodots" means
  95. # use switches like -ltcl75). SunOS and FreeBSD require "nodots", for
  96. # example.
  97. TCL_LIB_VERSIONS_OK=''
  98. # String that can be evaluated to generate the part of a shared library
  99. # name that comes after the "libxxx" (includes version number, if any,
  100. # extension, and anything else needed). May depend on the variables
  101. # VERSION and SHLIB_SUFFIX. On most UNIX systems this is
  102. # ${VERSION}${SHLIB_SUFFIX}.
  103. TCL_SHARED_LIB_SUFFIX='86t.dll'
  104. # String that can be evaluated to generate the part of an unshared library
  105. # name that comes after the "libxxx" (includes version number, if any,
  106. # extension, and anything else needed). May depend on the variable
  107. # VERSION. On most UNIX systems this is ${VERSION}.a.
  108. TCL_UNSHARED_LIB_SUFFIX='86t.lib'
  109. # Location of the top-level source directory from which Tcl was built.
  110. # This is the directory that contains a README file as well as
  111. # subdirectories such as generic, unix, etc. If Tcl was compiled in a
  112. # different place than the directory containing the source files, this
  113. # points to the location of the sources, not the location where Tcl was
  114. # compiled.
  115. TCL_SRC_DIR='D:\_w\1\b\externals\tcl-core-8.6.13.0\win\..'
  116. # List of standard directories in which to look for packages during
  117. # "package require" commands. Contains the "prefix" directory plus also
  118. # the "exec_prefix" directory, if it is different.
  119. TCL_PACKAGE_PATH=''
  120. # Tcl supports stub.
  121. TCL_SUPPORTS_STUBS=1
  122. # The name of the Tcl stub library (.a):
  123. TCL_STUB_LIB_FILE='tclstub86.lib'
  124. # -l flag to pass to the linker to pick up the Tcl stub library
  125. TCL_STUB_LIB_FLAG='tclstub86.lib'
  126. # String to pass to linker to pick up the Tcl stub library from its
  127. # build directory.
  128. TCL_BUILD_STUB_LIB_SPEC='-LD:\_w\1\b\externals\tcl-core-8.6.13.0\win\Release_AMD64_VC13 tclstub86.lib'
  129. # String to pass to linker to pick up the Tcl stub library from its
  130. # installed directory.
  131. TCL_STUB_LIB_SPEC='-LD:\_w\1\a\amd64\lib tclstub86.lib'
  132. # Path to the Tcl stub library in the build directory.
  133. TCL_BUILD_STUB_LIB_PATH='D:\_w\1\b\externals\tcl-core-8.6.13.0\win\Release_AMD64_VC13\tclstub86.lib'
  134. # Path to the Tcl stub library in the install directory.
  135. TCL_STUB_LIB_PATH='D:\_w\1\a\amd64\lib\tclstub86.lib'
  136. # Flag, 1: we built Tcl with threads enabled, 0 we didn't
  137. TCL_THREADS=1