Thanks for all the comments...... will implement......
On 04/09/2013 01:05 PM, Paolo Bonzini wrote:
Il 09/04/2013 05:04, [email protected] ha scritto:+if test "$rdma" = "yes" ; then + cat > $TMPC <<EOF +#include <rdma/rdma_cma.h> +int main(void) { return 0; } +EOF + rdma_libs="-lrdmacm -libverbs" + if ! compile_prog "" "$rdma_libs" ; then + feature_not_found "rdma" + fi +Please enable this by default, or it will bitrot. The test should be like this: if test "$rdma" != "no" ; then cat > $TMPC << EOF ... EOF rdma_libs="-lrdmacm -libverbs" if compile_prog "-Werror" "$rdma_libs" ; then rdma="yes" libs_softmmu="$libs_softmmu $rdma_libs" else if test "$rdma" = "yes" ; then feature_not_found "rdma" fi rdma="no" fi fi ... if test "$rdma" = "yes" ; then echo "CONFIG_RDMA=y" >> $config_host_mak fi
