1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/env bash
set -o errexit
set -o pipefail
CXX=${CXX:-c++}
CXX_STANDARD=${CXX_STANDARD:-11}
# Sanity-check that static library macros are set when building against the static library. Users
# don't need to include this section in their projects.
( pkg-config --cflags libbsoncxx-static | grep -- -DBSONCXX_STATIC ) \
|| ( echo "Expected BSONCXX_STATIC to be set" >&2; exit 1 )
rm -rf build/*
cd build
$CXX $CXXFLAGS -Wall -Wextra -Werror -std="c++${CXX_STANDARD}" -c -o hello_bsoncxx.o ../../../hello_bsoncxx.cpp $(pkg-config --cflags libbsoncxx-static)
# TODO: remove `-pthread` once CDRIVER-4776 is resolved.
$CXX $LDFLAGS -pthread -std="c++${CXX_STANDARD}" -o hello_bsoncxx hello_bsoncxx.o $(pkg-config --libs libbsoncxx-static)
./hello_bsoncxx
|