diff options
author | Hanoh Haim <hhaim@cisco.com> | 2015-11-11 15:37:46 +0200 |
---|---|---|
committer | Hanoh Haim <hhaim@cisco.com> | 2015-11-11 15:37:46 +0200 |
commit | cc352e04fd45913132f3e1ddc86d88571c926879 (patch) | |
tree | 7d295ea1a2d68ec7587781a7567d3e17997d4eba /linux | |
parent | d04fb533c0843ebcd3eac5fbefa6f418582db7fc (diff) |
add first stl test and cleanup valgrind
Diffstat (limited to 'linux')
-rwxr-xr-x | linux/ws_main.py | 19 |
1 files changed, 14 insertions, 5 deletions
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'], |