Skip to content

Commit

Permalink
dpdkstrip: add a preprocessor tool for stripping dpdk blocks
Browse files Browse the repository at this point in the history
Normally, in C code, pre-processing macros can be used to enable/disable
specific functionality based on switches passed to configure.  This works
for DPDK using the --with-dpdk flag, which sets the DPDK_NETDEV define to
the appropriate value.

However, not all files are processed with the C pre-processor.  For those
files which are not, this commit adds a new pre-processor tool for .in
files to either include or exclude those stanzas as appropriate.

Signed-off-by: Aaron Conole <aconole@redhat.com>
Signed-off-by: Russell Bryant <russell@ovn.org>
  • Loading branch information
apconole authored and russellb committed Aug 8, 2017
1 parent 5f17ca8 commit 9bf077b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile.am
Expand Up @@ -82,6 +82,7 @@ EXTRA_DIST = \
build-aux/cksum-schema-check \
build-aux/calculate-schema-cksum \
build-aux/dist-docs \
build-aux/dpdkstrip.pl \
build-aux/sodepends.pl \
build-aux/soexpand.pl \
build-aux/xml2nroff \
Expand Down
35 changes: 35 additions & 0 deletions build-aux/dpdkstrip.pl
@@ -0,0 +1,35 @@
# Copyright (c) 2017 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

use strict;
use warnings;
use Getopt::Long;

my ($check_dpdk) = 0;
my ($disabled_print) = 0;

Getopt::Long::Configure ("bundling");
GetOptions("dpdk!" => \$check_dpdk) or exit(1);

OUTER: while (<STDIN>) {
if (/@(begin|end)_dpdk@/) {
if (!$check_dpdk) {
$disabled_print = ! $disabled_print;
}
next;
}

print $_ unless $disabled_print;
}
exit 0;

0 comments on commit 9bf077b

Please sign in to comment.