diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-05-16 15:53:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-16 15:53:12 +0200 |
commit | 07dfa57d9bdbb700b534035d297ba3a989bd1687 (patch) | |
tree | 27d1a87458a217abcdfff84c02dbf0e564e22617 /doc | |
parent | Merge pull request #4341 from donaldsharp/bgp_attr_should_actually_compile (diff) | |
parent | doc/developer: topotest now compile should now enable sharpd, alos care most ... (diff) | |
download | frr-07dfa57d9bdbb700b534035d297ba3a989bd1687.tar.xz frr-07dfa57d9bdbb700b534035d297ba3a989bd1687.zip |
Merge pull request #4316 from LabNConsulting/working/master/tt-scale-vrfs
bgp_l3vpn_to_bgp_vrf: test adding/removing 50K*2CEs VRF routes
Diffstat (limited to 'doc')
-rw-r--r-- | doc/developer/topotests.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/developer/topotests.rst b/doc/developer/topotests.rst index 1e165a244..09f12ec43 100644 --- a/doc/developer/topotests.rst +++ b/doc/developer/topotests.rst @@ -189,13 +189,12 @@ If found, then this is added with context (calling test) to Compiling for GCC AddressSanitizer requires to use ``gcc`` as a linker as well (instead of ``ld``). Here is a suggest way to compile frr with AddressSanitizer -for ``stable/3.0`` branch: +for ``master`` branch: .. code:: shell git clone https://github.com/FRRouting/frr.git cd frr - git checkout stable/3.0 ./bootstrap.sh export CC=gcc export CFLAGS="-O1 -g -fsanitize=address -fno-omit-frame-pointer" @@ -208,7 +207,8 @@ for ``stable/3.0`` branch: --enable-exampledir=/usr/lib/frr/examples \ --with-moduledir=/usr/lib/frr/modules \ --enable-multipath=0 --enable-rtadv \ - --enable-tcp-zebra --enable-fpm --enable-pimd + --enable-tcp-zebra --enable-fpm --enable-pimd \ + --enable-sharpd make sudo make install # Create symlink for vtysh, so topotest finds it in /usr/lib/frr |