blob: ca005f4968ec48c529777acc34c60acf70641302 [file] [log] [blame]
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05001project('pldm', ['c', 'cpp'],
Deepak Kodihallib0d15f12021-04-16 12:18:10 +05302 version: '0.1', meson_version: '>=0.57.0',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05003 default_options: [
4 'warning_level=3',
5 'default_library=shared',
6 'werror=true',
Deepak Kodihallib0d15f12021-04-16 12:18:10 +05307 'cpp_std=c++20',
Manojkiran Eda38ce97c2021-02-14 12:15:17 +05308 'buildtype=debugoptimized'
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05009 ])
10
11# Wno-psabi reduces the number of "Note:" messages when cross-compiling some STL
12# stuff for ARM. See https://stackoverflow.com/questions/48149323/strange-gcc-warning-when-compiling-qt-project
13# Basically, gcc 6 and gcc 7 are not ABI compatible, but since the whole OpenBMC
14# project uses the same compiler, we can safely ignmore these info notes.
15add_project_arguments('-Wno-psabi', language: 'cpp')
16
Manojkiran Eda38ce97c2021-02-14 12:15:17 +053017
18# Disable FORTIFY_SOURCE when compiling with no optimization
19if(get_option('optimization') == '0')
20 add_project_arguments('-U_FORTIFY_SOURCE',language:['cpp','c'])
21 message('Disabling FORTIFY_SOURCE as optimization is set to 0')
22endif
23
Brad Bishop06052cc2021-08-16 15:17:16 -040024package_datadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
25package_localstatedir = join_paths(get_option('prefix'), get_option('localstatedir'), meson.project_name())
26
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050027conf_data = configuration_data()
Tom Joseph02b4ee42021-05-02 22:44:36 -070028if get_option('libpldmresponder').enabled()
Brad Bishop06052cc2021-08-16 15:17:16 -040029conf_data.set_quoted('BIOS_JSONS_DIR', join_paths(package_datadir, 'bios'))
30conf_data.set_quoted('BIOS_TABLES_DIR', join_paths(package_localstatedir, 'bios'))
31conf_data.set_quoted('PDR_JSONS_DIR', join_paths(package_datadir, 'pdr'))
32conf_data.set_quoted('FRU_JSONS_DIR', join_paths(package_datadir, 'fru'))
33conf_data.set_quoted('FRU_MASTER_JSON', join_paths(package_datadir, 'fru_master.json'))
34conf_data.set_quoted('HOST_JSONS_DIR', join_paths(package_datadir, 'host'))
35conf_data.set_quoted('EVENTS_JSONS_DIR', join_paths(package_datadir, 'events'))
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -050036conf_data.set('HEARTBEAT_TIMEOUT', get_option('heartbeat-timeout-seconds'))
Manojkiran Edacc5f1582021-09-29 17:03:06 +053037conf_data.set('TERMINUS_ID', get_option('terminus-id'))
38conf_data.set('TERMINUS_HANDLE',get_option('terminus-handle'))
Manojkiran Eda53f67312021-05-18 17:38:04 +053039add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp'])
Tom Joseph02b4ee42021-05-02 22:44:36 -070040endif
George Liuab865f62020-03-10 09:12:52 +080041if get_option('softoff').enabled()
42 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
43endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050044if get_option('oem-ibm').enabled()
Brad Bishop06052cc2021-08-16 15:17:16 -040045 conf_data.set_quoted('FILE_TABLE_JSON', join_paths(package_datadir, 'fileTable.json'))
Adriana Kobylak76f820c2020-07-16 11:02:03 -050046 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
47 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Adriana Kobylakfa810d72020-10-16 16:27:28 -050048 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050049 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
50 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060051 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Patrick Williamsb62c4302021-04-17 07:13:59 -050052 add_project_arguments('-DOEM_IBM', language : 'c')
53 add_project_arguments('-DOEM_IBM', language : 'cpp')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050054endif
Tom Joseph74f27c72021-05-16 07:58:53 -070055conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries'))
56conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval'))
57conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out'))
Manojkiran Edaef773052021-07-29 09:29:28 +053058conf_data.set('FLIGHT_RECORDER_MAX_ENTRIES',get_option('flightrecorder-max-entries'))
Brad Bishop06052cc2021-08-16 15:17:16 -040059if get_option('libpldm-only').disabled()
60 conf_data.set_quoted('HOST_EID_PATH', join_paths(package_datadir, 'host_eid'))
61endif
Tom Josephef90b0d2021-08-17 07:12:49 -070062conf_data.set('MAXIMUM_TRANSFER_SIZE', get_option('maximum-transfer-size'))
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050063configure_file(output: 'config.h',
64 configuration: conf_data
65)
66
Patrick Williams3b1dc012021-04-16 21:51:47 -050067cpp = meson.get_compiler('cpp')
68
Manojkiran Edac79aa862021-12-14 16:54:06 +053069if get_option('libpldm-only').disabled()
Patrick Williams5c7253a2022-03-21 10:52:01 -050070 phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
71 sdbusplus = dependency('sdbusplus')
72 sdeventplus = dependency('sdeventplus')
Manojkiran Eda1421a802022-04-05 09:41:05 +053073 stdplus = dependency('stdplus')
Patrick Williams5c7253a2022-03-21 10:52:01 -050074
Manojkiran Edac79aa862021-12-14 16:54:06 +053075 if cpp.has_header('nlohmann/json.hpp')
76 nlohmann_json = declare_dependency()
77 else
Patrick Williams5c7253a2022-03-21 10:52:01 -050078 nlohmann_json = dependency('nlohmann_json')
Manojkiran Edac79aa862021-12-14 16:54:06 +053079 endif
Patrick Williams5c7253a2022-03-21 10:52:01 -050080
Manojkiran Edac79aa862021-12-14 16:54:06 +053081 if cpp.has_header('CLI/CLI.hpp')
82 CLI11_dep = declare_dependency()
83 else
Patrick Williams5c7253a2022-03-21 10:52:01 -050084 CLI11_dep = dependency('CLI11')
Manojkiran Edac79aa862021-12-14 16:54:06 +053085 endif
Patrick Williams3b1dc012021-04-16 21:51:47 -050086
Manojkiran Edac79aa862021-12-14 16:54:06 +053087 if cpp.has_header_symbol('function2/function2.hpp', 'fu2::unique_function')
88 function2_dep = declare_dependency()
89 else
90 subproject('function2')
91 function2_dep = declare_dependency(
92 include_directories: [
93 'subprojects/function2/include/function2'
94 ]
95 )
96 endif
Tom Joseph74f27c72021-05-16 07:58:53 -070097endif
98
Tom Joseph53279882021-04-28 06:29:13 -070099if get_option('oe-sdk').enabled()
100 # Setup OE SYSROOT
101 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
102 if OECORE_TARGET_SYSROOT == ''
103 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
104 endif
105 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
106 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
107 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
108 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
109else
110 dynamic_linker = []
111endif
112
113if get_option('tests').enabled()
114 gtest = dependency('gtest', main: true, disabler: true, required: false)
115 gmock = dependency('gmock', disabler: true, required: false)
116 if not gtest.found() or not gmock.found()
117 gtest_proj = import('cmake').subproject('googletest', required: false)
118 if gtest_proj.found()
119 gtest = declare_dependency(
120 dependencies: [
121 dependency('threads'),
122 gtest_proj.dependency('gtest'),
123 gtest_proj.dependency('gtest_main'),
124 ]
125 )
126 gmock = gtest_proj.dependency('gmock')
127 else
128 assert(
129 not get_option('tests').enabled(),
130 'Googletest is required if tests are enabled'
131 )
132 endif
133 endif
134endif
Patrick Williams3b1dc012021-04-16 21:51:47 -0500135
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500136subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +0800137
Lei YU31fc47e2020-02-27 11:41:45 +0800138if get_option('libpldm-only').disabled()
139
George Liuab437e52020-01-19 17:12:19 +0800140libpldmutils_headers = ['.']
141libpldmutils = library(
142 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -0500143 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +0800144 version: meson.project_version(),
145 dependencies: [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500146 libpldm_dep,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530147 phosphor_dbus_interfaces,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500148 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530149 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +0800150 ],
151 install: true,
152 include_directories: include_directories(libpldmutils_headers),
153)
154
155libpldmutils = declare_dependency(
156 include_directories: include_directories(libpldmutils_headers),
157 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500158
159deps = [
Tom Joseph74f27c72021-05-16 07:58:53 -0700160 function2_dep,
Patrick Williams6f4479c2021-04-16 21:39:44 -0500161 libpldm_dep,
Tom Joseph250c4752020-04-15 10:32:45 +0530162 libpldmutils,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500163 nlohmann_json,
Tom Joseph02b4ee42021-05-02 22:44:36 -0700164 phosphor_dbus_interfaces,
Patrick Williamsd2ab1c22022-04-13 09:00:40 -0500165 sdbusplus,
166 sdeventplus,
167 stdplus,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500168]
169
Tom Joseph02b4ee42021-05-02 22:44:36 -0700170if get_option('libpldmresponder').enabled()
171subdir('libpldmresponder')
172deps += [
Manojkiran Eda998dc4e2022-07-28 08:18:03 +0530173 libpldmresponder_dep
Tom Joseph02b4ee42021-05-02 22:44:36 -0700174]
175endif
176
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500177executable(
178 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -0500179 'pldmd/pldmd.cpp',
180 'pldmd/dbus_impl_requester.cpp',
181 'pldmd/instance_id.cpp',
182 'pldmd/dbus_impl_pdr.cpp',
Tom Joseph75356c12021-06-20 03:52:40 -0700183 'fw-update/inventory_manager.cpp',
Tom Joseph1630f392021-06-29 04:30:03 -0700184 'fw-update/package_parser.cpp',
Tom Josephef90b0d2021-08-17 07:12:49 -0700185 'fw-update/device_updater.cpp',
Tom Joseph4d8d5772021-08-17 07:35:05 -0700186 'fw-update/watch.cpp',
187 'fw-update/update_manager.cpp',
Tom Josephfb3bc062021-08-17 07:48:11 -0700188 'requester/mctp_endpoint_discovery.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500189 implicit_include_directories: false,
190 dependencies: deps,
191 install: true,
192 install_dir: get_option('bindir'))
193
Brad Bishopadbb2452021-08-19 16:33:53 -0400194if get_option('systemd').enabled()
195 systemd_system_unit_dir = dependency('systemd').get_variable(
196 pkgconfig: 'systemdsystemunitdir')
Manojkiran Edafec5d592021-01-21 12:27:34 +0530197
Brad Bishopadbb2452021-08-19 16:33:53 -0400198 configure_file(
199 copy: true,
200 input: 'pldmd/service_files/pldmd.service',
201 install: true,
202 install_dir: systemd_system_unit_dir,
203 output: 'pldmd.service',
204 )
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500205
Brad Bishopadbb2452021-08-19 16:33:53 -0400206 if get_option('oem-ibm').enabled()
207 subdir('oem/ibm/service_files')
208 endif
Manojkiran Edafec5d592021-01-21 12:27:34 +0530209endif
210
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500211subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800212
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500213subdir('configurations')
214
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600215if get_option('utilities').enabled()
216 subdir('utilities')
217endif
Lei YU31fc47e2020-02-27 11:41:45 +0800218
George Liu4c1a3fd2020-03-10 08:25:21 +0800219if get_option('softoff').enabled()
220 subdir('softoff')
221endif
222
Tom Joseph53279882021-04-28 06:29:13 -0700223if get_option('tests').enabled()
224 subdir('common/test')
Tom Joseph75356c12021-06-20 03:52:40 -0700225 subdir('fw-update/test')
Tom Joseph53279882021-04-28 06:29:13 -0700226 subdir('host-bmc/test')
Tom Joseph74f27c72021-05-16 07:58:53 -0700227 subdir('requester/test')
Tom Joseph53279882021-04-28 06:29:13 -0700228 subdir('test')
229endif
230
Lei YU31fc47e2020-02-27 11:41:45 +0800231endif # pldm-only