blob: 949d8895d4dcf52708262866cce75c6fd1940d6f [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')
Manojkiran Eda03b01ca2021-06-29 08:55:09 +053030conf_data.set_quoted('FRU_MASTER_JSON', '/usr/share/pldm/fru_master.json')
Deepak Kodihalli87514cc2020-04-16 09:08:38 -050031conf_data.set_quoted('HOST_JSONS_DIR', '/usr/share/pldm/host')
TOM JOSEPHd4d97a52020-03-23 14:36:34 +053032conf_data.set_quoted('EVENTS_JSONS_DIR', '/usr/share/pldm/events')
Manojkiran Eda53f67312021-05-18 17:38:04 +053033add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp'])
Tom Joseph02b4ee42021-05-02 22:44:36 -070034endif
George Liuab865f62020-03-10 09:12:52 +080035if get_option('softoff').enabled()
36 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
37endif
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050038if get_option('oem-ibm').enabled()
Deepak Kodihalli7523d5c2019-11-08 02:22:29 -060039 conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
Adriana Kobylak76f820c2020-07-16 11:02:03 -050040 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
41 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Adriana Kobylakfa810d72020-10-16 16:27:28 -050042 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050043 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
44 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Sampa Misra69508502020-09-08 00:08:21 -050045 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060046 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Patrick Williamsb62c4302021-04-17 07:13:59 -050047 add_project_arguments('-DOEM_IBM', language : 'c')
48 add_project_arguments('-DOEM_IBM', language : 'cpp')
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050049endif
Tom Joseph02b4ee42021-05-02 22:44:36 -070050conf_data.set('PLDM_VERBOSITY',get_option('verbosity'))
Tom Joseph74f27c72021-05-16 07:58:53 -070051conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries'))
52conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval'))
53conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out'))
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050054configure_file(output: 'config.h',
55 configuration: conf_data
56)
57
Patrick Williams3b1dc012021-04-16 21:51:47 -050058phosphor_dbus_interfaces = dependency(
59 'phosphor-dbus-interfaces',
60 fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'],
61)
62sdbusplus = dependency(
63 'sdbusplus',
64 fallback: ['sdbusplus', 'sdbusplus_dep'],
65)
66sdeventplus = dependency(
67 'sdeventplus',
68 fallback: ['sdeventplus', 'sdeventplus_dep'],
69)
Manojkiran Eda001f7882021-01-04 18:21:18 +053070systemd = dependency('systemd')
71
Patrick Williams3b1dc012021-04-16 21:51:47 -050072cpp = meson.get_compiler('cpp')
73
74if cpp.has_header('nlohmann/json.hpp')
75 nlohmann_json = declare_dependency()
76else
77 subproject('nlohmann-json')
78 nlohmann_json = declare_dependency(
79 include_directories: [
80 'subprojects/nlohmann-json/single_include',
81 'subprojects/nlohmann-json/single_include/nlohmann',
82 ]
83 )
84endif
85
86if cpp.has_header('CLI/CLI.hpp')
87 CLI11_dep = declare_dependency()
88else
89 CLI11_dep = dependency(
90 'CLI11',
91 fallback: [ 'CLI11', 'CLI11_dep' ],
92 )
93endif
94
Tom Joseph74f27c72021-05-16 07:58:53 -070095if cpp.has_header_symbol('function2/function2.hpp', 'fu2::unique_function')
96 function2_dep = declare_dependency()
97else
98 subproject('function2')
99 function2_dep = declare_dependency(
100 include_directories: [
101 'subprojects/function2/include/function2'
102 ]
103 )
104endif
105
Tom Joseph53279882021-04-28 06:29:13 -0700106if get_option('oe-sdk').enabled()
107 # Setup OE SYSROOT
108 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
109 if OECORE_TARGET_SYSROOT == ''
110 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
111 endif
112 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
113 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
114 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
115 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
116else
117 dynamic_linker = []
118endif
119
120if get_option('tests').enabled()
121 gtest = dependency('gtest', main: true, disabler: true, required: false)
122 gmock = dependency('gmock', disabler: true, required: false)
123 if not gtest.found() or not gmock.found()
124 gtest_proj = import('cmake').subproject('googletest', required: false)
125 if gtest_proj.found()
126 gtest = declare_dependency(
127 dependencies: [
128 dependency('threads'),
129 gtest_proj.dependency('gtest'),
130 gtest_proj.dependency('gtest_main'),
131 ]
132 )
133 gmock = gtest_proj.dependency('gmock')
134 else
135 assert(
136 not get_option('tests').enabled(),
137 'Googletest is required if tests are enabled'
138 )
139 endif
140 endif
141endif
Patrick Williams3b1dc012021-04-16 21:51:47 -0500142
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500143subdir('libpldm')
George Liuab437e52020-01-19 17:12:19 +0800144
Lei YU31fc47e2020-02-27 11:41:45 +0800145if get_option('libpldm-only').disabled()
146
George Liuab437e52020-01-19 17:12:19 +0800147libpldmutils_headers = ['.']
148libpldmutils = library(
149 'pldmutils',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -0500150 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +0800151 version: meson.project_version(),
152 dependencies: [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500153 libpldm_dep,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530154 phosphor_dbus_interfaces,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500155 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530156 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +0800157 ],
158 install: true,
159 include_directories: include_directories(libpldmutils_headers),
160)
161
162libpldmutils = declare_dependency(
163 include_directories: include_directories(libpldmutils_headers),
164 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500165
166deps = [
Tom Joseph74f27c72021-05-16 07:58:53 -0700167 function2_dep,
Patrick Williams6f4479c2021-04-16 21:39:44 -0500168 libpldm_dep,
Tom Joseph250c4752020-04-15 10:32:45 +0530169 libpldmutils,
Patrick Williams3b1dc012021-04-16 21:51:47 -0500170 nlohmann_json,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530171 sdbusplus,
172 sdeventplus,
Tom Joseph02b4ee42021-05-02 22:44:36 -0700173 phosphor_dbus_interfaces,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500174]
175
Tom Joseph02b4ee42021-05-02 22:44:36 -0700176if get_option('libpldmresponder').enabled()
177subdir('libpldmresponder')
178deps += [
179 libpldmresponder
180]
181endif
182
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500183executable(
184 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -0500185 'pldmd/pldmd.cpp',
186 'pldmd/dbus_impl_requester.cpp',
187 'pldmd/instance_id.cpp',
188 'pldmd/dbus_impl_pdr.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
Manojkiran Edaa1d27602021-04-17 11:42:28 +0530194systemd_system_unit_dir = systemd.get_variable(
195 pkgconfig: 'systemdsystemunitdir',
196 pkgconfig_define: ['prefix', get_option('prefix')])
Manojkiran Edafec5d592021-01-21 12:27:34 +0530197
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500198configure_file(
199 copy: true,
Manojkiran Edafec5d592021-01-21 12:27:34 +0530200 input: 'pldmd/service_files/pldmd.service',
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500201 install: true,
202 install_dir: systemd_system_unit_dir,
203 output: 'pldmd.service',
204)
205
Manojkiran Edaff80ebf2021-03-05 06:46:55 +0530206configure_file(
207 input: 'pldmd/verbosity/verbosity',
208 output: 'pldm_verbosity',
209 configuration: conf_data,
210 install: true,
211 install_dir: '/etc/default')
212
Manojkiran Edafec5d592021-01-21 12:27:34 +0530213if get_option('oem-ibm').enabled()
214 subdir('oem/ibm/service_files')
215endif
216
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500217subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800218
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500219subdir('configurations')
220
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600221if get_option('utilities').enabled()
222 subdir('utilities')
223endif
Lei YU31fc47e2020-02-27 11:41:45 +0800224
George Liu4c1a3fd2020-03-10 08:25:21 +0800225if get_option('softoff').enabled()
226 subdir('softoff')
227endif
228
Tom Joseph53279882021-04-28 06:29:13 -0700229if get_option('tests').enabled()
230 subdir('common/test')
231 subdir('host-bmc/test')
Tom Joseph74f27c72021-05-16 07:58:53 -0700232 subdir('requester/test')
Tom Joseph53279882021-04-28 06:29:13 -0700233 subdir('test')
234endif
235
Lei YU31fc47e2020-02-27 11:41:45 +0800236endif # pldm-only