early-access version 3088

This commit is contained in:
pineappleEA
2022-11-05 15:35:56 +01:00
parent 4e4fc25ce3
commit b601909c6d
35519 changed files with 5996896 additions and 860 deletions

View File

@@ -0,0 +1,25 @@
# Build and install benchmark programs
# Copyright Beman Dawes 2013
# Distributed under the Boost Software License, Version 1.0.
# See www.boost.org/LICENSE_1_0.txt
project
: source-location ../test : requirements
<toolset>msvc:<asynch-exceptions>on
<library>/boost/timer//boost_timer
;
SOURCES = speed_test speed_test_functions ;
exe "speed_test"
: $(SOURCES).cpp
: <toolset>gcc:<cxxflags>-march=native
;
exe "loop_time_test"
: loop_time_test.cpp
: <toolset>gcc:<cxxflags>-march=native
;
install bin : speed_test loop_time_test ;

View File

@@ -0,0 +1,12 @@
b2 -a toolset=msvc-14.0 variant=release link=static address-model=64
bin\loop_time_test 1000 >msvc-loop-time.html
msvc-loop-time.html
echo The GCC static build does not work on Windows, probably because of a bjam/b2 bug
b2 -a toolset=gcc-c++11 variant=release link=static address-model=64
bin\loop_time_test 1000 >gcc-loop-time.html
gcc-loop-time.html
rem Copyright Beman Dawes 2015
rem Distributed under the Boost Software License, Version 1.0.
rem See www.boost.org/LICENSE_1_0.txt