diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2017-11-09 11:58:26 +0100 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2017-11-09 16:24:52 +0000 |
commit | 67b1b2274771d9b9a67a37b8e3156317d4c93437 (patch) | |
tree | ed73f968471ddd273b9d0b050a5355d6bc91cb2d | |
parent | d792d9c01e60656cbfe1b0f1fd6a9b125f5dab0c (diff) |
VOM: Makefile: Fix the execution time initialization order
When compile with gcc version 4.8.5, the compiler doesn't
able to optimize the execution time initialization order.
This patch fixes the initialization order.
Change-Id: I14eacdf30f7ef481f72452adfc955400e37ae559
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
-rw-r--r-- | src/vpp-api/vom/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vpp-api/vom/Makefile.am b/src/vpp-api/vom/Makefile.am index 395b7094967..cdeacdfa6f5 100644 --- a/src/vpp-api/vom/Makefile.am +++ b/src/vpp-api/vom/Makefile.am @@ -35,6 +35,7 @@ libvom_la_LIBADD = \ -lm -lrt libvom_la_SOURCES = \ + types.cpp \ acl_binding_cmds.cpp \ acl_binding.cpp \ acl_l2_rule.cpp \ @@ -97,7 +98,6 @@ libvom_la_SOURCES = \ sub_interface.cpp \ tap_interface.cpp \ tap_interface_cmds.cpp \ - types.cpp \ vxlan_tunnel_cmds.cpp \ vxlan_tunnel.cpp |