diff options
author | Qiaowei Ren <qiaowei.ren@intel.com> | 2018-03-01 14:38:11 +0800 |
---|---|---|
committer | Qiaowei Ren <qiaowei.ren@intel.com> | 2018-03-01 14:38:11 +0800 |
commit | 7da45d65be36d36b880cc55c5036e96c24b53f00 (patch) | |
tree | d4f944eb4f8f8de50a9a7584ffa408dc3a3185b2 /src/ceph/cmake/modules/Finddpdk.cmake | |
parent | 691462d09d0987b47e112d6ee8740375df3c51b2 (diff) |
remove ceph code
This patch removes initial ceph code, due to license issue.
Change-Id: I092d44f601cdf34aed92300fe13214925563081c
Signed-off-by: Qiaowei Ren <qiaowei.ren@intel.com>
Diffstat (limited to 'src/ceph/cmake/modules/Finddpdk.cmake')
-rw-r--r-- | src/ceph/cmake/modules/Finddpdk.cmake | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/src/ceph/cmake/modules/Finddpdk.cmake b/src/ceph/cmake/modules/Finddpdk.cmake deleted file mode 100644 index 343420a..0000000 --- a/src/ceph/cmake/modules/Finddpdk.cmake +++ /dev/null @@ -1,75 +0,0 @@ -# Try to find dpdk -# -# Once done, this will define -# -# DPDK_FOUND -# DPDK_INCLUDE_DIR -# DPDK_LIBRARIES - -find_path(DPDK_INCLUDE_DIR rte_config.h - PATH_SUFFIXES dpdk) -find_library(DPDK_rte_hash_LIBRARY rte_hash) -find_library(DPDK_rte_kvargs_LIBRARY rte_kvargs) -find_library(DPDK_rte_mbuf_LIBRARY rte_mbuf) -find_library(DPDK_rte_ethdev_LIBRARY rte_ethdev) -find_library(DPDK_rte_mempool_LIBRARY rte_mempool) -find_library(DPDK_rte_ring_LIBRARY rte_ring) -find_library(DPDK_rte_eal_LIBRARY rte_eal) -find_library(DPDK_rte_cmdline_LIBRARY rte_cmdline) -find_library(DPDK_rte_pmd_bond_LIBRARY rte_pmd_bond) -find_library(DPDK_rte_pmd_vmxnet3_uio_LIBRARY rte_pmd_vmxnet3_uio) -find_library(DPDK_rte_pmd_ixgbe_LIBRARY rte_pmd_ixgbe) -find_library(DPDK_rte_pmd_i40e_LIBRARY rte_pmd_i40e) -find_library(DPDK_rte_pmd_ring_LIBRARY rte_pmd_ring) -find_library(DPDK_rte_pmd_af_packet_LIBRARY rte_pmd_af_packet) - -set(check_LIBRARIES - ${DPDK_rte_hash_LIBRARY} - ${DPDK_rte_kvargs_LIBRARY} - ${DPDK_rte_mbuf_LIBRARY} - ${DPDK_rte_ethdev_LIBRARY} - ${DPDK_rte_mempool_LIBRARY} - ${DPDK_rte_ring_LIBRARY} - ${DPDK_rte_eal_LIBRARY} - ${DPDK_rte_cmdline_LIBRARY} - ${DPDK_rte_pmd_bond_LIBRARY} - ${DPDK_rte_pmd_vmxnet3_uio_LIBRARY} - ${DPDK_rte_pmd_ixgbe_LIBRARY} - ${DPDK_rte_pmd_i40e_LIBRARY} - ${DPDK_rte_pmd_ring_LIBRARY} - ${DPDK_rte_pmd_af_packet_LIBRARY}) - -mark_as_advanced(DPDK_INCLUDE_DIR - DPDK_rte_hash_LIBRARY - DPDK_rte_kvargs_LIBRARY - DPDK_rte_mbuf_LIBRARY - DPDK_rte_ethdev_LIBRARY - DPDK_rte_mempool_LIBRARY - DPDK_rte_ring_LIBRARY - DPDK_rte_eal_LIBRARY - DPDK_rte_cmdline_LIBRARY - DPDK_rte_pmd_bond_LIBRARY - DPDK_rte_pmd_vmxnet3_uio_LIBRARY - DPDK_rte_pmd_ixgbe_LIBRARY - DPDK_rte_pmd_i40e_LIBRARY - DPDK_rte_pmd_ring_LIBRARY - DPDK_rte_pmd_af_packet_LIBRARY) - -if (EXISTS ${WITH_DPDK_MLX5}) - find_library(DPDK_rte_pmd_mlx5_LIBRARY rte_pmd_mlx5) - list(APPEND check_LIBRARIES ${DPDK_rte_pmd_mlx5_LIBRARY}) - mark_as_advanced(DPDK_rte_pmd_mlx5_LIBRARY) -endif() - -include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(dpdk DEFAULT_MSG - DPDK_INCLUDE_DIR - check_LIBRARIES) - -if(DPDK_FOUND) -if (EXISTS ${WITH_DPDK_MLX5}) - list(APPEND check_LIBRARIES -libverbs) -endif() - set(DPDK_LIBRARIES - -Wl,--whole-archive ${check_LIBRARIES} -Wl,--no-whole-archive) -endif(DPDK_FOUND) |