summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/check_build
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:45:59 +0000
commit19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch)
tree42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/boost/tools/check_build
parentInitial commit. (diff)
downloadceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.tar.xz
ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.zip
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/tools/check_build')
-rw-r--r--src/boost/tools/check_build/README.md3
-rw-r--r--src/boost/tools/check_build/test/Jamfile91
-rw-r--r--src/boost/tools/check_build/test/main.cpp3
3 files changed, 97 insertions, 0 deletions
diff --git a/src/boost/tools/check_build/README.md b/src/boost/tools/check_build/README.md
new file mode 100644
index 000000000..bb5f25575
--- /dev/null
+++ b/src/boost/tools/check_build/README.md
@@ -0,0 +1,3 @@
+# check_build
+
+A utility submodule that, for each buildable Boost library, creates a test that builds the library.
diff --git a/src/boost/tools/check_build/test/Jamfile b/src/boost/tools/check_build/test/Jamfile
new file mode 100644
index 000000000..6424a4089
--- /dev/null
+++ b/src/boost/tools/check_build/test/Jamfile
@@ -0,0 +1,91 @@
+# Copyright 2017 Peter Dimov
+#
+# Distributed under the Boost Software License, Version 1.0.
+# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
+
+import modules ;
+import sequence ;
+import set ;
+import project ;
+import virtual-target ;
+import testing ;
+import ac ;
+
+project : requirements -<link>static ; # from tools/Jamfile
+
+if "--debug-check-build" in [ modules.peek : ARGV ]
+{
+ .info-enabled = 1 ;
+}
+
+local rule .info ( messages * )
+{
+ if $(.info-enabled)
+ {
+ ECHO "info:" $(messages) ;
+ }
+}
+
+local all-libraries = [ MATCH .*libs/(.*)/build/.* :
+ [ glob ../../../libs/*/build/Jamfile.v2 ]
+ [ glob ../../../libs/*/build/Jamfile ] ] ;
+
+all-libraries = [ sequence.unique $(all-libraries) ] ;
+
+# The function_types library has a Jamfile, but it's used for maintenance
+# purposes, there's no library to build and install.
+
+all-libraries = [ set.difference $(all-libraries) : function_types ] ;
+
+#ECHO all-libraries: $(all-libraries) ;
+
+rule alias-sources-impl ( project name : property-set : sources * )
+{
+ local target-graph ;
+
+ for local s in $(sources)
+ {
+ target-graph += [ virtual-target.traverse $(s) : include-sources : include-roots ] ;
+ }
+
+ # Remove targets created by the main target
+
+ local result ;
+
+ for local t in $(target-graph)
+ {
+ if [ $(t).root ] && ! ( $(t) in $(sources) ) && ( [ $(t).type ] = STATIC_LIB || [ $(t).type ] = SHARED_LIB )
+ {
+ result += $(t) ;
+ }
+ }
+
+ .info "$(name):" ;
+
+ for local t in $(result)
+ {
+ .info " " [ $(t).name ] ;
+ }
+
+ return $(result) ;
+}
+
+path-constant ROOT : ../../.. ;
+
+for local lib in $(all-libraries)
+{
+ local path = [ NORMALIZE_PATH /$(ROOT)/libs/$(lib)/build ] ;
+ generate library-$(lib) : $(path)//stage : <generating-rule>@alias-sources-impl ;
+}
+
+for local lib in $(all-libraries)
+{
+ local python-dep ;
+
+ if $(lib) in python mpi graph_parallel
+ {
+ python-dep = /python//python ;
+ }
+
+ run main.cpp : : : [ ac.check-library library-$(lib) : <library>library-$(lib) <library>$(python-dep) : <build>no ] : $(lib) ;
+}
diff --git a/src/boost/tools/check_build/test/main.cpp b/src/boost/tools/check_build/test/main.cpp
new file mode 100644
index 000000000..5047a34e3
--- /dev/null
+++ b/src/boost/tools/check_build/test/main.cpp
@@ -0,0 +1,3 @@
+int main()
+{
+}