aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-02-18 13:02:02 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-02-18 13:02:02 +0200
commit2364f5cb43fa7c14f95304c432b6e215e158c224 (patch)
tree23fba2b96e71cc436035219cb1c03df6fa064eca
parentff450b1336c1fc741693d51ed16754311aaa1783 (diff)
Add support for building with build2
-rw-r--r--.gitignore18
-rw-r--r--README-GIT5
-rw-r--r--build/bootstrap.build11
-rw-r--r--build/export.build10
-rw-r--r--build/root.build18
-rw-r--r--buildfile10
-rw-r--r--manifest21
-rw-r--r--odb/boost/buildfile81
-rw-r--r--odb/boost/details/build2/config-stub.h6
-rw-r--r--odb/boost/details/build2/config-vc-stub.h6
-rw-r--r--odb/boost/details/build2/config-vc.h16
-rw-r--r--odb/boost/details/build2/config.h18
-rw-r--r--odb/boost/details/config-vc.h6
-rw-r--r--odb/boost/details/config.hxx11
-rw-r--r--odb/boost/details/export.hxx39
-rw-r--r--odb/boost/makefile2
-rw-r--r--odb/boost/version-build2-stub.hxx5
-rw-r--r--odb/boost/version-build2.hxx0
-rw-r--r--odb/boost/version-build2.hxx.in44
-rw-r--r--odb/boost/version.hxx11
-rw-r--r--repositories.manifest6
-rw-r--r--tests/basics/buildfile7
-rw-r--r--tests/basics/driver.cxx23
-rw-r--r--tests/build/bootstrap.build9
-rw-r--r--tests/build/root.build24
-rw-r--r--tests/buildfile5
26 files changed, 406 insertions, 6 deletions
diff --git a/.gitignore b/.gitignore
index 3b9998d..3004ad1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,25 @@
+.bdep/
+
# Compiler/linker output.
#
+*.d
+*.t
+*.i
+*.ii
*.o
-*.o.d
+*.obj
*.so
+*.dll
*.a
+*.lib
+*.exp
+*.pdb
+*.ilk
+*.exe
+*.exe.dlls/
+*.exe.manifest
+*.pc
+
*.l
*.l.cpp-options
diff --git a/README-GIT b/README-GIT
new file mode 100644
index 0000000..369a134
--- /dev/null
+++ b/README-GIT
@@ -0,0 +1,5 @@
+The checked out odb/boost/version-build2.hxx will be overwritten during the
+build process but these changes should be ignored. To do this automatically,
+run:
+
+git update-index --assume-unchanged odb/boost/version-build2.hxx
diff --git a/build/bootstrap.build b/build/bootstrap.build
new file mode 100644
index 0000000..f8fb71f
--- /dev/null
+++ b/build/bootstrap.build
@@ -0,0 +1,11 @@
+# file : build/bootstrap.build
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+project = libodb-boost
+
+using version
+using config
+using dist
+using test
+using install
diff --git a/build/export.build b/build/export.build
new file mode 100644
index 0000000..f6268aa
--- /dev/null
+++ b/build/export.build
@@ -0,0 +1,10 @@
+# file : build/export.build
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+$out_root/
+{
+ include odb/boost/
+}
+
+export $out_root/odb/boost/lib{odb-boost}
diff --git a/build/root.build b/build/root.build
new file mode 100644
index 0000000..697f33c
--- /dev/null
+++ b/build/root.build
@@ -0,0 +1,18 @@
+# file : build/root.build
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+cxx.std = 11
+
+using cxx
+
+hxx{*}: extension = hxx
+ixx{*}: extension = ixx
+txx{*}: extension = txx
+cxx{*}: extension = cxx
+
+if ($cxx.class == 'msvc')
+{
+ cxx.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS
+ cxx.coptions += /wd4251 /wd4275 /wd4800
+}
diff --git a/buildfile b/buildfile
new file mode 100644
index 0000000..7a3f443
--- /dev/null
+++ b/buildfile
@@ -0,0 +1,10 @@
+# file : buildfile
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+./: {*/ -build/ -m4/} doc{INSTALL LICENSE NEWS README} manifest
+
+# Don't install tests or the INSTALL file.
+#
+tests/: install = false
+doc{INSTALL}@./: install = false
diff --git a/manifest b/manifest
new file mode 100644
index 0000000..d9262b3
--- /dev/null
+++ b/manifest
@@ -0,0 +1,21 @@
+: 1
+name: libodb-boost
+version: 2.5.0-b.10.z
+project: odb
+summary: Boost ODB profile library
+license: GPLv2
+license: proprietary
+tags: boost, c++, orm, database, relational, object, persistence, sql
+description-file: README
+changes-file: NEWS
+url: https://www.codesynthesis.com/products/odb/
+doc-url: https://www.codesynthesis.com/products/odb/doc/manual.xhtml
+src-url: https://git.codesynthesis.com/cgit/odb/libodb-boost/
+email: odb-users@codesynthesis.com
+build-email: odb-builds@codesynthesis.com
+#builds: all
+requires: c++11
+requires: libboost ; Requires not yet packaged libboost.
+depends: * build2 >= 0.8.0-
+depends: * bpkg >= 0.8.0-
+depends: libodb [2.5.0-b.10.1 2.5.0-b.11)
diff --git a/odb/boost/buildfile b/odb/boost/buildfile
new file mode 100644
index 0000000..c33b743
--- /dev/null
+++ b/odb/boost/buildfile
@@ -0,0 +1,81 @@
+# file : odb/boost/buildfile
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+../
+{
+ define options: file
+ options{*}: extension = options
+
+ # Install into the odb/boost/ subdirectory of, say, /usr/include/ recreating
+ # subdirectories.
+ #
+ {hxx ixx txx options}{*}: install = include/odb/
+ {hxx ixx txx options}{*}: install.subdirs = true
+
+ boost/
+ {
+ import int_libs = libodb%lib{odb}
+ imp_libs =
+
+ lib{odb-boost}: {hxx ixx txx cxx}{** -version-build2} {hxx}{version-build2} \
+ details/build2/{h}{*} \
+ options{**} ../options{boost} \
+ $imp_libs $int_libs
+
+ # Include the generated version header into the distribution (so that we
+ # don't pick up an installed one) and don't remove it when cleaning in src
+ # (so that clean results in a state identical to distributed).
+ #
+ hxx{version-build2}: in{version-build2} $src_root/manifest
+ hxx{version-build2}: dist = true
+ hxx{version-build2}: clean = ($src_root != $out_root)
+
+ # For pre-releases use the complete version to make sure they cannot be used
+ # in place of another pre-release or the final version.
+ #
+ if $version.pre_release
+ lib{odb-boost}: bin.lib.version = @"-$version.project_id"
+ else
+ lib{odb-boost}: bin.lib.version = @"-$version.major.$version.minor"
+
+ cxx.poptions =+ "-I$out_root" "-I$src_root" -DLIBODB_BOOST_BUILD2
+ obja{*}: cxx.poptions += -DLIBODB_BOOST_STATIC_BUILD
+ objs{*}: cxx.poptions += -DLIBODB_BOOST_SHARED_BUILD
+
+ lib{odb-boost}: cxx.export.poptions = "-I$out_root" "-I$src_root" \
+ -DLIBODB_BOOST_BUILD2
+
+ liba{odb-boost}: cxx.export.poptions += -DLIBODB_BOOST_STATIC
+ libs{odb-boost}: cxx.export.poptions += -DLIBODB_BOOST_SHARED
+
+ lib{odb-boost}: cxx.export.libs = $int_libs
+
+ # Installation tweaks.
+ #
+ install_include = [dir_path] include/odb/boost/
+
+ # We want these to be picked up whether LIBODB_BOOST_BUILD2 is defined or
+ # not.
+ #
+ hxx{version}@./: install = false
+ hxx{version-build2}: install = $install_include/version.hxx
+ hxx{version-build2-stub}@./: install = $install_include/version-build2.hxx
+
+ details/build2/
+ {
+ h{*}: install = false
+
+ if ($cxx.class == 'msvc')
+ {
+ h{config-vc}@./: install = $install_include/details/
+ h{config-vc-stub}@./: install = $install_include/details/build2/config-vc.h
+ }
+ else
+ {
+ h{config}@./: install = $install_include/details/
+ h{config-stub}@./: install = $install_include/details/build2/config.h
+ }
+ }
+ }
+}
diff --git a/odb/boost/details/build2/config-stub.h b/odb/boost/details/build2/config-stub.h
new file mode 100644
index 0000000..0b03d9b
--- /dev/null
+++ b/odb/boost/details/build2/config-stub.h
@@ -0,0 +1,6 @@
+/* file : odb/boost/details/build2/config-stub.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+#include <odb/boost/details/config.h>
diff --git a/odb/boost/details/build2/config-vc-stub.h b/odb/boost/details/build2/config-vc-stub.h
new file mode 100644
index 0000000..541cfba
--- /dev/null
+++ b/odb/boost/details/build2/config-vc-stub.h
@@ -0,0 +1,6 @@
+/* file : odb/boost/details/build2/config-vc-stub.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+#include <odb/boost/details/config-vc.h>
diff --git a/odb/boost/details/build2/config-vc.h b/odb/boost/details/build2/config-vc.h
new file mode 100644
index 0000000..568c517
--- /dev/null
+++ b/odb/boost/details/build2/config-vc.h
@@ -0,0 +1,16 @@
+/* file : odb/boost/details/build2/config-vc.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+/* Configuration file for Windows/VC++ for the build2 build. */
+
+#ifndef ODB_BOOST_DETAILS_CONFIG_VC_H
+#define ODB_BOOST_DETAILS_CONFIG_VC_H
+
+/* Define LIBODB_BOOST_BUILD2 for the installed case. */
+#ifndef LIBODB_BOOST_BUILD2
+# define LIBODB_BOOST_BUILD2
+#endif
+
+#endif /* ODB_BOOST_DETAILS_CONFIG_VC_H */
diff --git a/odb/boost/details/build2/config.h b/odb/boost/details/build2/config.h
new file mode 100644
index 0000000..7de8128
--- /dev/null
+++ b/odb/boost/details/build2/config.h
@@ -0,0 +1,18 @@
+/* file : odb/boost/details/build2/config.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+/* Static configuration file for the build2 build. The installed case
+ (when LIBODB_BOOST_BUILD2 is not necessarily defined) is the only
+ reason we have it. */
+
+#ifndef ODB_BOOST_DETAILS_CONFIG_H
+#define ODB_BOOST_DETAILS_CONFIG_H
+
+/* Define LIBODB_BOOST_BUILD2 for the installed case. */
+#ifndef LIBODB_BOOST_BUILD2
+# define LIBODB_BOOST_BUILD2
+#endif
+
+#endif /* ODB_BOOST_DETAILS_CONFIG_H */
diff --git a/odb/boost/details/config-vc.h b/odb/boost/details/config-vc.h
new file mode 100644
index 0000000..4212314
--- /dev/null
+++ b/odb/boost/details/config-vc.h
@@ -0,0 +1,6 @@
+/* file : odb/boost/details/config-vc.h
+ * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+ * license : GNU GPL v2; see accompanying LICENSE file
+ */
+
+/* Dummy configuration file for Windows/VC++. */
diff --git a/odb/boost/details/config.hxx b/odb/boost/details/config.hxx
index bc9db32..a637f44 100644
--- a/odb/boost/details/config.hxx
+++ b/odb/boost/details/config.hxx
@@ -7,11 +7,14 @@
// no pre
-#ifdef _MSC_VER
-#elif defined(ODB_COMPILER)
+#ifdef ODB_COMPILER
# define LIBODB_BOOST_STATIC_LIB
-#else
-# include <odb/boost/details/config.h>
+#elif !defined(LIBODB_BOOST_BUILD2)
+# ifdef _MSC_VER
+# include <odb/boost/details/config-vc.h>
+# else
+# include <odb/boost/details/config.h>
+# endif
#endif
// no post
diff --git a/odb/boost/details/export.hxx b/odb/boost/details/export.hxx
index b5d4282..9b96a30 100644
--- a/odb/boost/details/export.hxx
+++ b/odb/boost/details/export.hxx
@@ -9,6 +9,43 @@
#include <odb/boost/details/config.hxx>
+// Normally we don't export class templates (but do complete specializations),
+// inline functions, and classes with only inline member functions. Exporting
+// classes that inherit from non-exported/imported bases (e.g., std::string)
+// will end up badly. The only known workarounds are to not inherit or to not
+// export. Also, MinGW GCC doesn't like seeing non-exported function being
+// used before their inline definition. The workaround is to reorder code. In
+// the end it's all trial and error.
+
+#ifdef LIBODB_BOOST_BUILD2
+
+#if defined(LIBODB_BOOST_STATIC) // Using static.
+# define LIBODB_BOOST_EXPORT
+#elif defined(LIBODB_BOOST_STATIC_BUILD) // Building static.
+# define LIBODB_BOOST_EXPORT
+#elif defined(LIBODB_BOOST_SHARED) // Using shared.
+# ifdef _WIN32
+# define LIBODB_BOOST_EXPORT __declspec(dllimport)
+# else
+# define LIBODB_BOOST_EXPORT
+# endif
+#elif defined(LIBODB_BOOST_SHARED_BUILD) // Building shared.
+# ifdef _WIN32
+# define LIBODB_BOOST_EXPORT __declspec(dllexport)
+# else
+# define LIBODB_BOOST_EXPORT
+# endif
+#else
+// If none of the above macros are defined, then we assume we are being used
+// by some third-party build system that cannot/doesn't signal the library
+// type. Note that this fallback works for both static and shared but in case
+// of shared will be sub-optimal compared to having dllimport.
+//
+# define LIBODB_BOOST_EXPORT // Using static or shared.
+#endif
+
+#else // LIBODB_BOOST_BUILD2
+
#ifdef LIBODB_BOOST_STATIC_LIB
# define LIBODB_BOOST_EXPORT
#else
@@ -35,6 +72,8 @@
# endif
#endif
+#endif // LIBODB_BOOST_BUILD2
+
#include <odb/post.hxx>
#endif // ODB_BOOST_DETAILS_EXPORT_HXX
diff --git a/odb/boost/makefile b/odb/boost/makefile
index de96ae6..f6f7227 100644
--- a/odb/boost/makefile
+++ b/odb/boost/makefile
@@ -63,7 +63,7 @@ $(dist): export interface_version = $(shell sed -e \
's/^\([0-9]*\.[0-9]*\).*/\1/' $(src_root)/version)
$(dist):
- $(call dist-data,$(sources) $(headers) $(options) details/config.h.in)
+ $(call dist-data,$(sources) $(headers) $(options) details/config.h.in details/config-vc.h)
$(call meta-vc8proj,$(src_base)/libodb-boost-vc8.vcproj)
$(call meta-vc9proj,$(src_base)/libodb-boost-vc9.vcproj)
$(call meta-vc10proj,$(src_base)/libodb-boost-vc10.vcxproj)
diff --git a/odb/boost/version-build2-stub.hxx b/odb/boost/version-build2-stub.hxx
new file mode 100644
index 0000000..ee73abc
--- /dev/null
+++ b/odb/boost/version-build2-stub.hxx
@@ -0,0 +1,5 @@
+// file : odb/boost/version-build2-stub.hxx
+// copyright : Copyright (c) 2005-2019 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <odb/boost/version.hxx>
diff --git a/odb/boost/version-build2.hxx b/odb/boost/version-build2.hxx
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/odb/boost/version-build2.hxx
diff --git a/odb/boost/version-build2.hxx.in b/odb/boost/version-build2.hxx.in
new file mode 100644
index 0000000..de844f9
--- /dev/null
+++ b/odb/boost/version-build2.hxx.in
@@ -0,0 +1,44 @@
+// file : odb/boost/version-build2.hxx.in
+// copyright : Copyright (c) 2005-2019 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#ifndef LIBODB_BOOST_VERSION // Note: using the version macro itself.
+
+// Note: using build2 standard versioning scheme. The numeric version format
+// is AAABBBCCCDDDE where:
+//
+// AAA - major version number
+// BBB - minor version number
+// CCC - bugfix version number
+// DDD - alpha / beta (DDD + 500) version number
+// E - final (0) / snapshot (1)
+//
+// When DDDE is not 0, 1 is subtracted from AAABBBCCC. For example:
+//
+// Version AAABBBCCCDDDE
+//
+// 0.1.0 0000010000000
+// 0.1.2 0000010010000
+// 1.2.3 0010020030000
+// 2.2.0-a.1 0020019990010
+// 3.0.0-b.2 0029999995020
+// 2.2.0-a.1.z 0020019990011
+//
+#define LIBODB_BOOST_VERSION $libodb_boost.version.project_number$ULL
+#define LIBODB_BOOST_VERSION_STR "$libodb_boost.version.project$"
+#define LIBODB_BOOST_VERSION_ID "$libodb_boost.version.project_id$"
+
+#define LIBODB_BOOST_VERSION_MAJOR $libodb_boost.version.major$
+#define LIBODB_BOOST_VERSION_MINOR $libodb_boost.version.minor$
+#define LIBODB_BOOST_VERSION_PATCH $libodb_boost.version.patch$
+
+#define LIBODB_BOOST_PRE_RELEASE $libodb_boost.version.pre_release$
+
+#define LIBODB_BOOST_SNAPSHOT $libodb_boost.version.snapshot_sn$ULL
+#define LIBODB_BOOST_SNAPSHOT_ID "$libodb_boost.version.snapshot_id$"
+
+#include <odb/version.hxx>
+
+$libodb.check(LIBODB_VERSION, LIBODB_SNAPSHOT)$
+
+#endif // LIBODB_BOOST_VERSION
diff --git a/odb/boost/version.hxx b/odb/boost/version.hxx
index 648fb44..988fae7 100644
--- a/odb/boost/version.hxx
+++ b/odb/boost/version.hxx
@@ -2,6 +2,16 @@
// copyright : Copyright (c) 2005-2019 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
+#ifdef LIBODB_BOOST_BUILD2
+# include <odb/boost/version-build2.hxx>
+
+// @@ TODO: need to derive automatically (it is also hardcoded in *.options).
+//
+#define ODB_BOOST_VERSION 2046000
+#define ODB_BOOST_VERSION_STR "2.5.0-b.10"
+
+#else
+
#ifndef ODB_BOOST_VERSION_HXX
#define ODB_BOOST_VERSION_HXX
@@ -49,3 +59,4 @@
#include <odb/post.hxx>
#endif // ODB_BOOST_VERSION_HXX
+#endif // LIBODB_BOOST_BUILD2
diff --git a/repositories.manifest b/repositories.manifest
new file mode 100644
index 0000000..c788e9b
--- /dev/null
+++ b/repositories.manifest
@@ -0,0 +1,6 @@
+: 1
+summary: Boost ODB profile library repository
+
+:
+role: prerequisite
+location: ../libodb.git##HEAD
diff --git a/tests/basics/buildfile b/tests/basics/buildfile
new file mode 100644
index 0000000..f3a74bd
--- /dev/null
+++ b/tests/basics/buildfile
@@ -0,0 +1,7 @@
+# file : tests/basics/buildfile
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+import libs = libodb-boost%lib{odb-boost}
+
+exe{driver}: {hxx cxx}{*} $libs
diff --git a/tests/basics/driver.cxx b/tests/basics/driver.cxx
new file mode 100644
index 0000000..d8a1d7c
--- /dev/null
+++ b/tests/basics/driver.cxx
@@ -0,0 +1,23 @@
+// file : tests/basics/driver.cxx
+// copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+// Basic test to make sure the library is usable. Functionality testing
+// is done in the odb-tests package.
+
+#include <odb/boost/exception.hxx>
+#include <odb/boost/date-time/exceptions.hxx>
+
+using namespace odb;
+
+int
+main ()
+{
+ try
+ {
+ throw boost::date_time::value_out_of_range ();
+ }
+ catch (const boost::exception&)
+ {
+ }
+}
diff --git a/tests/build/bootstrap.build b/tests/build/bootstrap.build
new file mode 100644
index 0000000..c5c067b
--- /dev/null
+++ b/tests/build/bootstrap.build
@@ -0,0 +1,9 @@
+# file : tests/build/bootstrap.build
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+project = # Unnamed subproject.
+
+using config
+using dist
+using test
diff --git a/tests/build/root.build b/tests/build/root.build
new file mode 100644
index 0000000..ac9d361
--- /dev/null
+++ b/tests/build/root.build
@@ -0,0 +1,24 @@
+# file : tests/build/root.build
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+cxx.std = 11
+
+using cxx
+
+hxx{*}: extension = hxx
+cxx{*}: extension = cxx
+
+if ($cxx.class == 'msvc')
+{
+ cxx.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS
+ cxx.coptions += /wd4251 /wd4275 /wd4800
+}
+
+# Every exe{} in this subproject is by default a test.
+#
+exe{*}: test = true
+
+# Specify the test target for cross-testing.
+#
+test.target = $cxx.target
diff --git a/tests/buildfile b/tests/buildfile
new file mode 100644
index 0000000..3614001
--- /dev/null
+++ b/tests/buildfile
@@ -0,0 +1,5 @@
+# file : tests/buildfile
+# copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+./: {*/ -build/}