b8ef62b168c202dd69717fe0aeab43d00f64593e
[o-du/phy.git] / fhi_lib / test / test_xran / Makefile
1 #/******************************************************************************
2 #*
3 #*   Copyright (c) 2019 Intel.
4 #*
5 #*   Licensed under the Apache License, Version 2.0 (the "License");
6 #*   you may not use this file except in compliance with the License.
7 #*   You may obtain a copy of the License at
8 #*
9 #*       http://www.apache.org/licenses/LICENSE-2.0
10 #*
11 #*   Unless required by applicable law or agreed to in writing, software
12 #*   distributed under the License is distributed on an "AS IS" BASIS,
13 #*   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #*   See the License for the specific language governing permissions and
15 #*   limitations under the License.
16 #*
17 #*******************************************************************************/
18
19
20 .SUFFIXES: .o .c .s .i .cpp
21
22 ##############################################################
23 #  Tools configuration
24 ##############################################################
25 CC  := icc
26 CXX := icpc
27 CPP := icpc
28 AS := as
29 AR := ar
30 LD := icc
31 OBJDUMP := objdump
32
33 ifeq ($(SHELL),cmd.exe)
34 MD := mkdir.exe -p
35 CP := cp.exe -f
36 RM := rm.exe -rf
37 else
38 MD := mkdir -p
39 CP := cp -f
40 RM := rm -rf
41 endif
42
43 ifeq ($(RTE_SDK),)
44     $(error "Please define RTE_SDK environment variable")
45 endif
46
47 ifeq ($(MLOG_DIR),)
48     MLOG_DIR=$(XRAN_DIR)/../mlog
49 endif
50
51 RTE_TARGET ?= x86_64-native-linuxapp-icc
52
53 RTE_INC := $(RTE_SDK)/$(RTE_TARGET)/include
54
55 # Where to find user code.
56 COMMON_TEST_DIR = $(XRAN_DIR)/test/common
57 USER_DIR = $(XRAN_DIR)/lib/src
58 USER_ETH = $(XRAN_DIR)/lib/ethernet
59 USER_API = $(XRAN_DIR)/lib/api
60
61 # Flags passed to the preprocessor.
62 # Set Google Test's header directory as a system directory, such that
63 # the compiler doesn't generate warnings in Google Test headers.
64 CPPFLAGS += -isystem $(GTEST_ROOT)/include
65
66 # Flags passed to the C++ compiler.
67 CXXFLAGS += -g -std=gnu++11 -Wall -Wextra -fstack-protector-strong -z noexecstack -Wformat -Wformat-security -Werror=format-security -fno-strict-overflow -fwrapv -pthread -I$(USER_API) -I$(USER_DIR) -I$(USER_ETH) -I$(MLOG_DIR)/source -I $(COMMON_TEST_DIR) -I$(RTE_INC)
68
69 # All tests produced by this Makefile.  Remember to add new tests you
70 # created to the list.
71 TESTS = unittests
72
73 # All Google Test headers.  Usually you shouldn't change this
74 # definition.
75 GTEST_HEADERS = $(GTEST_ROOT)/include/gtest/*.h \
76                 $(GTEST_ROOT)/include/gtest/internal/*.h
77
78 RTE_LIBS = -L$(RTE_SDK)/$(RTE_TARGET)/lib -Wl,--whole-archive -Wl,-lrte_mempool_ring -Wl,-lrte_pci -Wl,-lrte_bus_pci -Wl,-lrte_bus_vdev -Wl,-lrte_net -Wl,-lrte_distributor -Wl,-lrte_reorder -Wl,-lrte_kni -Wl,-lrte_pipeline -Wl,-lrte_table -Wl,-lrte_port -Wl,-lrte_timer -Wl,-lrte_hash -Wl,-lrte_jobstats -Wl,-lrte_lpm -Wl,-lrte_power -Wl,-lrte_acl -Wl,-lrte_meter -Wl,-lrte_sched -Wl,-lm -Wl,-lrt -Wl,-lrte_vhost -Wl,--start-group -Wl,-lrte_kvargs -Wl,-lrte_mbuf -Wl,-lrte_ip_frag -Wl,-lrte_ethdev -Wl,-lrte_cryptodev -Wl,-lrte_mempool -Wl,-lrte_ring -Wl,-lrte_eal -Wl,-lrte_cmdline -Wl,-lrte_cfgfile -Wl,-lrte_pmd_bond -Wl,-lrte_pmd_vmxnet3_uio -Wl,-lrte_pmd_virtio -Wl,-lrte_pmd_cxgbe -Wl,-lrte_pmd_enic -Wl,-lrte_pmd_i40e -Wl,-lrte_pmd_fm10k -Wl,-lrte_pmd_ixgbe -Wl,-lrte_pmd_e1000 -Wl,-lrte_pmd_ring -Wl,-lrte_pmd_af_packet -Wl,-lrte_pmd_null -Wl,-lrte_pdump  -Wl,-lrt -Wl,-lm -Wl,-ldl -Wl,--end-group -Wl,--no-whole-archive
79
80 CFLAGS += -std=gnu11 -Wall -Wno-deprecated-declarations \
81         -fdata-sections \
82         -ffunction-sections \
83         -g \
84         -Wall \
85         -Wimplicit-function-declaration  \
86         -wd1786 \
87         -I$(USER_DIR) -I$(USER_API) -I$(USER_API) -I$(USER_DIR) -I$(USER_ETH) -I$(MLOG_DIR)/source -I$(RTE_INC)
88
89 C_SRC = \
90         $(USER_ETH)/ethdi.c    \
91         $(USER_ETH)/ethernet.c      \
92         $(USER_DIR)/xran_up_api.c       \
93         $(USER_DIR)/xran_sync_api.c     \
94         $(USER_DIR)/xran_timer.c                \
95         $(USER_DIR)/xran_cp_api.c       \
96         $(USER_DIR)/xran_transport.c    \
97         $(USER_DIR)/xran_common.c        \
98         $(USER_DIR)/xran_ul_tables.c     \
99         $(USER_DIR)/xran_frame_struct.c  \
100         $(USER_DIR)/xran_app_frag.c \
101         $(USER_DIR)/xran_main.c
102
103 #       $(USER_DIR)/xran_compression.c
104
105 CC_SRC = \
106         $(COMMON_TEST_DIR)/xranlib_unit_test_main.cc \
107         c_plane_tests.cc \
108         chain_tests.cc \
109         prach_functional.cc \
110         prach_performance.cc \
111         u_plane_functional.cc \
112         init_sys_functional.cc \
113         compander_functional.cc \
114         unittests.cc
115
116 #       u_plane_performance.cc \
117
118 CPP_SRC = $(COMMON_TEST_DIR)/common.cpp \
119         $(USER_DIR)/xran_compression.cpp
120
121 C_OBJS := $(patsubst %.c,%.o,$(C_SRC))
122 CC_OBJS := $(patsubst %.cc,%.o,$(CC_SRC))
123 CPP_OBJS := $(patsubst %.cpp,%.o,$(CPP_SRC))
124
125 CPPFLAGS += -I$(USER_DIR) -I$(USER_API) 
126
127 CPP_COMP = -O3 -xcore-avx512 -restrict -g -fasm-blocks
128
129 # House-keeping build targets.
130 all : echo_start_build $(TESTS)
131
132 clean :
133         @echo [CLEAN]
134         rm -f $(TESTS) *.o $(COMMON_TEST_DIR)/*.o $(USER_DIR)/*.o $(USER_ETH)/*.o
135
136 .PHONY : echo_start_build
137 echo_start_build :
138         @echo Build Tests with
139         @echo $(USER_DIR)
140         @echo $(USER_API)
141
142 $(CC_OBJS) :
143         @echo "[CC] $@"
144         @$(CXX) -c $(CPPFLAGS) $(CXXFLAGS) -o"$@" $(patsubst %.o,%.cc,$@)
145
146 $(CPP_OBJS) :
147         @echo "[CPP] $@"
148         @$(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CPP_COMP) -o"$@" $(patsubst %.o,%.cpp,$@)
149
150 $(C_OBJS) :
151         @echo "[C] $@"
152         @$(CC) -c $(CFLAGS) -o"$@" $(patsubst %.o,%.c,$@)
153
154 unittests : $(CC_OBJS) $(CPP_OBJS) $(C_OBJS) $(GTEST_ROOT)/libgtest.a
155         @echo "[LD] $@"
156         $(CXX) $(CPPFLAGS) $(CXXFLAGS) -L$(MLOG_DIR)/bin -Wl, $(RTE_LIBS) -lpthread -lnuma $^ -o $@