1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/bin/sh
#
# Copyright (C) Mellanox Technologies Ltd. 2001-2014. ALL RIGHTS RESERVED.
# Copyright (C) UT-Battelle, LLC. 2014. ALL RIGHTS RESERVED.
# See file LICENSE for terms.
#
#
# UCX build for development.
# Full logging and an runtime checks.
#
basedir=$(cd $(dirname $0) && pwd)
$basedir/../configure \
--enable-gtest \
--enable-examples \
--with-valgrind \
--enable-profiling \
--enable-frame-pointer \
--enable-stats \
--enable-fault-injection \
--enable-debug-data \
--enable-mt \
"$@"
|