blob: 14b67d5bb6e5ec0b7f8efa83cdadb7c65b187f64 [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'))
Manojkiran Eda53f67312021-05-18 17:38:04 +053036add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp'])
Tom Joseph02b4ee42021-05-02 22:44:36 -070037endif
George Liuab865f62020-03-10 09:12:52 +080038if get_option('softoff').enabled()
39 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
40endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050041if get_option('oem-ibm').enabled()
Brad Bishop06052cc2021-08-16 15:17:16 -040042 conf_data.set_quoted('FILE_TABLE_JSON', join_paths(package_datadir, 'fileTable.json'))
Adriana Kobylak76f820c2020-07-16 11:02:03 -050043 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
44 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Adriana Kobylakfa810d72020-10-16 16:27:28 -050045 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050046 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
47 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Sampa Misra69508502020-09-08 00:08:21 -050048 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060049 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Patrick Williamsb62c4302021-04-17 07:13:59 -050050 add_project_arguments('-DOEM_IBM', language : 'c')
51 add_project_arguments('-DOEM_IBM', language : 'cpp')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050052endif
Tom Joseph02b4ee42021-05-02 22:44:36 -070053conf_data.set('PLDM_VERBOSITY',get_option('verbosity'))
Tom Joseph74f27c72021-05-16 07:58:53 -070054conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries'))
55conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval'))
56conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out'))
Brad Bishop06052cc2021-08-16 15:17:16 -040057if get_option('libpldm-only').disabled()
58 conf_data.set_quoted('HOST_EID_PATH', join_paths(package_datadir, 'host_eid'))
59endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050060configure_file(output: 'config.h',
61 configuration: conf_data
62)
63
Patrick Williams3b1dc012021-04-16 21:51:47 -050064phosphor_dbus_interfaces = dependency(
65 'phosphor-dbus-interfaces',
66 fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'],
67)
68sdbusplus = dependency(
69 'sdbusplus',
70 fallback: ['sdbusplus', 'sdbusplus_dep'],
71)
72sdeventplus = dependency(
73 'sdeventplus',
74 fallback: ['sdeventplus', 'sdeventplus_dep'],
75)
Manojkiran Eda001f7882021-01-04 18:21:18 +053076
Patrick Williams3b1dc012021-04-16 21:51:47 -050077cpp = meson.get_compiler('cpp')
78
79if cpp.has_header('nlohmann/json.hpp')
80 nlohmann_json = declare_dependency()
81else
82 subproject('nlohmann-json')
83 nlohmann_json = declare_dependency(
84 include_directories: [
85 'subprojects/nlohmann-json/single_include',
86 'subprojects/nlohmann-json/single_include/nlohmann',
87 ]
88 )
89endif
90
91if cpp.has_header('CLI/CLI.hpp')
92 CLI11_dep = declare_dependency()
93else
94 CLI11_dep = dependency(
95 'CLI11',
96 fallback: [ 'CLI11', 'CLI11_dep' ],
97 )
98endif
99
Tom Joseph74f27c72021-05-16 07:58:53 -0700100if cpp.has_header_symbol('function2/function2.hpp', 'fu2::unique_function')
101 function2_dep = declare_dependency()
102else
103 subproject('function2')
104 function2_dep = declare_dependency(
105 include_directories: [
106 'subprojects/function2/include/function2'
107 ]
108 )
109endif
110
Tom Joseph53279882021-04-28 06:29:13 -0700111if get_option('oe-sdk').enabled()
112 # Setup OE SYSROOT
113 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
114 if OECORE_TARGET_SYSROOT == ''
115 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
116 endif
117 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
118 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
119 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
120 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
121else
122 dynamic_linker = []
123endif
124
125if get_option('tests').enabled()
126 gtest = dependency('gtest', main: true, disabler: true, required: false)
127 gmock = dependency('gmock', disabler: true, required: false)
128 if not gtest.found() or not gmock.found()
129 gtest_proj = import('cmake').subproject('googletest', required: false)
130 if gtest_proj.found()
131 gtest = declare_dependency(
132 dependencies: [
133 dependency('threads'),
134 gtest_proj.dependency('gtest'),
135 gtest_proj.dependency('gtest_main'),
136 ]
137 )
138 gmock = gtest_proj.dependency('gmock')
139 else
140 assert(
141 not get_option('tests').enabled(),
142 'Googletest is required if tests are enabled'
143 )
144 endif
145 endif
146endif
Patrick Williams3b1dc012021-04-16 21:51:47 -0500147
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500148subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +0800149
Lei YU31fc47e2020-02-27 11:41:45 +0800150if get_option('libpldm-only').disabled()
151
George Liuab437e52020-01-19 17:12:19 +0800152libpldmutils_headers = ['.']
153libpldmutils = library(
154 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -0500155 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +0800156 version: meson.project_version(),
157 dependencies: [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500158 libpldm_dep,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530159 phosphor_dbus_interfaces,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500160 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530161 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +0800162 ],
163 install: true,
164 include_directories: include_directories(libpldmutils_headers),
165)
166
167libpldmutils = declare_dependency(
168 include_directories: include_directories(libpldmutils_headers),
169 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500170
171deps = [
Tom Joseph74f27c72021-05-16 07:58:53 -0700172 function2_dep,
Patrick Williams6f4479c2021-04-16 21:39:44 -0500173 libpldm_dep,
Tom Joseph250c4752020-04-15 10:32:45 +0530174 libpldmutils,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500175 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530176 sdbusplus,
177 sdeventplus,
Tom Joseph02b4ee42021-05-02 22:44:36 -0700178 phosphor_dbus_interfaces,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500179]
180
Tom Joseph02b4ee42021-05-02 22:44:36 -0700181if get_option('libpldmresponder').enabled()
182subdir('libpldmresponder')
183deps += [
184 libpldmresponder
185]
186endif
187
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500188executable(
189 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -0500190 'pldmd/pldmd.cpp',
191 'pldmd/dbus_impl_requester.cpp',
192 'pldmd/instance_id.cpp',
193 'pldmd/dbus_impl_pdr.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500194 implicit_include_directories: false,
195 dependencies: deps,
196 install: true,
197 install_dir: get_option('bindir'))
198
Brad Bishopadbb2452021-08-19 16:33:53 -0400199if get_option('systemd').enabled()
200 systemd_system_unit_dir = dependency('systemd').get_variable(
201 pkgconfig: 'systemdsystemunitdir')
Manojkiran Edafec5d592021-01-21 12:27:34 +0530202
Brad Bishopadbb2452021-08-19 16:33:53 -0400203 configure_file(
204 copy: true,
205 input: 'pldmd/service_files/pldmd.service',
206 install: true,
207 install_dir: systemd_system_unit_dir,
208 output: 'pldmd.service',
209 )
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500210
Brad Bishopadbb2452021-08-19 16:33:53 -0400211 configure_file(
212 input: 'pldmd/verbosity/verbosity',
213 output: 'pldm_verbosity',
214 configuration: conf_data,
215 install: true,
216 install_dir: join_paths(get_option('sysconfdir'), 'default'))
Manojkiran Edaff80ebf2021-03-05 06:46:55 +0530217
Brad Bishopadbb2452021-08-19 16:33:53 -0400218 if get_option('oem-ibm').enabled()
219 subdir('oem/ibm/service_files')
220 endif
Manojkiran Edafec5d592021-01-21 12:27:34 +0530221endif
222
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500223subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800224
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500225subdir('configurations')
226
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600227if get_option('utilities').enabled()
228 subdir('utilities')
229endif
Lei YU31fc47e2020-02-27 11:41:45 +0800230
George Liu4c1a3fd2020-03-10 08:25:21 +0800231if get_option('softoff').enabled()
232 subdir('softoff')
233endif
234
Tom Joseph53279882021-04-28 06:29:13 -0700235if get_option('tests').enabled()
236 subdir('common/test')
237 subdir('host-bmc/test')
Tom Joseph74f27c72021-05-16 07:58:53 -0700238 subdir('requester/test')
Tom Joseph53279882021-04-28 06:29:13 -0700239 subdir('test')
240endif
241
Lei YU31fc47e2020-02-27 11:41:45 +0800242endif # pldm-only