forked from boostorg/beast
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
20 lines
597 B
Plaintext
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
|
|
;
|