fork(1) download
  1. # Copyright 2003, 2005 Douglas Gregor
  2. # Copyright 2004 John Maddock
  3. # Copyright 2002, 2003, 2004, 2007 Vladimir Prus
  4. # Distributed under the Boost Software License, Version 1.0.
  5. # (See accompanying file LICENSE_1_0.txt or http://w...content-available-to-author-only...t.org/LICENSE_1_0.txt)
  6.  
  7. # This file is used to configure your Boost.Build installation. You can modify
  8. # this file in place, or you can place it in a permanent location so that it
  9. # does not get overwritten should you get a new version of Boost.Build. See:
  10. #
  11. # http://w...content-available-to-author-only...t.org/boost-build2/doc/html/bbv2/overview/configuration.html
  12. #
  13. # for documentation about possible permanent locations.
  14.  
  15. # This file specifies which toolsets (C++ compilers), libraries, and other
  16. # tools are available. Often, you should be able to just uncomment existing
  17. # example lines and adjust them to taste. The complete list of supported tools,
  18. # and configuration instructions can be found at:
  19. #
  20. # http://b...content-available-to-author-only...t.org/boost-build2/doc/html/bbv2/reference/tools.html
  21. #
  22.  
  23. # This file uses Jam language syntax to describe available tools. Mostly,
  24. # there are 'using' lines, that contain the name of the used tools, and
  25. # parameters to pass to those tools -- where paremeters are separated by
  26. # semicolons. Important syntax notes:
  27. #
  28. # - Both ':' and ';' must be separated from other tokens by whitespace
  29. # - The '\' symbol is a quote character, so when specifying Windows paths you
  30. # should use '/' or '\\' instead.
  31. #
  32. # More details about the syntax can be found at:
  33. #
  34. # http://b...content-available-to-author-only...t.org/boost-build2/doc/html/bbv2/advanced.html#bbv2.advanced.jam_language
  35. #
  36.  
  37.  
  38. # -------------------
  39. # MSVC configuration.
  40. # -------------------
  41.  
  42. # Configure msvc (default version, searched for in standard locations and PATH).
  43. # using msvc ;
  44.  
  45. # Configure specific msvc version (searched for in standard locations and PATH).
  46. # using msvc : 8.0 ;
  47.  
  48.  
  49. # ----------------------
  50. # Borland configuration.
  51. # ----------------------
  52. # using borland ;
  53.  
  54.  
  55. # ----------------------
  56. # STLPort configuration.
  57. # ----------------------
  58.  
  59. # Configure specifying location of STLPort headers. Libraries must be either
  60. # not needed or available to the compiler by default.
  61. # using stlport : : /usr/include/stlport ;
  62.  
  63. # Configure specifying location of both headers and libraries explicitly.
  64. # using stlport : : /usr/include/stlport /usr/lib ;
  65.  
  66.  
  67. # ------------------
  68. # GCC configuration.
  69. # ------------------
  70.  
  71. # Configure gcc (default version).
  72. using gcc ;
  73.  
  74. # Configure specific gcc version, giving alternative name to use.
  75. using gcc : 4.4 : g++-4.4 ;
  76.  
  77.  
  78.  
  79. # -----------------
  80. # QT configuration.
  81. # -----------------
  82.  
  83. # Configure assuming QTDIR gives the installation prefix.
  84. # using qt ;
  85.  
  86. # Configure with an explicit installation prefix.
  87. # using qt : /usr/opt/qt ;
  88.  
  89. # ---------------------
  90. # Python configuration.
  91. # ---------------------
  92.  
  93. # Configure specific Python version.
  94. using python : 2.7 : /usr/bin/python2 : /usr/include/python2.7 : /usr/lib ;
  95. using python : 3.2 : /usr/bin/python3 : /usr/include/python3.2mu : /usr/lib ;
  96.  
  97.  
  98. # ------------------
  99. # MPI configuration.
  100. # ------------------
  101.  
  102.  
  103.  
  104. # ------------------------
  105. # BoostBook configuration.
  106. # ------------------------
  107. using boostbook
  108. : /usr/share/xml/docbook/xsl-stylesheets-1.76.1
  109. : /usr/share/xml/docbook/xml-dtd-4.5
  110. : /usr/share/boostbook ;
  111.  
  112.  
  113. # ----------------------
  114. # Doxygen configuration.
  115. # ----------------------
  116. using doxygen ;
  117.  
  118.  
  119. # ------------------------
  120. # Quickbook configuration.
  121. # ------------------------
  122. using quickbook ;
  123.  
  124.  
  125. # --------------------
  126. # Extra configuration.
  127. # --------------------
  128.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty