mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
98 lines
4.3 KiB
CMake
98 lines
4.3 KiB
CMake
# SPDX-License-Identifier: LicenseRef-CSSL-1.0
|
|
|
|
# we need at least gcc-11 to build xran, so let's enforce it here
|
|
# (because xran might not check it, and we have control here)
|
|
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 11.0
|
|
OR CMAKE_C_COMPILER_VERSION VERSION_LESS 11.0)
|
|
message(FATAL_ERROR "you need to have at least gcc/g++-11 to use 7.2 FHI through xran")
|
|
endif()
|
|
|
|
# use env var PKG_CONFIG_PATH to override paths to libdpdk.pc
|
|
pkg_check_modules(dpdk REQUIRED libdpdk)
|
|
pkg_check_modules(numa REQUIRED numa)
|
|
|
|
add_library(oran_fhlib_5g MODULE
|
|
oran_isolate.c
|
|
oaioran.c
|
|
oran-config.c
|
|
oran-init.c
|
|
)
|
|
|
|
set(K_VERSION 11.1.1)
|
|
|
|
add_boolean_option(xran_DOWNLOAD OFF "Download and build xran library" OFF)
|
|
|
|
find_package(xran)
|
|
if(xran_FOUND)
|
|
if(xran_VERSION VERSION_GREATER_EQUAL 5 AND xran_VERSION VERSION_LESS 6)
|
|
message(FATAL_ERROR "xran E release not supported starting from tag 2026.w08.\nPlease switch to K version ${K_VERSION}")
|
|
elseif(xran_VERSION VERSION_GREATER_EQUAL 6 AND xran_VERSION VERSION_LESS 7)
|
|
message(FATAL_ERROR "xran F release not supported starting from tag 2026.w25.\nPlease switch to K version ${K_VERSION}")
|
|
elseif(xran_VERSION VERSION_EQUAL K_VERSION)
|
|
if(dpdk_VERSION VERSION_LESS 22)
|
|
message(FATAL_ERROR "DPDK version miniminum 22 required for K release, but found ${dpdk_VERSION}")
|
|
endif()
|
|
target_compile_definitions(oran_fhlib_5g PRIVATE K_RELEASE)
|
|
else()
|
|
message(FATAL_ERROR "Found xran version ${xran_VERSION} but needed ${F_VERSION} (F release) or ${K_VERSION} (K release)")
|
|
endif()
|
|
elseif(NOT xran_FOUND AND xran_DOWNLOAD)
|
|
if(dpdk_VERSION VERSION_LESS 22)
|
|
message(FATAL_ERROR "DPDK version miniminum 22 required for K release, but found ${dpdk_VERSION}")
|
|
endif()
|
|
include(ExternalProject)
|
|
set(xran_DIR "${CMAKE_BINARY_DIR}/.deps/src/extern_xran/fhi_lib/lib")
|
|
ExternalProject_Add(extern_xran
|
|
PREFIX ${CMAKE_BINARY_DIR}/.deps
|
|
GIT_REPOSITORY https://github.com/openairinterface/o-du-phy.git
|
|
GIT_TAG ${K_VERSION}
|
|
CONFIGURE_COMMAND "" # nothing to configure
|
|
BUILD_COMMAND cd fhi_lib/lib && WIRELESS_SDK_TOOLCHAIN=gcc RTE_SDK=${dpdk_PREFIX} XRAN_DIR=.. make XRAN_LIB_SO=1
|
|
BUILD_IN_SOURCE ON
|
|
INSTALL_COMMAND ""
|
|
BUILD_BYPRODUCTS ${xran_DIR}/build/libxran.so
|
|
)
|
|
add_library(xran::xran UNKNOWN IMPORTED)
|
|
add_dependencies(xran::xran extern_xran)
|
|
# This is a workaround for the fact that included directories of an imported
|
|
# target should exist in the filesystem already at the configuration time.
|
|
# ref: https://gitlab.kitware.com/cmake/cmake/-/issues/15052
|
|
file(MAKE_DIRECTORY "${xran_DIR}/api/")
|
|
file(MAKE_DIRECTORY "${xran_DIR}/build/")
|
|
set_target_properties(xran::xran PROPERTIES
|
|
IMPORTED_LOCATION "${xran_DIR}/build/libxran.so"
|
|
INTERFACE_INCLUDE_DIRECTORIES "${xran_DIR}/api/"
|
|
)
|
|
message(STATUS "xran not found. Will clone and build automatically K release ${K_VERSION}")
|
|
target_compile_definitions(oran_fhlib_5g PRIVATE K_RELEASE)
|
|
else()
|
|
message(FATAL_ERROR "could not find xran, and auto-download disabled. Update
|
|
xran_LOCATION, or set -Dxran_DOWNLOAD=ON")
|
|
endif()
|
|
|
|
# Ignore xran-specific warning: we don't care/can't change the following warning, so suppress
|
|
# alignment 1 of 'struct XYZ' is less than 2
|
|
add_compile_options(-Wno-packed-not-aligned)
|
|
|
|
set_target_properties(oran_fhlib_5g PROPERTIES COMPILE_FLAGS "-fvisibility=hidden -march=native")
|
|
target_link_libraries(oran_fhlib_5g PRIVATE xran::xran ${dpdk_LINK_LIBRARIES} pthread dl rt m numa)
|
|
target_link_libraries(oran_fhlib_5g PRIVATE log_headers)
|
|
target_include_directories(oran_fhlib_5g PRIVATE ${dpdk_INCLUDE_DIRS})
|
|
if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64")
|
|
find_package(armral REQUIRED)
|
|
target_sources(oran_fhlib_5g PRIVATE armral_bfp_compression.c)
|
|
target_link_libraries(oran_fhlib_5g PRIVATE armral)
|
|
endif()
|
|
|
|
message(STATUS "Building FHI72 CUS library")
|
|
|
|
set_target_properties(oran_fhlib_5g PROPERTIES LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
|
|
add_custom_command(TARGET oran_fhlib_5g POST_BUILD
|
|
COMMAND ${CMAKE_COMMAND} -E create_symlink liboran_fhlib_5g.so liboai_transpro.so
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
|
|
|
|
add_boolean_option(OAI_FHI72_MPLANE OFF "Activate OAI's FHI 7.2 M-plane support" OFF)
|
|
if(OAI_FHI72_MPLANE)
|
|
add_subdirectory(mplane)
|
|
endif()
|