auto_link.hpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. // (C) Copyright John Maddock 2003.
  2. // Use, modification and distribution are subject to the
  3. // Boost Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. /*
  6. * LOCATION: see http://www.boost.org for most recent version.
  7. * FILE auto_link.hpp
  8. * VERSION see <boost/version.hpp>
  9. * DESCRIPTION: Automatic library inclusion for Borland/Microsoft compilers.
  10. */
  11. /*************************************************************************
  12. USAGE:
  13. ~~~~~~
  14. Before including this header you must define one or more of define the following macros:
  15. BOOST_LIB_NAME: Required: A string containing the basename of the library,
  16. for example boost_regex.
  17. BOOST_LIB_TOOLSET: Optional: the base name of the toolset.
  18. BOOST_DYN_LINK: Optional: when set link to dll rather than static library.
  19. BOOST_LIB_DIAGNOSTIC: Optional: when set the header will print out the name
  20. of the library selected (useful for debugging).
  21. BOOST_AUTO_LINK_NOMANGLE: Specifies that we should link to BOOST_LIB_NAME.lib,
  22. rather than a mangled-name version.
  23. BOOST_AUTO_LINK_TAGGED: Specifies that we link to libraries built with the --layout=tagged option.
  24. This is essentially the same as the default name-mangled version, but without
  25. the compiler name and version, or the Boost version. Just the build options.
  26. These macros will be undef'ed at the end of the header, further this header
  27. has no include guards - so be sure to include it only once from your library!
  28. Algorithm:
  29. ~~~~~~~~~~
  30. Libraries for Borland and Microsoft compilers are automatically
  31. selected here, the name of the lib is selected according to the following
  32. formula:
  33. BOOST_LIB_PREFIX
  34. + BOOST_LIB_NAME
  35. + "_"
  36. + BOOST_LIB_TOOLSET
  37. + BOOST_LIB_THREAD_OPT
  38. + BOOST_LIB_RT_OPT
  39. "-"
  40. + BOOST_LIB_VERSION
  41. These are defined as:
  42. BOOST_LIB_PREFIX: "lib" for static libraries otherwise "".
  43. BOOST_LIB_NAME: The base name of the lib ( for example boost_regex).
  44. BOOST_LIB_TOOLSET: The compiler toolset name (vc6, vc7, bcb5 etc).
  45. BOOST_LIB_THREAD_OPT: "-mt" for multithread builds, otherwise nothing.
  46. BOOST_LIB_RT_OPT: A suffix that indicates the runtime library used,
  47. contains one or more of the following letters after
  48. a hyphen:
  49. s static runtime (dynamic if not present).
  50. g debug/diagnostic runtime (release if not present).
  51. y Python debug/diagnostic runtime (release if not present).
  52. d debug build (release if not present).
  53. p STLport build.
  54. n STLport build without its IOStreams.
  55. BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y.
  56. ***************************************************************************/
  57. #ifdef __cplusplus
  58. # ifndef BOOST_CONFIG_HPP
  59. # include <boost/config.hpp>
  60. # endif
  61. #elif defined(_MSC_VER) && !defined(__MWERKS__) && !defined(__EDG_VERSION__)
  62. //
  63. // C language compatability (no, honestly)
  64. //
  65. # define BOOST_MSVC _MSC_VER
  66. # define BOOST_STRINGIZE(X) BOOST_DO_STRINGIZE(X)
  67. # define BOOST_DO_STRINGIZE(X) #X
  68. #endif
  69. //
  70. // Only include what follows for known and supported compilers:
  71. //
  72. #if defined(BOOST_MSVC) \
  73. || defined(__BORLANDC__) \
  74. || (defined(__MWERKS__) && defined(_WIN32) && (__MWERKS__ >= 0x3000)) \
  75. || (defined(__ICL) && defined(_MSC_EXTENSIONS) && (_MSC_VER >= 1200))
  76. #ifndef BOOST_VERSION_HPP
  77. # include <boost/version.hpp>
  78. #endif
  79. #ifndef BOOST_LIB_NAME
  80. # error "Macro BOOST_LIB_NAME not set (internal error)"
  81. #endif
  82. //
  83. // error check:
  84. //
  85. #if defined(__MSVC_RUNTIME_CHECKS) && !defined(_DEBUG)
  86. # pragma message("Using the /RTC option without specifying a debug runtime will lead to linker errors")
  87. # pragma message("Hint: go to the code generation options and switch to one of the debugging runtimes")
  88. # error "Incompatible build options"
  89. #endif
  90. //
  91. // select toolset if not defined already:
  92. //
  93. #ifndef BOOST_LIB_TOOLSET
  94. # if defined(BOOST_MSVC) && (BOOST_MSVC < 1200)
  95. // Note: no compilers before 1200 are supported
  96. # elif defined(BOOST_MSVC) && (BOOST_MSVC < 1300)
  97. # ifdef UNDER_CE
  98. // eVC4:
  99. # define BOOST_LIB_TOOLSET "evc4"
  100. # else
  101. // vc6:
  102. # define BOOST_LIB_TOOLSET "vc6"
  103. # endif
  104. # elif defined(BOOST_MSVC) && (BOOST_MSVC < 1310)
  105. // vc7:
  106. # define BOOST_LIB_TOOLSET "vc7"
  107. # elif defined(BOOST_MSVC) && (BOOST_MSVC < 1400)
  108. // vc71:
  109. # define BOOST_LIB_TOOLSET "vc71"
  110. # elif defined(BOOST_MSVC) && (BOOST_MSVC < 1500)
  111. // vc80:
  112. # define BOOST_LIB_TOOLSET "vc80"
  113. # elif defined(BOOST_MSVC) && (BOOST_MSVC < 1600)
  114. // vc90:
  115. # define BOOST_LIB_TOOLSET "vc90"
  116. # elif defined(BOOST_MSVC) && (BOOST_MSVC < 1700)
  117. // vc10:
  118. # define BOOST_LIB_TOOLSET "vc100"
  119. # elif defined(BOOST_MSVC) && (BOOST_MSVC < 1800)
  120. // vc11:
  121. # define BOOST_LIB_TOOLSET "vc110"
  122. # elif defined(BOOST_MSVC) && (BOOST_MSVC < 1900)
  123. // vc12:
  124. # define BOOST_LIB_TOOLSET "vc120"
  125. # elif defined(BOOST_MSVC)
  126. // vc14:
  127. # define BOOST_LIB_TOOLSET "vc140"
  128. # elif defined(__BORLANDC__)
  129. // CBuilder 6:
  130. # define BOOST_LIB_TOOLSET "bcb"
  131. # elif defined(__ICL)
  132. // Intel C++, no version number:
  133. # define BOOST_LIB_TOOLSET "iw"
  134. # elif defined(__MWERKS__) && (__MWERKS__ <= 0x31FF )
  135. // Metrowerks CodeWarrior 8.x
  136. # define BOOST_LIB_TOOLSET "cw8"
  137. # elif defined(__MWERKS__) && (__MWERKS__ <= 0x32FF )
  138. // Metrowerks CodeWarrior 9.x
  139. # define BOOST_LIB_TOOLSET "cw9"
  140. # endif
  141. #endif // BOOST_LIB_TOOLSET
  142. //
  143. // select thread opt:
  144. //
  145. #if defined(_MT) || defined(__MT__)
  146. # define BOOST_LIB_THREAD_OPT "-mt"
  147. #else
  148. # define BOOST_LIB_THREAD_OPT
  149. #endif
  150. #if defined(_MSC_VER) || defined(__MWERKS__)
  151. # ifdef _DLL
  152. # if (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && (defined(_STLP_OWN_IOSTREAMS) || defined(__STL_OWN_IOSTREAMS))
  153. # if defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))\
  154. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  155. # define BOOST_LIB_RT_OPT "-gydp"
  156. # elif defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))
  157. # define BOOST_LIB_RT_OPT "-gdp"
  158. # elif defined(_DEBUG)\
  159. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  160. # define BOOST_LIB_RT_OPT "-gydp"
  161. # pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
  162. # error "Build options aren't compatible with pre-built libraries"
  163. # elif defined(_DEBUG)
  164. # define BOOST_LIB_RT_OPT "-gdp"
  165. # pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
  166. # error "Build options aren't compatible with pre-built libraries"
  167. # else
  168. # define BOOST_LIB_RT_OPT "-p"
  169. # endif
  170. # elif defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
  171. # if defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))\
  172. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  173. # define BOOST_LIB_RT_OPT "-gydpn"
  174. # elif defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))
  175. # define BOOST_LIB_RT_OPT "-gdpn"
  176. # elif defined(_DEBUG)\
  177. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  178. # define BOOST_LIB_RT_OPT "-gydpn"
  179. # pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
  180. # error "Build options aren't compatible with pre-built libraries"
  181. # elif defined(_DEBUG)
  182. # define BOOST_LIB_RT_OPT "-gdpn"
  183. # pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
  184. # error "Build options aren't compatible with pre-built libraries"
  185. # else
  186. # define BOOST_LIB_RT_OPT "-pn"
  187. # endif
  188. # else
  189. # if defined(_DEBUG) && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  190. # define BOOST_LIB_RT_OPT "-gyd"
  191. # elif defined(_DEBUG)
  192. # define BOOST_LIB_RT_OPT "-gd"
  193. # else
  194. # define BOOST_LIB_RT_OPT
  195. # endif
  196. # endif
  197. # else
  198. # if (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && (defined(_STLP_OWN_IOSTREAMS) || defined(__STL_OWN_IOSTREAMS))
  199. # if defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))\
  200. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  201. # define BOOST_LIB_RT_OPT "-sgydp"
  202. # elif defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))
  203. # define BOOST_LIB_RT_OPT "-sgdp"
  204. # elif defined(_DEBUG)\
  205. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  206. # define BOOST_LIB_RT_OPT "-sgydp"
  207. # pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
  208. # error "Build options aren't compatible with pre-built libraries"
  209. # elif defined(_DEBUG)
  210. # define BOOST_LIB_RT_OPT "-sgdp"
  211. # pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
  212. # error "Build options aren't compatible with pre-built libraries"
  213. # else
  214. # define BOOST_LIB_RT_OPT "-sp"
  215. # endif
  216. # elif defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
  217. # if defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))\
  218. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  219. # define BOOST_LIB_RT_OPT "-sgydpn"
  220. # elif defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))
  221. # define BOOST_LIB_RT_OPT "-sgdpn"
  222. # elif defined(_DEBUG)\
  223. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  224. # define BOOST_LIB_RT_OPT "-sgydpn"
  225. # pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
  226. # error "Build options aren't compatible with pre-built libraries"
  227. # elif defined(_DEBUG)
  228. # define BOOST_LIB_RT_OPT "-sgdpn"
  229. # pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
  230. # error "Build options aren't compatible with pre-built libraries"
  231. # else
  232. # define BOOST_LIB_RT_OPT "-spn"
  233. # endif
  234. # else
  235. # if defined(_DEBUG)\
  236. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  237. # define BOOST_LIB_RT_OPT "-sgyd"
  238. # elif defined(_DEBUG)
  239. # define BOOST_LIB_RT_OPT "-sgd"
  240. # else
  241. # define BOOST_LIB_RT_OPT "-s"
  242. # endif
  243. # endif
  244. # endif
  245. #elif defined(__BORLANDC__)
  246. //
  247. // figure out whether we want the debug builds or not:
  248. //
  249. #if __BORLANDC__ > 0x561
  250. #pragma defineonoption BOOST_BORLAND_DEBUG -v
  251. #endif
  252. //
  253. // sanity check:
  254. //
  255. #if defined(__STL_DEBUG) || defined(_STLP_DEBUG)
  256. #error "Pre-built versions of the Boost libraries are not provided in STLport-debug form"
  257. #endif
  258. # ifdef _RTLDLL
  259. # if defined(BOOST_BORLAND_DEBUG)\
  260. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  261. # define BOOST_LIB_RT_OPT "-yd"
  262. # elif defined(BOOST_BORLAND_DEBUG)
  263. # define BOOST_LIB_RT_OPT "-d"
  264. # elif defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  265. # define BOOST_LIB_RT_OPT -y
  266. # else
  267. # define BOOST_LIB_RT_OPT
  268. # endif
  269. # else
  270. # if defined(BOOST_BORLAND_DEBUG)\
  271. && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  272. # define BOOST_LIB_RT_OPT "-syd"
  273. # elif defined(BOOST_BORLAND_DEBUG)
  274. # define BOOST_LIB_RT_OPT "-sd"
  275. # elif defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
  276. # define BOOST_LIB_RT_OPT "-sy"
  277. # else
  278. # define BOOST_LIB_RT_OPT "-s"
  279. # endif
  280. # endif
  281. #endif
  282. //
  283. // select linkage opt:
  284. //
  285. #if (defined(_DLL) || defined(_RTLDLL)) && defined(BOOST_DYN_LINK)
  286. # define BOOST_LIB_PREFIX
  287. #elif defined(BOOST_DYN_LINK)
  288. # error "Mixing a dll boost library with a static runtime is a really bad idea..."
  289. #else
  290. # define BOOST_LIB_PREFIX "lib"
  291. #endif
  292. //
  293. // now include the lib:
  294. //
  295. #if defined(BOOST_LIB_NAME) \
  296. && defined(BOOST_LIB_PREFIX) \
  297. && defined(BOOST_LIB_TOOLSET) \
  298. && defined(BOOST_LIB_THREAD_OPT) \
  299. && defined(BOOST_LIB_RT_OPT) \
  300. && defined(BOOST_LIB_VERSION)
  301. #ifdef BOOST_AUTO_LINK_TAGGED
  302. # pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT ".lib")
  303. # ifdef BOOST_LIB_DIAGNOSTIC
  304. # pragma message ("Linking to lib file: " BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT ".lib")
  305. # endif
  306. #elif defined(BOOST_AUTO_LINK_NOMANGLE)
  307. # pragma comment(lib, BOOST_STRINGIZE(BOOST_LIB_NAME) ".lib")
  308. # ifdef BOOST_LIB_DIAGNOSTIC
  309. # pragma message ("Linking to lib file: " BOOST_STRINGIZE(BOOST_LIB_NAME) ".lib")
  310. # endif
  311. #elif defined(BOOST_LIB_BUILDID)
  312. # pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT "-" BOOST_LIB_VERSION "-" BOOST_STRINGIZE(BOOST_LIB_BUILDID) ".lib")
  313. # ifdef BOOST_LIB_DIAGNOSTIC
  314. # pragma message ("Linking to lib file: " BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT "-" BOOST_LIB_VERSION "-" BOOST_STRINGIZE(BOOST_LIB_BUILDID) ".lib")
  315. # endif
  316. #else
  317. # pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT "-" BOOST_LIB_VERSION ".lib")
  318. # ifdef BOOST_LIB_DIAGNOSTIC
  319. # pragma message ("Linking to lib file: " BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT "-" BOOST_LIB_VERSION ".lib")
  320. # endif
  321. #endif
  322. #else
  323. # error "some required macros where not defined (internal logic error)."
  324. #endif
  325. #endif // _MSC_VER || __BORLANDC__
  326. //
  327. // finally undef any macros we may have set:
  328. //
  329. #ifdef BOOST_LIB_PREFIX
  330. # undef BOOST_LIB_PREFIX
  331. #endif
  332. #if defined(BOOST_LIB_NAME)
  333. # undef BOOST_LIB_NAME
  334. #endif
  335. // Don't undef this one: it can be set by the user and should be the
  336. // same for all libraries:
  337. //#if defined(BOOST_LIB_TOOLSET)
  338. //# undef BOOST_LIB_TOOLSET
  339. //#endif
  340. #if defined(BOOST_LIB_THREAD_OPT)
  341. # undef BOOST_LIB_THREAD_OPT
  342. #endif
  343. #if defined(BOOST_LIB_RT_OPT)
  344. # undef BOOST_LIB_RT_OPT
  345. #endif
  346. #if defined(BOOST_LIB_LINK_OPT)
  347. # undef BOOST_LIB_LINK_OPT
  348. #endif
  349. #if defined(BOOST_LIB_DEBUG_OPT)
  350. # undef BOOST_LIB_DEBUG_OPT
  351. #endif
  352. #if defined(BOOST_DYN_LINK)
  353. # undef BOOST_DYN_LINK
  354. #endif