diff options
author | Hanoh Haim <hhaim@cisco.com> | 2015-09-02 20:30:33 +0300 |
---|---|---|
committer | Hanoh Haim <hhaim@cisco.com> | 2015-09-02 20:30:33 +0300 |
commit | 4ad6ed1716dc917a0b80ddfbbefc43c734eeaab6 (patch) | |
tree | d4b215558ff4c3507a7ba2cda45e5afc3574bb66 /linux | |
parent | 83a53d61c3e7db90637cde90f241f3272ccf3e5a (diff) |
- fix valgrind gtest simulation errors
- remove 32bit sim images for faster dev
Diffstat (limited to 'linux')
-rwxr-xr-x | linux/ws_main.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/ws_main.py b/linux/ws_main.py index dc22be07..5bf9a743 100755 --- a/linux/ws_main.py +++ b/linux/ws_main.py @@ -362,9 +362,9 @@ class build_option: build_types = [ - build_option(name = "bp-sim", src = bp, debug_mode= DEBUG_, platform = PLATFORM_32, is_pie = False), + #build_option(name = "bp-sim", src = bp, debug_mode= DEBUG_, platform = PLATFORM_32, is_pie = False), build_option(name = "bp-sim", src = bp, debug_mode= DEBUG_, platform = PLATFORM_64, is_pie = False), - build_option(name = "bp-sim", src = bp, debug_mode= RELEASE_,platform = PLATFORM_32, is_pie = False), + #build_option(name = "bp-sim", src = bp, debug_mode= RELEASE_,platform = PLATFORM_32, is_pie = False), build_option(name = "bp-sim", src = bp, debug_mode= RELEASE_,platform = PLATFORM_64, is_pie = False), 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'], |