diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-10-04 18:44:36 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-10-26 17:12:34 +0100 | 
| commit | 89cb86aeb0262e17ee39c1d791effe9515bd0dc8 (patch) | |
| tree | a1643fa620a97ffdc2da9442abd7cff29d86e434 /isisd/subdir.am | |
| parent | 695f387ed872c1bc55ad4149ede95465b48697b9 (diff) | |
build, vtysh: extract vtysh commands from .xref
Rather than running selected source files through the preprocessor and a
bunch of perl regex'ing to get the list of all DEFUNs, use the data
collected in frr.xref.
This not only eliminates issues we've been having with preprocessor
failures due to nonexistent header files, but is also much faster.
Where extract.pl would take 5s, this now finishes in 0.2s.  And since
this is a non-parallelizable build step towards the end of the build
(dependent on a lot of other things being done already), the speedup is
actually noticeable.
Also files containing CLI no longer need to be listed in `vtysh_scan`
since the .xref data covers everything.  `#ifndef VTYSH_EXTRACT_PL`
checks are equally obsolete.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'isisd/subdir.am')
| -rw-r--r-- | isisd/subdir.am | 22 | 
1 files changed, 0 insertions, 22 deletions
diff --git a/isisd/subdir.am b/isisd/subdir.am index 3e5816c16b..dabf6a925e 100644 --- a/isisd/subdir.am +++ b/isisd/subdir.am @@ -5,16 +5,6 @@  if ISISD  noinst_LIBRARIES += isisd/libisis.a  sbin_PROGRAMS += isisd/isisd -vtysh_scan += \ -	isisd/isis_cli.c \ -	isisd/isis_ldp_sync.c \ -	isisd/isis_redist.c \ -	isisd/isis_spf.c \ -	isisd/isis_te.c \ -	isisd/isis_sr.c \ -	isisd/isis_vty_fabricd.c \ -	isisd/isisd.c \ -	# end  vtysh_daemons += isisd  if SNMP  module_LTLIBRARIES += isisd/isisd_snmp.la @@ -25,18 +15,6 @@ endif  if FABRICD  noinst_LIBRARIES += isisd/libfabric.a  sbin_PROGRAMS += isisd/fabricd -if !ISISD -vtysh_scan += \ -	isisd/isis_cli.c \ -	isisd/isis_ldp_sync.c \ -	isisd/isis_redist.c \ -	isisd/isis_spf.c \ -	isisd/isis_te.c \ -	isisd/isis_sr.c \ -	isisd/isis_vty_fabricd.c \ -	isisd/isisd.c \ -	# end -endif  vtysh_daemons += fabricd  endif  | 
