blob: b321d34295aed23b318f425bd6dfe66c646be255 [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')
Tom Joseph02b4ee42021-05-02 22:44:36 -070032endif
George Liuab865f62020-03-10 09:12:52 +080033if get_option('softoff').enabled()
34 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
35endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050036if get_option('oem-ibm').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060037 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
Adriana Kobylak76f820c2020-07-16 11:02:03 -050038 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
39 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Adriana Kobylakfa810d72020-10-16 16:27:28 -050040 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050041 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
42 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Sampa Misra69508502020-09-08 00:08:21 -050043 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060044 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Patrick Williamsb62c4302021-04-17 07:13:59 -050045 add_project_arguments('-DOEM_IBM', language : 'c')
46 add_project_arguments('-DOEM_IBM', language : 'cpp')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050047endif
Tom Joseph02b4ee42021-05-02 22:44:36 -070048conf_data.set('PLDM_VERBOSITY',get_option('verbosity'))
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050049configure_file(output: 'config.h',
50 configuration: conf_data
51)
52
Patrick Williams3b1dc012021-04-16 21:51:47 -050053phosphor_dbus_interfaces = dependency(
54 'phosphor-dbus-interfaces',
55 fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'],
56)
57sdbusplus = dependency(
58 'sdbusplus',
59 fallback: ['sdbusplus', 'sdbusplus_dep'],
60)
61sdeventplus = dependency(
62 'sdeventplus',
63 fallback: ['sdeventplus', 'sdeventplus_dep'],
64)
Manojkiran Eda001f7882021-01-04 18:21:18 +053065systemd = dependency('systemd')
66
Patrick Williams3b1dc012021-04-16 21:51:47 -050067cpp = meson.get_compiler('cpp')
68
69if cpp.has_header('nlohmann/json.hpp')
70 nlohmann_json = declare_dependency()
71else
72 subproject('nlohmann-json')
73 nlohmann_json = declare_dependency(
74 include_directories: [
75 'subprojects/nlohmann-json/single_include',
76 'subprojects/nlohmann-json/single_include/nlohmann',
77 ]
78 )
79endif
80
81if cpp.has_header('CLI/CLI.hpp')
82 CLI11_dep = declare_dependency()
83else
84 CLI11_dep = dependency(
85 'CLI11',
86 fallback: [ 'CLI11', 'CLI11_dep' ],
87 )
88endif
89
Tom Joseph53279882021-04-28 06:29:13 -070090if get_option('oe-sdk').enabled()
91 # Setup OE SYSROOT
92 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
93 if OECORE_TARGET_SYSROOT == ''
94 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
95 endif
96 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
97 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
98 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
99 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
100else
101 dynamic_linker = []
102endif
103
104if get_option('tests').enabled()
105 gtest = dependency('gtest', main: true, disabler: true, required: false)
106 gmock = dependency('gmock', disabler: true, required: false)
107 if not gtest.found() or not gmock.found()
108 gtest_proj = import('cmake').subproject('googletest', required: false)
109 if gtest_proj.found()
110 gtest = declare_dependency(
111 dependencies: [
112 dependency('threads'),
113 gtest_proj.dependency('gtest'),
114 gtest_proj.dependency('gtest_main'),
115 ]
116 )
117 gmock = gtest_proj.dependency('gmock')
118 else
119 assert(
120 not get_option('tests').enabled(),
121 'Googletest is required if tests are enabled'
122 )
123 endif
124 endif
125endif
Patrick Williams3b1dc012021-04-16 21:51:47 -0500126
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500127subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +0800128
Lei YU31fc47e2020-02-27 11:41:45 +0800129if get_option('libpldm-only').disabled()
130
George Liuab437e52020-01-19 17:12:19 +0800131libpldmutils_headers = ['.']
132libpldmutils = library(
133 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -0500134 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +0800135 version: meson.project_version(),
136 dependencies: [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500137 libpldm_dep,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530138 phosphor_dbus_interfaces,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500139 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530140 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +0800141 ],
142 install: true,
143 include_directories: include_directories(libpldmutils_headers),
144)
145
146libpldmutils = declare_dependency(
147 include_directories: include_directories(libpldmutils_headers),
148 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500149
150deps = [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500151 libpldm_dep,
Tom Joseph250c4752020-04-15 10:32:45 +0530152 libpldmutils,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500153 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530154 sdbusplus,
155 sdeventplus,
Tom Joseph02b4ee42021-05-02 22:44:36 -0700156 phosphor_dbus_interfaces,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500157]
158
Tom Joseph02b4ee42021-05-02 22:44:36 -0700159if get_option('libpldmresponder').enabled()
160subdir('libpldmresponder')
161deps += [
162 libpldmresponder
163]
164endif
165
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500166executable(
167 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -0500168 'pldmd/pldmd.cpp',
169 'pldmd/dbus_impl_requester.cpp',
170 'pldmd/instance_id.cpp',
171 'pldmd/dbus_impl_pdr.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500172 implicit_include_directories: false,
173 dependencies: deps,
174 install: true,
175 install_dir: get_option('bindir'))
176
Manojkiran Edaa1d27602021-04-17 11:42:28 +0530177systemd_system_unit_dir = systemd.get_variable(
178 pkgconfig: 'systemdsystemunitdir',
179 pkgconfig_define: ['prefix', get_option('prefix')])
Manojkiran Edafec5d592021-01-21 12:27:34 +0530180
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500181configure_file(
182 copy: true,
Manojkiran Edafec5d592021-01-21 12:27:34 +0530183 input: 'pldmd/service_files/pldmd.service',
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500184 install: true,
185 install_dir: systemd_system_unit_dir,
186 output: 'pldmd.service',
187)
188
Manojkiran Edaff80ebf2021-03-05 06:46:55 +0530189configure_file(
190 input: 'pldmd/verbosity/verbosity',
191 output: 'pldm_verbosity',
192 configuration: conf_data,
193 install: true,
194 install_dir: '/etc/default')
195
Manojkiran Edafec5d592021-01-21 12:27:34 +0530196if get_option('oem-ibm').enabled()
197 subdir('oem/ibm/service_files')
198endif
199
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500200subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800201
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500202subdir('configurations')
203
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600204if get_option('utilities').enabled()
205 subdir('utilities')
206endif
Lei YU31fc47e2020-02-27 11:41:45 +0800207
George Liu4c1a3fd2020-03-10 08:25:21 +0800208if get_option('softoff').enabled()
209 subdir('softoff')
210endif
211
Tom Joseph53279882021-04-28 06:29:13 -0700212if get_option('tests').enabled()
213 subdir('common/test')
214 subdir('host-bmc/test')
215 subdir('test')
216endif
217
Lei YU31fc47e2020-02-27 11:41:45 +0800218endif # pldm-only