forked from boostorg/beast
websocket: * Move echo server to test/ * Fix warnings * Fix maskgen being uncopyable * Simplify utf8_checker special member declarations * Fix stream move assignable when owning the next layer * Add javadocs for stream special members * Add stream unit tests * Move throwing member definitions to the .ipp file * Use get_lowest_layer in stream declaration * Perform type checks at each call site instead of constructor * Demote close_code to a non-class enum: Otherwise, application specific close codes cannot be assigned without using static_cast. core: * Add streambuf_readstream special members tests * Add move assignment operator to streambuf_readstream * Add detail/get_lowest_layer trait * Add static_string tests * Move static_string from websocket to core
10 lines
312 B
Bash
Executable File
10 lines
312 B
Bash
Executable File
#!/bin/bash -u
|
|
# We use set -e and bash with -u to bail on first non zero exit code of any
|
|
# processes launched or upon any unbound variable
|
|
set -e
|
|
__dirname=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
echo "using toolset: $CC"
|
|
echo "using variant: $VARIANT"
|
|
|
|
$BOOST_ROOT/bjam toolset=$CC variant=$VARIANT
|