Jamfile.v2 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. # Copyright Oliver Kowalke 2009.
  2. # Distributed under the Boost Software License, Version 1.0.
  3. # (See accompanying file LICENSE_1_0.txt or copy at
  4. # http://www.boost.org/LICENSE_1_0.txt)
  5. # For more information, see http://www.boost.org/
  6. import common ;
  7. import feature ;
  8. import indirect ;
  9. import modules ;
  10. import os ;
  11. import toolset ;
  12. project boost/context/performance/callcc
  13. : requirements
  14. <library>/boost/chrono//boost_chrono
  15. <library>/boost/context//boost_context
  16. <library>/boost/program_options//boost_program_options
  17. <toolset>gcc,<segmented-stacks>on:<cxxflags>-fsplit-stack
  18. <toolset>gcc,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
  19. <toolset>clang,<segmented-stacks>on:<cxxflags>-fsplit-stack
  20. <toolset>clang,<segmented-stacks>on:<cxxflags>-DBOOST_USE_SEGMENTED_STACKS
  21. <link>static
  22. <optimization>speed
  23. <threading>multi
  24. <variant>release
  25. <cxxflags>-DBOOST_DISABLE_ASSERTS
  26. ;
  27. exe performance
  28. : performance.cpp
  29. ;