blob: c5ca30e07237489cb5792b475b423a1d0a28133a [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
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050024conf_data = configuration_data()
Tom Joseph02b4ee42021-05-02 22:44:36 -070025if get_option('libpldmresponder').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060026conf_data.set_quoted('BIOS_JSONS_DIR', '/usr/share/pldm/bios')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050027conf_data.set_quoted('BIOS_TABLES_DIR', '/var/lib/pldm/bios')
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060028conf_data.set_quoted('PDR_JSONS_DIR', '/usr/share/pldm/pdr')
Deepak Kodihallie60c5822019-10-23 03:26:15 -050029conf_data.set_quoted('FRU_JSONS_DIR', '/usr/share/pldm/fru')
Deepak Kodihalli87514cc2020-04-16 09:08:38 -050030conf_data.set_quoted('HOST_JSONS_DIR', '/usr/share/pldm/host')
TOM JOSEPHd4d97a52020-03-23 14:36:34 +053031conf_data.set_quoted('EVENTS_JSONS_DIR', '/usr/share/pldm/events')
Manojkiran Eda53f67312021-05-18 17:38:04 +053032add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp'])
Tom Joseph02b4ee42021-05-02 22:44:36 -070033endif
George Liuab865f62020-03-10 09:12:52 +080034if get_option('softoff').enabled()
35 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
36endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050037if get_option('oem-ibm').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060038 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
Adriana Kobylak76f820c2020-07-16 11:02:03 -050039 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
40 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Adriana Kobylakfa810d72020-10-16 16:27:28 -050041 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050042 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
43 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Sampa Misra69508502020-09-08 00:08:21 -050044 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060045 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Patrick Williamsb62c4302021-04-17 07:13:59 -050046 add_project_arguments('-DOEM_IBM', language : 'c')
47 add_project_arguments('-DOEM_IBM', language : 'cpp')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050048endif
Tom Joseph02b4ee42021-05-02 22:44:36 -070049conf_data.set('PLDM_VERBOSITY',get_option('verbosity'))
Tom Joseph74f27c72021-05-16 07:58:53 -070050conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries'))
51conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval'))
52conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out'))
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050053configure_file(output: 'config.h',
54 configuration: conf_data
55)
56
Patrick Williams3b1dc012021-04-16 21:51:47 -050057phosphor_dbus_interfaces = dependency(
58 'phosphor-dbus-interfaces',
59 fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'],
60)
61sdbusplus = dependency(
62 'sdbusplus',
63 fallback: ['sdbusplus', 'sdbusplus_dep'],
64)
65sdeventplus = dependency(
66 'sdeventplus',
67 fallback: ['sdeventplus', 'sdeventplus_dep'],
68)
Manojkiran Eda001f7882021-01-04 18:21:18 +053069systemd = dependency('systemd')
70
Patrick Williams3b1dc012021-04-16 21:51:47 -050071cpp = meson.get_compiler('cpp')
72
73if cpp.has_header('nlohmann/json.hpp')
74 nlohmann_json = declare_dependency()
75else
76 subproject('nlohmann-json')
77 nlohmann_json = declare_dependency(
78 include_directories: [
79 'subprojects/nlohmann-json/single_include',
80 'subprojects/nlohmann-json/single_include/nlohmann',
81 ]
82 )
83endif
84
85if cpp.has_header('CLI/CLI.hpp')
86 CLI11_dep = declare_dependency()
87else
88 CLI11_dep = dependency(
89 'CLI11',
90 fallback: [ 'CLI11', 'CLI11_dep' ],
91 )
92endif
93
Tom Joseph74f27c72021-05-16 07:58:53 -070094if cpp.has_header_symbol('function2/function2.hpp', 'fu2::unique_function')
95 function2_dep = declare_dependency()
96else
97 subproject('function2')
98 function2_dep = declare_dependency(
99 include_directories: [
100 'subprojects/function2/include/function2'
101 ]
102 )
103endif
104
Tom Joseph53279882021-04-28 06:29:13 -0700105if get_option('oe-sdk').enabled()
106 # Setup OE SYSROOT
107 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
108 if OECORE_TARGET_SYSROOT == ''
109 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
110 endif
111 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
112 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
113 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
114 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
115else
116 dynamic_linker = []
117endif
118
119if get_option('tests').enabled()
120 gtest = dependency('gtest', main: true, disabler: true, required: false)
121 gmock = dependency('gmock', disabler: true, required: false)
122 if not gtest.found() or not gmock.found()
123 gtest_proj = import('cmake').subproject('googletest', required: false)
124 if gtest_proj.found()
125 gtest = declare_dependency(
126 dependencies: [
127 dependency('threads'),
128 gtest_proj.dependency('gtest'),
129 gtest_proj.dependency('gtest_main'),
130 ]
131 )
132 gmock = gtest_proj.dependency('gmock')
133 else
134 assert(
135 not get_option('tests').enabled(),
136 'Googletest is required if tests are enabled'
137 )
138 endif
139 endif
140endif
Patrick Williams3b1dc012021-04-16 21:51:47 -0500141
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500142subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +0800143
Lei YU31fc47e2020-02-27 11:41:45 +0800144if get_option('libpldm-only').disabled()
145
George Liuab437e52020-01-19 17:12:19 +0800146libpldmutils_headers = ['.']
147libpldmutils = library(
148 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -0500149 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +0800150 version: meson.project_version(),
151 dependencies: [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500152 libpldm_dep,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530153 phosphor_dbus_interfaces,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500154 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530155 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +0800156 ],
157 install: true,
158 include_directories: include_directories(libpldmutils_headers),
159)
160
161libpldmutils = declare_dependency(
162 include_directories: include_directories(libpldmutils_headers),
163 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500164
165deps = [
Tom Joseph74f27c72021-05-16 07:58:53 -0700166 function2_dep,
Patrick Williams6f4479c2021-04-16 21:39:44 -0500167 libpldm_dep,
Tom Joseph250c4752020-04-15 10:32:45 +0530168 libpldmutils,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500169 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530170 sdbusplus,
171 sdeventplus,
Tom Joseph02b4ee42021-05-02 22:44:36 -0700172 phosphor_dbus_interfaces,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500173]
174
Tom Joseph02b4ee42021-05-02 22:44:36 -0700175if get_option('libpldmresponder').enabled()
176subdir('libpldmresponder')
177deps += [
178 libpldmresponder
179]
180endif
181
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500182executable(
183 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -0500184 'pldmd/pldmd.cpp',
185 'pldmd/dbus_impl_requester.cpp',
186 'pldmd/instance_id.cpp',
187 'pldmd/dbus_impl_pdr.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500188 implicit_include_directories: false,
189 dependencies: deps,
190 install: true,
191 install_dir: get_option('bindir'))
192
Manojkiran Edaa1d27602021-04-17 11:42:28 +0530193systemd_system_unit_dir = systemd.get_variable(
194 pkgconfig: 'systemdsystemunitdir',
195 pkgconfig_define: ['prefix', get_option('prefix')])
Manojkiran Edafec5d592021-01-21 12:27:34 +0530196
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500197configure_file(
198 copy: true,
Manojkiran Edafec5d592021-01-21 12:27:34 +0530199 input: 'pldmd/service_files/pldmd.service',
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500200 install: true,
201 install_dir: systemd_system_unit_dir,
202 output: 'pldmd.service',
203)
204
Manojkiran Edaff80ebf2021-03-05 06:46:55 +0530205configure_file(
206 input: 'pldmd/verbosity/verbosity',
207 output: 'pldm_verbosity',
208 configuration: conf_data,
209 install: true,
210 install_dir: '/etc/default')
211
Manojkiran Edafec5d592021-01-21 12:27:34 +0530212if get_option('oem-ibm').enabled()
213 subdir('oem/ibm/service_files')
214endif
215
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500216subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800217
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500218subdir('configurations')
219
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600220if get_option('utilities').enabled()
221 subdir('utilities')
222endif
Lei YU31fc47e2020-02-27 11:41:45 +0800223
George Liu4c1a3fd2020-03-10 08:25:21 +0800224if get_option('softoff').enabled()
225 subdir('softoff')
226endif
227
Tom Joseph53279882021-04-28 06:29:13 -0700228if get_option('tests').enabled()
229 subdir('common/test')
230 subdir('host-bmc/test')
Tom Joseph74f27c72021-05-16 07:58:53 -0700231 subdir('requester/test')
Tom Joseph53279882021-04-28 06:29:13 -0700232 subdir('test')
233endif
234
Lei YU31fc47e2020-02-27 11:41:45 +0800235endif # pldm-only