# # Copyright John Maddock 2008. # Use, modification and distribution are subject to the # Boost Software License, Version 1.0. (See accompanying file # LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) # # If you need to alter build preferences then set them in # the template defined in options_v2.jam. # import modules ; local is_unix = [ modules.peek : UNIX ] ; if $(is_unix) { local osname = [ SHELL uname ] ; switch $(osname) { case "Sun*" : OTHERFLAGS = "-lpthread -lrt" ; case "*BSD*" : OTHERFLAGS = "-lpthread" ; } } test-suite config : [ compile config_test_c.c ] [ run config_test.cpp : #args : #input-files : #requirements multi : config_test_threaded ] [ run config_test.cpp : #args : #input-files : #requirements single msvc:static msvc:static linux:-lpthread linux:-lrt gcc:$(OTHERFLAGS) ] [ run config_info.cpp : : : always_show_run_output single msvc:static msvc:static ] [ run config_info.cpp : : : always_show_run_output multi : config_info_threaded ] [ run math_info.cpp : : : always_show_run_output borland:static borland:static ] [ run abi/abi_test.cpp abi/main.cpp ] [ run limits_test.cpp ../../test/build//boost_test_exec_monitor ] [ run link/main.cpp link//link_test : #args : #input-files : #requirements shared BOOST_DYN_LINK=1 BOOST_CONFIG_NO_LIB=1 : config_link_test ] [ compile-fail threads/test_thread_fail1.cpp ] [ compile-fail threads/test_thread_fail2.cpp ] ;