From cc352e04fd45913132f3e1ddc86d88571c926879 Mon Sep 17 00:00:00 2001 From: Hanoh Haim Date: Wed, 11 Nov 2015 15:37:46 +0200 Subject: add first stl test and cleanup valgrind --- linux/ws_main.py | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) (limited to 'linux') diff --git a/linux/ws_main.py b/linux/ws_main.py index d020411a..65ca4522 100755 --- a/linux/ws_main.py +++ b/linux/ws_main.py @@ -238,9 +238,15 @@ bp =SrcGroups([ bp_sim_gtest, main_src, cmn_src , + net_src , yaml_src, - bp_hack_for_compile, + json_src, + stateless_src, + rpc_server_src + #rpc_server_mock_src, + + #bp_hack_for_compile, ]); @@ -393,10 +399,13 @@ class build_option: build_types = [ - build_option(name = "bp-sim", src = bp, debug_mode= DEBUG_, platform = PLATFORM_64, is_pie = False, - flags = ['-Wall', '-Werror', '-Wno-sign-compare', '-Wno-strict-aliasing']), - build_option(name = "bp-sim", src = bp, debug_mode= RELEASE_,platform = PLATFORM_64, is_pie = False, - flags = ['-Wall', '-Werror', '-Wno-sign-compare', '-Wno-strict-aliasing']), + build_option(name = "bp-sim", src = bp, use = ['zmq'],debug_mode= DEBUG_, platform = PLATFORM_64, is_pie = False, + flags = ['-Wall', '-Werror', '-Wno-sign-compare', '-Wno-strict-aliasing'], + rpath = ['.']), + + build_option(name = "bp-sim", src = bp, use = ['zmq'],debug_mode= RELEASE_,platform = PLATFORM_64, is_pie = False, + flags = ['-Wall', '-Werror', '-Wno-sign-compare', '-Wno-strict-aliasing'], + rpath = ['.']), build_option(name = "mock-rpc-server", use = ['zmq'], src = rpc_server_mock, debug_mode= DEBUG_,platform = PLATFORM_64, is_pie = False, flags = ['-DTREX_RPC_MOCK_SERVER', '-Wall', '-Werror', '-Wno-sign-compare'], -- cgit 1.2.3-korg