diff options
author | 2016-02-26 13:46:57 +0100 | |
---|---|---|
committer | 2016-02-26 19:48:10 +0100 | |
commit | 308fb98220633e29c7cd7f54e9d7d64ef3f066f8 (patch) | |
tree | c139ee831c08957412d1a792d5c580801c9e1061 /vpp | |
parent | e936bbe5945ca3c0f522f6c0abdfbdaa407bcb84 (diff) |
Update PowerPC (qppc) platform to build with Ubuntu cross-tools
Standard Ubuntu PowerPC toolchain can be installed with:
apt-get install crossbuild-essential-powerpc
And code can be built with:
make PLATFORM=qppc TAG=qppc ...
Change-Id: I247355fc89fd61aedb8693156e84c454ca86eb75
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'vpp')
-rw-r--r-- | vpp/vnet/main.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/vpp/vnet/main.c b/vpp/vnet/main.c index 08e8813f..290b5c03 100644 --- a/vpp/vnet/main.c +++ b/vpp/vnet/main.c @@ -268,32 +268,6 @@ u32 vlib_app_num_thread_stacks_needed (void) * messages! */ -#if IPV6SR == 0 -#define foreach_ipv6_sr_stub_node \ -_(ipsec-output, ipsec_output) -#else -#define foreach_ipv6_sr_stub_node -#endif - -#define _(n,m) \ -static uword \ -m##_node_fn (vlib_main_t *vm, \ - vlib_node_runtime_t *node, \ - vlib_frame_t *frame) \ -{ \ - clib_warning("unimplemented, leaking buffers..."); \ - return 0; \ -} \ - \ -VLIB_REGISTER_NODE(m##_node) = { \ - .function = m##_node_fn, \ - .name = #n, \ - .vector_size = sizeof(u32), \ - .type = VLIB_NODE_TYPE_INTERNAL, \ -}; -foreach_ipv6_sr_stub_node; -#undef _ - #if CLIB_DEBUG > 0 static clib_error_t * |