Files
boost_beast/example/http/server/fast/Jamfile
Vinnie Falco 82e87ea188 Workaround for http-server-fast and libstdc++:
This fixes a problem where libstdc++ incorrectly assumes that the
allocator used with basic_string is DefaultConstructible.

See: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=56437
2018-09-23 19:08:30 -07:00

20 lines
597 B
Plaintext

#
# Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
#
# Distributed under 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)
#
# Official repository: https://github.com/boostorg/beast
#
# VFALCO _GLIBCXX_USE_CXX11_ABI is to work around
# a bug in libg++8 where it attempts to default-construct
# the allocator (even when it is not default constructible)
exe http-server-fast :
http_server_fast.cpp
:
<variant>coverage:<build>no
<variant>ubasan:<build>no
;