X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fmarvell%2FCMakeLists.txt;h=336d4d6c4a313b8d4fd5999feb68b0f45993925c;hb=859b59133;hp=39b7b85c1230cf9786a420bf73880a9b21ada242;hpb=74449b8b68801e0938f528f19d69e75644cb2ee9;p=vpp.git diff --git a/src/plugins/marvell/CMakeLists.txt b/src/plugins/marvell/CMakeLists.txt index 39b7b85c123..336d4d6c4a3 100644 --- a/src/plugins/marvell/CMakeLists.txt +++ b/src/plugins/marvell/CMakeLists.txt @@ -11,18 +11,34 @@ # See the License for the specific language governing permissions and # limitations under the License. -find_path(MUSDK_INCLUDE_DIR NAMES marvell/pp2/pp2.h) -find_library(MUSDK_LIB NAMES musdk) +if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64.*|AARCH64.*)") + return() +endif() + +find_path(MUSDK_INCLUDE_DIR NAMES mv_std.h) +find_library(MUSDK_LIB NAMES libmusdk.a) if(MUSDK_INCLUDE_DIR AND MUSDK_LIB) + get_filename_component(MUSDK_LIB_DIR ${MUSDK_LIB} DIRECTORY) + set(MUSDK_LINK_FLAGS "-Wl,--whole-archive,${MUSDK_LIB_DIR}/libmusdk.a,--no-whole-archive") add_vpp_plugin(marvell - marvell.api + SOURCES plugin.c pp2/cli.c pp2/format.c pp2/input.c pp2/output.c pp2/pp2.c + pp2/pp2_api.c + + API_FILES + pp2/pp2.api + + API_TEST_SOURCES + pp2/pp2_test.c + + LINK_FLAGS + ${MUSDK_LINK_FLAGS} ) include_directories(${MUSDK_INCLUDE_DIR}) message(STATUS "Found Marvel MUSDK in ${MUSDK_INCLUDE_DIR}")