O-RAN E Maintenance Release contribution for ODULOW
[o-du/phy.git] / fapi_5g / build / 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 .SUFFIXES: .o .c .s .i .cpp
20
21 # Makefile to build TestMac application
22
23 ##############################################################
24 #  Tools configuration
25 ##############################################################
26 CC := icc
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 RM := rm.exe -rf
36 else
37 MD := mkdir -p
38 RM := rm -rf
39 endif
40
41 ##############################################################
42 # TARGET
43 ##############################################################
44 ifeq ($(RTE_SDK),)
45     $(error "Please define RTE_SDK environment variable")
46 endif
47
48 ifeq ($(MESON_BUILD),0)
49 RTE_INC := $(RTE_SDK)/$(RTE_TARGET)/include
50 else
51 RTE_INC := $(shell PKG_CONFIG_PATH=$(RTE_SDK)/build/meson-uninstalled pkg-config --cflags-only-I libdpdk)
52 endif
53
54 ##############################################################
55 # Projects folders
56 ##############################################################
57 FLEXRANDIR        := $(DIR_WIRELESS)
58 WLSDIR            := $(DIR_WIRELESS_WLS)
59 BUILDDIR          := ../build/make
60 SRCDIR            := $(CURDIR)
61
62 oran_5g_fapi_dep_file = $(BUILDDIR)/oran_5g_fapi_dep
63
64 APP := ../bin/oran_5g_fapi
65
66 INC := \
67  -I$(WLSDIR) \
68  -I$(SRCDIR)/../include \
69  -I$(SRCDIR)/common \
70  -I$(SRCDIR)/include \
71  -I$(SRCDIR)/framework/workers \
72  -I$(SRCDIR)/framework/wls/fapi2mac \
73  -I$(SRCDIR)/framework/wls/fapi2phy \
74  -I$(SRCDIR)/framework/wls/lib \
75  -I$(SRCDIR)/api/fapi2mac \
76  -I$(SRCDIR)/api/fapi2phy \
77  -I$(FLEXRANDIR)/source/nr5g/api \
78  -I$(FLEXRANDIR)/source/common \
79  -I$(SRCDIR)/api/fapi2phy/p5 \
80  -I$(SRCDIR)/api/fapi2phy/p7 \
81  -I$(SRCDIR)/api/fapi2mac/p5 \
82  -I$(SRCDIR)/api/fapi2mac/p7 \
83  -I$(SRCDIR)/utils \
84  $(RTE_INC) \
85  
86 DEFS := USE_WO_LOCK _GNU_SOURCE
87
88 ifneq ($(PRINTDBG),)
89 DEFS := $(DEFS) PRINTF_DBG_OK
90 endif
91
92 ifeq ($(DEBUG_MODE),true)
93 DEFS := $(DEFS) DEBUG_MODE
94 endif
95
96 ifeq ($(STATISTIC_MODE),true)
97 DEFS := $(DEFS) STATISTIC_MODE
98 endif
99
100 DEFS := $(addprefix -D,$(DEFS))
101
102 CFLAGS := -g -Wall -Wextra -Wunused -wd9 -Wno-deprecated-declarations -Wimplicit-function-declaration -fasm-blocks -fstack-protector-strong -z,now, -z,relro -z noexecstack -Wformat -Wformat-security -Werror=format-security -fno-strict-overflow -fwrapv $(DEFS) $(INC)
103
104 ifeq ($(PRINTDBG),)
105 CFLAGS := $(CFLAGS) -Werror
106 endif
107
108 #RTE_LIBS := -L$(RTE_SDK)/$(RTE_TARGET)/lib -Wl,--whole-archive -Wl,-lrte_distributor -Wl,-lrte_kni -Wl,-lrte_pipeline -Wl,-lrte_table -Wl,-lrte_port -Wl,-lrte_timer -Wl,-lrte_hash -Wl,-lrte_lpm -Wl,-lrte_power -Wl,-lrte_acl -Wl,-lrte_meter -Wl,-lrte_sched -Wl,-lm -Wl,-lrt -Wl,--start-group -Wl,-lrte_kvargs -Wl,-lrte_mbuf -Wl,-lrte_ip_frag -Wl,-lrte_ethdev -Wl,-lrte_mempool -Wl,-lrte_mempool_ring -Wl,-lrte_ring -Wl,-lrte_bus_pci -Wl,-lrte_bus_vdev -Wl,-lrte_pci -Wl,-lrte_net -Wl,-lrte_eal -Wl,-lrte_cmdline -Wl,-lrte_cfgfile -Wl,-lrte_pmd_bond -Wl,-lrte_pmd_vmxnet3_uio -Wl,-lrte_pmd_i40e -Wl,-lrte_pmd_ixgbe -Wl,-lrte_pmd_e1000 -Wl,-lrte_pmd_ring -Wl,-lrt -Wl,-lm -Wl,-ldl -Wl,--end-group -Wl,--no-whole-archive
109 ifeq ($(MESON_BUILD),0)
110 RTE_LIBS := -L$(RTE_SDK)/$(RTE_TARGET)/lib -Wl,--whole-archive -Wl,-lrte_distributor -Wl,-lrte_kni -Wl,-lrte_pipeline -Wl,-lrte_table -Wl,-lrte_timer -Wl,-lrte_hash -Wl,-lrte_lpm -Wl,-lrte_power -Wl,-lrte_acl -Wl,-lrte_meter -Wl,-lrte_sched -Wl,-lm -Wl,-lrt -Wl,--start-group -Wl,-lrte_kvargs -Wl,-lrte_mbuf -Wl,-lrte_ip_frag -Wl,-lrte_ethdev -Wl,-lrte_mempool -Wl,-lrte_mempool_ring -Wl,-lrte_ring -Wl,-lrte_bus_pci -Wl,-lrte_bus_vdev -Wl,-lrte_pci -Wl,-lrte_net -Wl,-lrte_eal -Wl,-lrte_cmdline -Wl,-lrte_cfgfile -Wl,-lrte_pmd_bond -Wl,-lrte_pmd_vmxnet3_uio -Wl,-lrte_pmd_i40e -Wl,-lrte_pmd_ixgbe -Wl,-lrte_pmd_e1000 -Wl,-lrte_pmd_ring -Wl, -lrte_cryptodev -Wl,-lrt -Wl,-lm -Wl,-ldl -Wl,--end-group -Wl,--no-whole-archive
111 else
112 RTE_LIBS := -Wl,--whole-archive -Wl,/usr/lib64/libnuma.so -Wl,--as-needed -pthread -L$(RTE_SDK)/build/drivers -L$(RTE_SDK)/build/lib -l:librte_common_cpt.a -l:librte_common_dpaax.a -l:librte_common_iavf.a -l:librte_common_octeontx.a -l:librte_common_octeontx2.a -l:librte_common_sfc_efx.a -l:librte_bus_dpaa.a -l:librte_bus_fslmc.a -l:librte_bus_ifpga.a -l:librte_bus_pci.a -l:librte_bus_vdev.a -l:librte_bus_vmbus.a -l:librte_mempool_bucket.a -l:librte_mempool_dpaa.a -l:librte_mempool_dpaa2.a -l:librte_mempool_octeontx.a -l:librte_mempool_octeontx2.a -l:librte_mempool_ring.a -l:librte_mempool_stack.a -l:librte_net_af_packet.a -l:librte_net_ark.a -l:librte_net_atlantic.a -l:librte_net_avp.a -l:librte_net_axgbe.a -l:librte_net_bond.a -l:librte_net_bnx2x.a -l:librte_net_bnxt.a -l:librte_net_cxgbe.a -l:librte_net_dpaa.a -l:librte_net_dpaa2.a -l:librte_net_e1000.a -l:librte_net_ena.a -l:librte_net_enetc.a -l:librte_net_enic.a -l:librte_net_failsafe.a -l:librte_net_fm10k.a -l:librte_net_i40e.a -l:librte_net_hinic.a -l:librte_net_hns3.a -l:librte_net_iavf.a -l:librte_net_ice.a -l:librte_net_igc.a -l:librte_net_ixgbe.a -l:librte_net_kni.a -l:librte_net_liquidio.a -l:librte_net_memif.a -l:librte_net_netvsc.a -l:librte_net_nfp.a -l:librte_net_null.a -l:librte_net_octeontx.a -l:librte_net_octeontx2.a -l:librte_net_pfe.a -l:librte_net_qede.a -l:librte_net_ring.a -l:librte_net_sfc.a -l:librte_net_tap.a -l:librte_net_thunderx.a -l:librte_net_txgbe.a -l:librte_net_vdev_netvsc.a -l:librte_net_vhost.a -l:librte_net_virtio.a -l:librte_net_vmxnet3.a -l:librte_raw_dpaa2_cmdif.a -l:librte_raw_dpaa2_qdma.a -l:librte_raw_ioat.a -l:librte_raw_ntb.a -l:librte_raw_octeontx2_dma.a -l:librte_raw_octeontx2_ep.a -l:librte_raw_skeleton.a -l:librte_crypto_bcmfs.a -l:librte_crypto_caam_jr.a -l:librte_crypto_dpaa_sec.a -l:librte_crypto_dpaa2_sec.a -l:librte_crypto_nitrox.a -l:librte_crypto_null.a -l:librte_crypto_octeontx.a -l:librte_crypto_octeontx2.a -l:librte_crypto_scheduler.a -l:librte_crypto_virtio.a -l:librte_compress_octeontx.a -l:librte_compress_zlib.a -l:librte_regex_octeontx2.a -l:librte_vdpa_ifc.a -l:librte_event_dlb.a -l:librte_event_dlb2.a -l:librte_event_dpaa.a -l:librte_event_dpaa2.a -l:librte_event_octeontx2.a -l:librte_event_opdl.a -l:librte_event_skeleton.a -l:librte_event_sw.a -l:librte_event_dsw.a -l:librte_event_octeontx.a -l:librte_node.a -l:librte_graph.a -l:librte_bpf.a -l:librte_flow_classify.a -l:librte_pipeline.a -l:librte_table.a -l:librte_fib.a -l:librte_ipsec.a -l:librte_vhost.a -l:librte_stack.a -l:librte_security.a -l:librte_sched.a -l:librte_reorder.a -l:librte_rib.a -l:librte_regexdev.a -l:librte_rawdev.a -l:librte_pdump.a -l:librte_power.a -l:librte_member.a -l:librte_lpm.a -l:librte_latencystats.a -l:librte_kni.a -l:librte_jobstats.a -l:librte_ip_frag.a -l:librte_gso.a -l:librte_gro.a -l:librte_eventdev.a -l:librte_efd.a -l:librte_distributor.a -l:librte_cryptodev.a -l:librte_compressdev.a -l:librte_cfgfile.a -l:librte_bitratestats.a -l:librte_bbdev.a -l:librte_acl.a -l:librte_timer.a -l:librte_hash.a -l:librte_metrics.a -l:librte_cmdline.a -l:librte_pci.a -l:librte_ethdev.a -l:librte_meter.a -l:librte_net.a -l:librte_mbuf.a -l:librte_mempool.a -l:librte_rcu.a -l:librte_ring.a -l:librte_eal.a -l:librte_telemetry.a -l:librte_kvargs.a -lelf -lrte_node -lrte_graph -lrte_bpf -lrte_flow_classify -lrte_pipeline -lrte_table -lrte_fib -lrte_ipsec -lrte_vhost -lrte_stack -lrte_security -lrte_sched -lrte_reorder -lrte_rib -lrte_regexdev -lrte_rawdev -lrte_pdump -lrte_power -lrte_member -lrte_lpm -lrte_latencystats -lrte_kni -lrte_jobstats -lrte_ip_frag -lrte_gso -lrte_gro -lrte_eventdev -lrte_efd -lrte_distributor -lrte_cryptodev -lrte_compressdev -lrte_cfgfile -lrte_bitratestats -lrte_bbdev -lrte_acl -lrte_timer -lrte_hash -lrte_metrics -lrte_cmdline -lrte_pci -lrte_ethdev -lrte_meter -lrte_net -lrte_mbuf -lrte_mempool -lrte_rcu -lrte_ring -lrte_eal -lrte_telemetry -lrte_kvargs -lm -ldl -lnuma -lz -Wl,--no-whole-archive
113 endif
114 LDFLAGS := -g -Wl,-lrt -Wl,-lpthread -Wl,-lhugetlbfs -Wl,-lm -Wl,-lnuma -L $(WLSDIR) -lwls
115
116 LINUX_ORAN_5G_FAPI_SRC := \
117         $(SRCDIR)/nr5g_fapi.c \
118         $(SRCDIR)/utils/nr5g_fapi_args.c \
119         $(SRCDIR)/utils/nr5g_fapi_config_loader.c \
120         $(SRCDIR)/utils/nr5g_fapi_log.c \
121         $(SRCDIR)/utils/nr5g_fapi_stats.c \
122         $(SRCDIR)/utils/nr5g_fapi_memory.c \
123         $(SRCDIR)/utils/nr5g_fapi_cmd.c \
124         $(SRCDIR)/utils/nr5g_fapi_snr_conversion.c \
125         $(SRCDIR)/framework/workers/nr5g_fapi_mac2phy_thread.c \
126         $(SRCDIR)/framework/workers/nr5g_fapi_phy2mac_thread.c \
127         $(SRCDIR)/framework/workers/nr5g_fapi_urllc_thread.c \
128         $(SRCDIR)/framework/nr5g_fapi_framework.c \
129         $(SRCDIR)/framework/wls/fapi2mac/nr5g_fapi_fapi2mac_wls.c \
130         $(SRCDIR)/framework/wls/fapi2phy/nr5g_fapi_fapi2phy_wls.c \
131         $(SRCDIR)/framework/wls/lib/nr5g_fapi_wls.c \
132         $(SRCDIR)/api/fapi2mac/nr5g_fapi_fapi2mac_api.c \
133         $(SRCDIR)/api/fapi2mac/nr5g_fapi_proc_error_ind.c \
134         $(SRCDIR)/api/fapi2mac/p5/nr5g_fapi_proc_config_resp.c \
135         $(SRCDIR)/api/fapi2mac/p5/nr5g_fapi_proc_start_resp.c \
136         $(SRCDIR)/api/fapi2mac/p5/nr5g_fapi_proc_stop_ind.c \
137         $(SRCDIR)/api/fapi2mac/p5/nr5g_fapi_proc_ul_iq_samples_resp.c \
138         $(SRCDIR)/api/fapi2mac/p5/nr5g_fapi_proc_dl_iq_samples_resp.c \
139         $(SRCDIR)/api/fapi2mac/p5/nr5g_fapi_proc_shutdown_resp.c \
140         $(SRCDIR)/api/fapi2mac/p5/nr5g_fapi_proc_fapi_msg_header.c \
141         $(SRCDIR)/api/fapi2mac/p7/nr5g_fapi_proc_slot_ind.c \
142         $(SRCDIR)/api/fapi2mac/p7/nr5g_fapi_proc_crc_ind.c \
143         $(SRCDIR)/api/fapi2mac/p7/nr5g_fapi_proc_rach_ind.c \
144     $(SRCDIR)/api/fapi2mac/p7/nr5g_fapi_proc_rx_data_ind.c \
145         $(SRCDIR)/api/fapi2mac/p7/nr5g_fapi_proc_rx_data_uci_ind.c \
146         $(SRCDIR)/api/fapi2mac/p7/nr5g_fapi_proc_srs_ind.c \
147         $(SRCDIR)/api/fapi2mac/p7/nr5g_fapi_proc_uci_ind.c \
148         $(SRCDIR)/api/fapi2mac/p7/nr5g_fapi_proc_vendor_p7_msgs.c \
149         $(SRCDIR)/api/fapi2phy/nr5g_fapi_fapi2phy_api.c \
150         $(SRCDIR)/api/fapi2phy/p5/nr5g_fapi_proc_add_remove_core_msg.c \
151         $(SRCDIR)/api/fapi2phy/p5/nr5g_fapi_proc_config_req.c \
152         $(SRCDIR)/api/fapi2phy/p5/nr5g_fapi_proc_start_req.c \
153         $(SRCDIR)/api/fapi2phy/p5/nr5g_fapi_proc_stop_req.c \
154         $(SRCDIR)/api/fapi2phy/p5/nr5g_fapi_proc_shutdown_req.c \
155         $(SRCDIR)/api/fapi2phy/p5/nr5g_fapi_proc_dl_iq_samples_req.c \
156         $(SRCDIR)/api/fapi2phy/p5/nr5g_fapi_proc_ul_iq_samples_req.c \
157         $(SRCDIR)/api/fapi2phy/p7/nr5g_fapi_proc_dl_tti_req.c \
158         $(SRCDIR)/api/fapi2phy/p7/nr5g_fapi_proc_ul_tti_req.c \
159     $(SRCDIR)/api/fapi2phy/p7/nr5g_fapi_proc_tx_data_req.c \
160         $(SRCDIR)/api/fapi2phy/p7/nr5g_fapi_proc_ul_dci_req.c
161
162 OBJS := $(LINUX_ORAN_5G_FAPI_SRC:.c=.o)
163
164 PROJECT_OBJ_DIR = $(BUILDDIR)
165
166 OBJS := $(addprefix $(PROJECT_OBJ_DIR)/,$(OBJS))
167
168 DIRLIST := $(sort $(dir $(OBJS)))
169
170 CC_DEPS := $(addprefix __dep__,$(LINUX_ORAN_5G_FAPI_SRC))
171
172 GEN_DEP :=
173 ifeq ($(wildcard $(oran_5g_fapi_dep_file)),)
174 GEN_DEP := regenerate_dep
175 endif
176
177 .PHONY: $(APP)
178 $(APP): $(DIRLIST) echo_options $(GEN_DEP) $(OBJS)
179         @echo [LD] $(APP)
180         @$(CC) -o $(APP) $(OBJS) $(LDFLAGS) $(RTE_LIBS)
181 #       $(OBJDUMP) -d $(APP) > $(APP).asm
182
183 .PHONY : echo_options
184 echo_options:
185         @echo [CFLAGS]  $(CFLAGS)
186         @echo [LDFAGS]  $(LDFLAGS)
187
188
189 ifneq ($(wildcard $(oran_5g_fapi_dep_file)),)
190 include $(oran_5g_fapi_dep_file)
191 endif
192
193 $(DIRLIST) :
194         -@$(MD) $@
195
196 .PHONY : regenerate_dep
197 regenerate_dep : clean_dep echo_regeenrate_dep  $(CC_DEPS)
198
199 .PHONY: clean_dep
200 clean_dep:
201         $(RM) $(oran_5g_fapi_dep_file)
202
203 .PHONY : echo_regeenrate_dep
204 echo_regeenrate_dep:
205         @echo regenerating dep files
206
207
208 .PHONY : CC_DEPS
209 $(CC_DEPS):
210         @$(CC) -MM $(subst __dep__,,$@) -MT $(addprefix $(PROJECT_OBJ_DIR)/,$(patsubst %.c,%.o,$(subst __dep__,,$@))) $(CFLAGS) >> $(oran_5g_fapi_dep_file)
211
212 $(OBJS) : $(PROJECT_OBJ_DIR)/%.o: %.c
213         @echo [CC]    $(subst $(PROJECT_OBJ_DIR)/,,$@)
214         @$(CC) -c $(CFLAGS) -o"$@" $(patsubst %.o,%.c,$(subst $(PROJECT_OBJ_DIR)/,,$@))
215
216
217 .PHONY: xclean
218 xclean : clean_dep
219         @$(RM) $(OBJS)
220         @$(RM) $(APP)
221         @$(RM) $(BUILDDIR)
222
223 .PHONY: clean
224 clean :
225         @$(RM) $(OBJS)
226         @$(RM) $(APP)
227