blob: b06a082613cffe13a433bf87dfb2334e2df5340e [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 Eda53f67312021-05-18 17:38:04 +053037add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp'])
Tom Joseph02b4ee42021-05-02 22:44:36 -070038endif
George Liuab865f62020-03-10 09:12:52 +080039if get_option('softoff').enabled()
40 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
41endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050042if get_option('oem-ibm').enabled()
Brad Bishop06052cc2021-08-16 15:17:16 -040043 conf_data.set_quoted('FILE_TABLE_JSON', join_paths(package_datadir, 'fileTable.json'))
Adriana Kobylak76f820c2020-07-16 11:02:03 -050044 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
45 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Adriana Kobylakfa810d72020-10-16 16:27:28 -050046 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050047 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
48 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Sampa Misra69508502020-09-08 00:08:21 -050049 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060050 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Patrick Williamsb62c4302021-04-17 07:13:59 -050051 add_project_arguments('-DOEM_IBM', language : 'c')
52 add_project_arguments('-DOEM_IBM', language : 'cpp')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050053endif
Tom Joseph02b4ee42021-05-02 22:44:36 -070054conf_data.set('PLDM_VERBOSITY',get_option('verbosity'))
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'))
Brad Bishop06052cc2021-08-16 15:17:16 -040058if get_option('libpldm-only').disabled()
59 conf_data.set_quoted('HOST_EID_PATH', join_paths(package_datadir, 'host_eid'))
60endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050061configure_file(output: 'config.h',
62 configuration: conf_data
63)
64
Patrick Williams3b1dc012021-04-16 21:51:47 -050065phosphor_dbus_interfaces = dependency(
66 'phosphor-dbus-interfaces',
67 fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'],
68)
69sdbusplus = dependency(
70 'sdbusplus',
71 fallback: ['sdbusplus', 'sdbusplus_dep'],
72)
73sdeventplus = dependency(
74 'sdeventplus',
75 fallback: ['sdeventplus', 'sdeventplus_dep'],
76)
Manojkiran Eda001f7882021-01-04 18:21:18 +053077
Patrick Williams3b1dc012021-04-16 21:51:47 -050078cpp = meson.get_compiler('cpp')
79
80if cpp.has_header('nlohmann/json.hpp')
81 nlohmann_json = declare_dependency()
82else
83 subproject('nlohmann-json')
84 nlohmann_json = declare_dependency(
85 include_directories: [
86 'subprojects/nlohmann-json/single_include',
87 'subprojects/nlohmann-json/single_include/nlohmann',
88 ]
89 )
90endif
91
92if cpp.has_header('CLI/CLI.hpp')
93 CLI11_dep = declare_dependency()
94else
95 CLI11_dep = dependency(
96 'CLI11',
97 fallback: [ 'CLI11', 'CLI11_dep' ],
98 )
99endif
100
Tom Joseph74f27c72021-05-16 07:58:53 -0700101if cpp.has_header_symbol('function2/function2.hpp', 'fu2::unique_function')
102 function2_dep = declare_dependency()
103else
104 subproject('function2')
105 function2_dep = declare_dependency(
106 include_directories: [
107 'subprojects/function2/include/function2'
108 ]
109 )
110endif
111
Tom Joseph53279882021-04-28 06:29:13 -0700112if get_option('oe-sdk').enabled()
113 # Setup OE SYSROOT
114 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
115 if OECORE_TARGET_SYSROOT == ''
116 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
117 endif
118 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
119 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
120 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
121 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
122else
123 dynamic_linker = []
124endif
125
126if get_option('tests').enabled()
127 gtest = dependency('gtest', main: true, disabler: true, required: false)
128 gmock = dependency('gmock', disabler: true, required: false)
129 if not gtest.found() or not gmock.found()
130 gtest_proj = import('cmake').subproject('googletest', required: false)
131 if gtest_proj.found()
132 gtest = declare_dependency(
133 dependencies: [
134 dependency('threads'),
135 gtest_proj.dependency('gtest'),
136 gtest_proj.dependency('gtest_main'),
137 ]
138 )
139 gmock = gtest_proj.dependency('gmock')
140 else
141 assert(
142 not get_option('tests').enabled(),
143 'Googletest is required if tests are enabled'
144 )
145 endif
146 endif
147endif
Patrick Williams3b1dc012021-04-16 21:51:47 -0500148
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500149subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +0800150
Lei YU31fc47e2020-02-27 11:41:45 +0800151if get_option('libpldm-only').disabled()
152
George Liuab437e52020-01-19 17:12:19 +0800153libpldmutils_headers = ['.']
154libpldmutils = library(
155 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -0500156 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +0800157 version: meson.project_version(),
158 dependencies: [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500159 libpldm_dep,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530160 phosphor_dbus_interfaces,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500161 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530162 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +0800163 ],
164 install: true,
165 include_directories: include_directories(libpldmutils_headers),
166)
167
168libpldmutils = declare_dependency(
169 include_directories: include_directories(libpldmutils_headers),
170 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500171
172deps = [
Tom Joseph74f27c72021-05-16 07:58:53 -0700173 function2_dep,
Patrick Williams6f4479c2021-04-16 21:39:44 -0500174 libpldm_dep,
Tom Joseph250c4752020-04-15 10:32:45 +0530175 libpldmutils,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500176 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530177 sdbusplus,
178 sdeventplus,
Tom Joseph02b4ee42021-05-02 22:44:36 -0700179 phosphor_dbus_interfaces,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500180]
181
Tom Joseph02b4ee42021-05-02 22:44:36 -0700182if get_option('libpldmresponder').enabled()
183subdir('libpldmresponder')
184deps += [
185 libpldmresponder
186]
187endif
188
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500189executable(
190 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -0500191 'pldmd/pldmd.cpp',
192 'pldmd/dbus_impl_requester.cpp',
193 'pldmd/instance_id.cpp',
194 'pldmd/dbus_impl_pdr.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500195 implicit_include_directories: false,
196 dependencies: deps,
197 install: true,
198 install_dir: get_option('bindir'))
199
Brad Bishopadbb2452021-08-19 16:33:53 -0400200if get_option('systemd').enabled()
201 systemd_system_unit_dir = dependency('systemd').get_variable(
202 pkgconfig: 'systemdsystemunitdir')
Manojkiran Edafec5d592021-01-21 12:27:34 +0530203
Brad Bishopadbb2452021-08-19 16:33:53 -0400204 configure_file(
205 copy: true,
206 input: 'pldmd/service_files/pldmd.service',
207 install: true,
208 install_dir: systemd_system_unit_dir,
209 output: 'pldmd.service',
210 )
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500211
Brad Bishopadbb2452021-08-19 16:33:53 -0400212 configure_file(
213 input: 'pldmd/verbosity/verbosity',
214 output: 'pldm_verbosity',
215 configuration: conf_data,
216 install: true,
217 install_dir: join_paths(get_option('sysconfdir'), 'default'))
Manojkiran Edaff80ebf2021-03-05 06:46:55 +0530218
Brad Bishopadbb2452021-08-19 16:33:53 -0400219 if get_option('oem-ibm').enabled()
220 subdir('oem/ibm/service_files')
221 endif
Manojkiran Edafec5d592021-01-21 12:27:34 +0530222endif
223
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500224subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800225
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500226subdir('configurations')
227
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600228if get_option('utilities').enabled()
229 subdir('utilities')
230endif
Lei YU31fc47e2020-02-27 11:41:45 +0800231
George Liu4c1a3fd2020-03-10 08:25:21 +0800232if get_option('softoff').enabled()
233 subdir('softoff')
234endif
235
Tom Joseph53279882021-04-28 06:29:13 -0700236if get_option('tests').enabled()
237 subdir('common/test')
238 subdir('host-bmc/test')
Tom Joseph74f27c72021-05-16 07:58:53 -0700239 subdir('requester/test')
Tom Joseph53279882021-04-28 06:29:13 -0700240 subdir('test')
241endif
242
Lei YU31fc47e2020-02-27 11:41:45 +0800243endif # pldm-only