blob: f64e7183112b3e87a133a24a5c7da0578e2a5285 [file] [log] [blame]
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05001project('pldm', ['c', 'cpp'],
Patrick Williamsb95bbe32023-07-12 11:15:37 -05002 version: '0.1', meson_version: '>=1.1.1',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -05003 default_options: [
4 'warning_level=3',
5 'default_library=shared',
6 'werror=true',
Patrick Williamsb95bbe32023-07-12 11:15:37 -05007 'cpp_std=c++23',
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()
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100028cpp = meson.get_compiler('cpp')
29
30# Enable POSIX poll APIs in libpldm
31if cpp.has_header('poll.h')
32 conf_data.set('PLDM_HAS_POLL', 1)
33endif
Patrick Williams87bfacd2023-11-29 06:44:36 -060034if get_option('libpldmresponder').allowed()
Brad Bishop06052cc2021-08-16 15:17:16 -040035conf_data.set_quoted('BIOS_JSONS_DIR', join_paths(package_datadir, 'bios'))
36conf_data.set_quoted('BIOS_TABLES_DIR', join_paths(package_localstatedir, 'bios'))
37conf_data.set_quoted('PDR_JSONS_DIR', join_paths(package_datadir, 'pdr'))
38conf_data.set_quoted('FRU_JSONS_DIR', join_paths(package_datadir, 'fru'))
39conf_data.set_quoted('FRU_MASTER_JSON', join_paths(package_datadir, 'fru_master.json'))
40conf_data.set_quoted('HOST_JSONS_DIR', join_paths(package_datadir, 'host'))
41conf_data.set_quoted('EVENTS_JSONS_DIR', join_paths(package_datadir, 'events'))
Sagar Srinivasa6a8ccd2021-04-01 07:58:33 -050042conf_data.set('HEARTBEAT_TIMEOUT', get_option('heartbeat-timeout-seconds'))
Manojkiran Edacc5f1582021-09-29 17:03:06 +053043conf_data.set('TERMINUS_ID', get_option('terminus-id'))
44conf_data.set('TERMINUS_HANDLE',get_option('terminus-handle'))
vkaverap@in.ibm.com9138c202023-05-19 07:50:47 -050045conf_data.set('DBUS_TIMEOUT', get_option('dbus-timeout-value'))
Manojkiran Eda53f67312021-05-18 17:38:04 +053046add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp'])
Tom Joseph02b4ee42021-05-02 22:44:36 -070047endif
Patrick Williams87bfacd2023-11-29 06:44:36 -060048if get_option('softoff').allowed()
George Liuab865f62020-03-10 09:12:52 +080049 conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
Sagar Srinivas4d99c312024-03-28 06:50:13 -050050 conf_data.set_quoted('SOFTOFF_CONFIG_JSON', join_paths(package_datadir, 'softoff'))
George Liuab865f62020-03-10 09:12:52 +080051endif
Patrick Williams87bfacd2023-11-29 06:44:36 -060052if get_option('oem-ibm').allowed()
Brad Bishop06052cc2021-08-16 15:17:16 -040053 conf_data.set_quoted('FILE_TABLE_JSON', join_paths(package_datadir, 'fileTable.json'))
Adriana Kobylak76f820c2020-07-16 11:02:03 -050054 conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
55 conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
Adriana Kobylakfa810d72020-10-16 16:27:28 -050056 conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
Deepak Kodihalli09b017b2020-08-26 07:37:32 -050057 conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
58 conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
Deepak Kodihalli4c164b02020-03-07 03:23:31 -060059 conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
Patrick Williams0a4ae8a2024-01-02 10:08:33 -060060 add_project_arguments('-DOEM_IBM', language : ['c', 'cpp'])
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050061endif
Tom Joseph74f27c72021-05-16 07:58:53 -070062conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries'))
63conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval'))
64conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out'))
Manojkiran Edaef773052021-07-29 09:29:28 +053065conf_data.set('FLIGHT_RECORDER_MAX_ENTRIES',get_option('flightrecorder-max-entries'))
Manojkiran Edab69d8bf2022-09-28 01:11:31 +053066conf_data.set_quoted('HOST_EID_PATH', join_paths(package_datadir, 'host_eid'))
Tom Josephef90b0d2021-08-17 07:12:49 -070067conf_data.set('MAXIMUM_TRANSFER_SIZE', get_option('maximum-transfer-size'))
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +100068if get_option('transport-implementation') == 'mctp-demux'
69 conf_data.set('PLDM_TRANSPORT_WITH_MCTP_DEMUX', 1)
70elif get_option('transport-implementation') == 'af-mctp'
71 conf_data.set('PLDM_TRANSPORT_WITH_AF_MCTP', 1)
72endif
Manojkiran Edacfefc152024-02-08 05:35:51 +053073
74configure_file(output: 'config.h',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -050075 configuration: conf_data
76)
77
Manojkiran Edacfefc152024-02-08 05:35:51 +053078add_project_arguments('-include', '@0@'.format(meson.current_build_dir() /'config.h'), language: 'cpp')
Andrew Jeffery47792272023-06-13 17:15:09 +093079
Manojkiran Edafc81a432023-07-27 05:51:12 +053080filesystem = import('fs')
Patrick Williams3b1dc012021-04-16 21:51:47 -050081
Manojkiran Edab69d8bf2022-09-28 01:11:31 +053082phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
83sdbusplus = dependency('sdbusplus')
84sdeventplus = dependency('sdeventplus')
85stdplus = dependency('stdplus')
Riya Dixit49cfb132023-03-02 04:26:53 -060086phosphor_logging_dep = dependency('phosphor-logging')
Patrick Williams5c7253a2022-03-21 10:52:01 -050087
Patrick Williamscf772842023-12-07 14:39:52 -060088nlohmann_json_dep = dependency('nlohmann_json', include_type: 'system')
Patrick Williams5c7253a2022-03-21 10:52:01 -050089
Manojkiran Edab69d8bf2022-09-28 01:11:31 +053090if cpp.has_header('CLI/CLI.hpp')
91 CLI11_dep = declare_dependency()
92else
93 CLI11_dep = dependency('CLI11')
94endif
Patrick Williams3b1dc012021-04-16 21:51:47 -050095
Patrick Williams87bfacd2023-11-29 06:44:36 -060096if get_option('oe-sdk').allowed()
Tom Joseph53279882021-04-28 06:29:13 -070097 # Setup OE SYSROOT
98 OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
99 if OECORE_TARGET_SYSROOT == ''
100 error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
101 endif
102 message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
103 rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
104 ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
105 dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
106else
107 dynamic_linker = []
108endif
109
Patrick Williams87bfacd2023-11-29 06:44:36 -0600110if get_option('tests').allowed()
Tom Joseph53279882021-04-28 06:29:13 -0700111 gtest = dependency('gtest', main: true, disabler: true, required: false)
112 gmock = dependency('gmock', disabler: true, required: false)
113 if not gtest.found() or not gmock.found()
114 gtest_proj = import('cmake').subproject('googletest', required: false)
115 if gtest_proj.found()
116 gtest = declare_dependency(
117 dependencies: [
118 dependency('threads'),
119 gtest_proj.dependency('gtest'),
120 gtest_proj.dependency('gtest_main'),
121 ]
122 )
123 gmock = gtest_proj.dependency('gmock')
124 else
125 assert(
Patrick Williams87bfacd2023-11-29 06:44:36 -0600126 not get_option('tests').allowed(),
Tom Joseph53279882021-04-28 06:29:13 -0700127 'Googletest is required if tests are enabled'
128 )
129 endif
130 endif
131endif
Patrick Williams3b1dc012021-04-16 21:51:47 -0500132
Andrew Jeffery4668f5c2024-01-15 14:59:17 +1030133libpldm_dep = dependency('libpldm', fallback:['libpldm','libpldm_dep'], include_type: 'system')
George Liuab437e52020-01-19 17:12:19 +0800134
Lei YU31fc47e2020-02-27 11:41:45 +0800135
George Liuab437e52020-01-19 17:12:19 +0800136libpldmutils_headers = ['.']
137libpldmutils = library(
138 'pldmutils',
Rashmica Gupta1ed5f7a2023-05-22 13:56:42 +1000139 'common/transport.cpp',
Deepak Kodihallid130e1a2020-06-17 05:55:32 -0500140 'common/utils.cpp',
George Liuab437e52020-01-19 17:12:19 +0800141 version: meson.project_version(),
142 dependencies: [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500143 libpldm_dep,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530144 phosphor_dbus_interfaces,
Riya Dixit49cfb132023-03-02 04:26:53 -0600145 phosphor_logging_dep,
Patrick Williamscf772842023-12-07 14:39:52 -0600146 nlohmann_json_dep,
Manojkiran Eda001f7882021-01-04 18:21:18 +0530147 sdbusplus,
George Liuab437e52020-01-19 17:12:19 +0800148 ],
149 install: true,
150 include_directories: include_directories(libpldmutils_headers),
151)
152
153libpldmutils = declare_dependency(
154 include_directories: include_directories(libpldmutils_headers),
155 link_with: libpldmutils)
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500156
157deps = [
Patrick Williams6f4479c2021-04-16 21:39:44 -0500158 libpldm_dep,
Tom Joseph250c4752020-04-15 10:32:45 +0530159 libpldmutils,
Patrick Williamscf772842023-12-07 14:39:52 -0600160 nlohmann_json_dep,
Tom Joseph02b4ee42021-05-02 22:44:36 -0700161 phosphor_dbus_interfaces,
Riya Dixit49cfb132023-03-02 04:26:53 -0600162 phosphor_logging_dep,
Patrick Williamsd2ab1c22022-04-13 09:00:40 -0500163 sdbusplus,
164 sdeventplus,
165 stdplus,
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500166]
167
Patrick Williams87bfacd2023-11-29 06:44:36 -0600168if get_option('libpldmresponder').allowed()
Tom Joseph02b4ee42021-05-02 22:44:36 -0700169subdir('libpldmresponder')
170deps += [
Manojkiran Eda998dc4e2022-07-28 08:18:03 +0530171 libpldmresponder_dep
Tom Joseph02b4ee42021-05-02 22:44:36 -0700172]
173endif
174
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500175executable(
176 'pldmd',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -0500177 'pldmd/pldmd.cpp',
Deepak Kodihalli1521f6d2020-06-16 08:51:02 -0500178 'pldmd/dbus_impl_pdr.cpp',
Tom Joseph75356c12021-06-20 03:52:40 -0700179 'fw-update/inventory_manager.cpp',
Tom Joseph1630f392021-06-29 04:30:03 -0700180 'fw-update/package_parser.cpp',
Tom Josephef90b0d2021-08-17 07:12:49 -0700181 'fw-update/device_updater.cpp',
Tom Joseph4d8d5772021-08-17 07:35:05 -0700182 'fw-update/watch.cpp',
183 'fw-update/update_manager.cpp',
Tom Josephfb3bc062021-08-17 07:48:11 -0700184 'requester/mctp_endpoint_discovery.cpp',
Deepak Kodihalli3c275e12019-09-21 06:39:39 -0500185 implicit_include_directories: false,
186 dependencies: deps,
187 install: true,
188 install_dir: get_option('bindir'))
189
Patrick Williams87bfacd2023-11-29 06:44:36 -0600190if get_option('systemd').allowed()
Brad Bishopadbb2452021-08-19 16:33:53 -0400191 systemd_system_unit_dir = dependency('systemd').get_variable(
Patrick Williamsc894c0a2023-04-12 08:01:18 -0500192 'systemdsystemunitdir')
Manojkiran Edafc81a432023-07-27 05:51:12 +0530193 filesystem.copyfile(
194 'pldmd/service_files/pldmd.service',
195 'pldmd.service',
Brad Bishopadbb2452021-08-19 16:33:53 -0400196 install: true,
Manojkiran Edafc81a432023-07-27 05:51:12 +0530197 install_dir: systemd_system_unit_dir
Brad Bishopadbb2452021-08-19 16:33:53 -0400198 )
Deepak Kodihalli6935cf62020-06-15 23:38:27 -0500199
Patrick Williams87bfacd2023-11-29 06:44:36 -0600200 if get_option('oem-ibm').allowed()
Brad Bishopadbb2452021-08-19 16:33:53 -0400201 subdir('oem/ibm/service_files')
202 endif
Manojkiran Edafec5d592021-01-21 12:27:34 +0530203endif
204
Deepak Kodihallif7f5da92020-06-17 05:56:10 -0500205subdir('pldmtool')
George Liuab437e52020-01-19 17:12:19 +0800206
Deepak Kodihalli6e51e372020-06-19 03:49:07 -0500207subdir('configurations')
208
Patrick Williams87bfacd2023-11-29 06:44:36 -0600209if get_option('utilities').allowed()
Deepak Kodihalli9d494bb2019-11-05 01:28:43 -0600210 subdir('utilities')
211endif
Lei YU31fc47e2020-02-27 11:41:45 +0800212
Patrick Williams87bfacd2023-11-29 06:44:36 -0600213if get_option('softoff').allowed()
George Liu4c1a3fd2020-03-10 08:25:21 +0800214 subdir('softoff')
215endif
216
Patrick Williams87bfacd2023-11-29 06:44:36 -0600217if get_option('tests').allowed()
Tom Joseph53279882021-04-28 06:29:13 -0700218 subdir('common/test')
Tom Joseph75356c12021-06-20 03:52:40 -0700219 subdir('fw-update/test')
Tom Joseph53279882021-04-28 06:29:13 -0700220 subdir('host-bmc/test')
Tom Joseph74f27c72021-05-16 07:58:53 -0700221 subdir('requester/test')
Tom Joseph53279882021-04-28 06:29:13 -0700222 subdir('test')
223endif