From: Ferruh Yigit Date: Thu, 6 Apr 2017 17:05:10 +0000 (+0100) Subject: event/octeontx: fix build for gcc < 4.6 X-Git-Tag: spdx-start~3703 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=1daa21de5b8452e4f5d23d4e9959fc8849e04f52;hp=1daa21de5b8452e4f5d23d4e9959fc8849e04f52;p=dpdk.git event/octeontx: fix build for gcc < 4.6 -Ofast option supported from gcc4.6 [1], for older versions using "-O3 -ffast-math" instead. [1] build error: cc1: error: invalid option argument ‘-Ofast’ Also struct initialization build error [2] fixed. [2] build error: .../event/octeontx/ssovf_mbox.c: In function ‘mbox_send_request’: .../event/octeontx/ssovf_mbox.c:95:9: error: unknown field ‘u64’ specified in initializer Fixes: 32ff26393bb2 ("event/octeontx: add SSO HW device operations") Signed-off-by: Ferruh Yigit Acked-by: Jerin Jacob ---