Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 1 | project('pldm', ['c', 'cpp'], |
Patrick Williams | b95bbe3 | 2023-07-12 11:15:37 -0500 | [diff] [blame] | 2 | version: '0.1', meson_version: '>=1.1.1', |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 3 | default_options: [ |
| 4 | 'warning_level=3', |
| 5 | 'default_library=shared', |
| 6 | 'werror=true', |
Patrick Williams | b95bbe3 | 2023-07-12 11:15:37 -0500 | [diff] [blame] | 7 | 'cpp_std=c++23', |
Manojkiran Eda | 38ce97c | 2021-02-14 12:15:17 +0530 | [diff] [blame] | 8 | 'buildtype=debugoptimized' |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 9 | ]) |
| 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. |
| 15 | add_project_arguments('-Wno-psabi', language: 'cpp') |
| 16 | |
Manojkiran Eda | 38ce97c | 2021-02-14 12:15:17 +0530 | [diff] [blame] | 17 | |
| 18 | # Disable FORTIFY_SOURCE when compiling with no optimization |
| 19 | if(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') |
| 22 | endif |
| 23 | |
Brad Bishop | 06052cc | 2021-08-16 15:17:16 -0400 | [diff] [blame] | 24 | package_datadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name()) |
| 25 | package_localstatedir = join_paths(get_option('prefix'), get_option('localstatedir'), meson.project_name()) |
| 26 | |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 27 | conf_data = configuration_data() |
Rashmica Gupta | 1ed5f7a | 2023-05-22 13:56:42 +1000 | [diff] [blame] | 28 | cpp = meson.get_compiler('cpp') |
| 29 | |
| 30 | # Enable POSIX poll APIs in libpldm |
| 31 | if cpp.has_header('poll.h') |
| 32 | conf_data.set('PLDM_HAS_POLL', 1) |
| 33 | endif |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 34 | if get_option('libpldmresponder').enabled() |
Brad Bishop | 06052cc | 2021-08-16 15:17:16 -0400 | [diff] [blame] | 35 | conf_data.set_quoted('BIOS_JSONS_DIR', join_paths(package_datadir, 'bios')) |
| 36 | conf_data.set_quoted('BIOS_TABLES_DIR', join_paths(package_localstatedir, 'bios')) |
| 37 | conf_data.set_quoted('PDR_JSONS_DIR', join_paths(package_datadir, 'pdr')) |
| 38 | conf_data.set_quoted('FRU_JSONS_DIR', join_paths(package_datadir, 'fru')) |
| 39 | conf_data.set_quoted('FRU_MASTER_JSON', join_paths(package_datadir, 'fru_master.json')) |
| 40 | conf_data.set_quoted('HOST_JSONS_DIR', join_paths(package_datadir, 'host')) |
| 41 | conf_data.set_quoted('EVENTS_JSONS_DIR', join_paths(package_datadir, 'events')) |
Sagar Srinivas | a6a8ccd | 2021-04-01 07:58:33 -0500 | [diff] [blame] | 42 | conf_data.set('HEARTBEAT_TIMEOUT', get_option('heartbeat-timeout-seconds')) |
Manojkiran Eda | cc5f158 | 2021-09-29 17:03:06 +0530 | [diff] [blame] | 43 | conf_data.set('TERMINUS_ID', get_option('terminus-id')) |
| 44 | conf_data.set('TERMINUS_HANDLE',get_option('terminus-handle')) |
vkaverap@in.ibm.com | 9138c20 | 2023-05-19 07:50:47 -0500 | [diff] [blame] | 45 | conf_data.set('DBUS_TIMEOUT', get_option('dbus-timeout-value')) |
Manojkiran Eda | 53f6731 | 2021-05-18 17:38:04 +0530 | [diff] [blame] | 46 | add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp']) |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 47 | endif |
George Liu | ab865f6 | 2020-03-10 09:12:52 +0800 | [diff] [blame] | 48 | if get_option('softoff').enabled() |
| 49 | conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds')) |
| 50 | endif |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 51 | if get_option('oem-ibm').enabled() |
Brad Bishop | 06052cc | 2021-08-16 15:17:16 -0400 | [diff] [blame] | 52 | conf_data.set_quoted('FILE_TABLE_JSON', join_paths(package_datadir, 'fileTable.json')) |
Adriana Kobylak | 76f820c | 2020-07-16 11:02:03 -0500 | [diff] [blame] | 53 | conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running') |
| 54 | conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate') |
Adriana Kobylak | fa810d7 | 2020-10-16 16:27:28 -0500 | [diff] [blame] | 55 | conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging') |
Deepak Kodihalli | 09b017b | 2020-08-26 07:37:32 -0500 | [diff] [blame] | 56 | conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running') |
| 57 | conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate') |
Deepak Kodihalli | 4c164b0 | 2020-03-07 03:23:31 -0600 | [diff] [blame] | 58 | conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize')) |
Patrick Williams | b62c430 | 2021-04-17 07:13:59 -0500 | [diff] [blame] | 59 | add_project_arguments('-DOEM_IBM', language : 'c') |
| 60 | add_project_arguments('-DOEM_IBM', language : 'cpp') |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 61 | endif |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 62 | conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries')) |
| 63 | conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval')) |
| 64 | conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out')) |
Manojkiran Eda | ef77305 | 2021-07-29 09:29:28 +0530 | [diff] [blame] | 65 | conf_data.set('FLIGHT_RECORDER_MAX_ENTRIES',get_option('flightrecorder-max-entries')) |
Manojkiran Eda | b69d8bf | 2022-09-28 01:11:31 +0530 | [diff] [blame] | 66 | conf_data.set_quoted('HOST_EID_PATH', join_paths(package_datadir, 'host_eid')) |
Tom Joseph | ef90b0d | 2021-08-17 07:12:49 -0700 | [diff] [blame] | 67 | conf_data.set('MAXIMUM_TRANSFER_SIZE', get_option('maximum-transfer-size')) |
Rashmica Gupta | 1ed5f7a | 2023-05-22 13:56:42 +1000 | [diff] [blame] | 68 | if get_option('transport-implementation') == 'mctp-demux' |
| 69 | conf_data.set('PLDM_TRANSPORT_WITH_MCTP_DEMUX', 1) |
| 70 | elif get_option('transport-implementation') == 'af-mctp' |
| 71 | conf_data.set('PLDM_TRANSPORT_WITH_AF_MCTP', 1) |
| 72 | endif |
Andrew Jeffery | 4779227 | 2023-06-13 17:15:09 +0930 | [diff] [blame] | 73 | config = configure_file(output: 'config.h', |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 74 | configuration: conf_data |
| 75 | ) |
| 76 | |
Andrew Jeffery | 4779227 | 2023-06-13 17:15:09 +0930 | [diff] [blame] | 77 | add_project_arguments('-include', '@0@'.format(config), language: 'cpp') |
| 78 | |
Manojkiran Eda | fc81a43 | 2023-07-27 05:51:12 +0530 | [diff] [blame] | 79 | filesystem = import('fs') |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 80 | |
Manojkiran Eda | b69d8bf | 2022-09-28 01:11:31 +0530 | [diff] [blame] | 81 | phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces') |
| 82 | sdbusplus = dependency('sdbusplus') |
| 83 | sdeventplus = dependency('sdeventplus') |
| 84 | stdplus = dependency('stdplus') |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 85 | phosphor_logging_dep = dependency('phosphor-logging') |
Patrick Williams | 5c7253a | 2022-03-21 10:52:01 -0500 | [diff] [blame] | 86 | |
Manojkiran Eda | b69d8bf | 2022-09-28 01:11:31 +0530 | [diff] [blame] | 87 | if cpp.has_header('nlohmann/json.hpp') |
| 88 | nlohmann_json = declare_dependency() |
| 89 | else |
| 90 | nlohmann_json = dependency('nlohmann_json') |
| 91 | endif |
Patrick Williams | 5c7253a | 2022-03-21 10:52:01 -0500 | [diff] [blame] | 92 | |
Manojkiran Eda | b69d8bf | 2022-09-28 01:11:31 +0530 | [diff] [blame] | 93 | if cpp.has_header('CLI/CLI.hpp') |
| 94 | CLI11_dep = declare_dependency() |
| 95 | else |
| 96 | CLI11_dep = dependency('CLI11') |
| 97 | endif |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 98 | |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 99 | if get_option('oe-sdk').enabled() |
| 100 | # Setup OE SYSROOT |
| 101 | OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip() |
| 102 | if OECORE_TARGET_SYSROOT == '' |
| 103 | error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.') |
| 104 | endif |
| 105 | message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT) |
| 106 | rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib']) |
| 107 | ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip() |
| 108 | dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so] |
| 109 | else |
| 110 | dynamic_linker = [] |
| 111 | endif |
| 112 | |
| 113 | if get_option('tests').enabled() |
| 114 | gtest = dependency('gtest', main: true, disabler: true, required: false) |
| 115 | gmock = dependency('gmock', disabler: true, required: false) |
| 116 | if not gtest.found() or not gmock.found() |
| 117 | gtest_proj = import('cmake').subproject('googletest', required: false) |
| 118 | if gtest_proj.found() |
| 119 | gtest = declare_dependency( |
| 120 | dependencies: [ |
| 121 | dependency('threads'), |
| 122 | gtest_proj.dependency('gtest'), |
| 123 | gtest_proj.dependency('gtest_main'), |
| 124 | ] |
| 125 | ) |
| 126 | gmock = gtest_proj.dependency('gmock') |
| 127 | else |
| 128 | assert( |
| 129 | not get_option('tests').enabled(), |
| 130 | 'Googletest is required if tests are enabled' |
| 131 | ) |
| 132 | endif |
| 133 | endif |
| 134 | endif |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 135 | |
Andrew Jeffery | 27a022c | 2022-08-10 23:12:49 +0930 | [diff] [blame] | 136 | libpldm_dep = dependency('libpldm', fallback:['libpldm','libpldm_dep']) |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 137 | |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 138 | |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 139 | libpldmutils_headers = ['.'] |
| 140 | libpldmutils = library( |
| 141 | 'pldmutils', |
Rashmica Gupta | 1ed5f7a | 2023-05-22 13:56:42 +1000 | [diff] [blame] | 142 | 'common/transport.cpp', |
Deepak Kodihalli | d130e1a | 2020-06-17 05:55:32 -0500 | [diff] [blame] | 143 | 'common/utils.cpp', |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 144 | version: meson.project_version(), |
| 145 | dependencies: [ |
Patrick Williams | 6f4479c | 2021-04-16 21:39:44 -0500 | [diff] [blame] | 146 | libpldm_dep, |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 147 | phosphor_dbus_interfaces, |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 148 | phosphor_logging_dep, |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 149 | nlohmann_json, |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 150 | sdbusplus, |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 151 | ], |
| 152 | install: true, |
| 153 | include_directories: include_directories(libpldmutils_headers), |
| 154 | ) |
| 155 | |
| 156 | libpldmutils = declare_dependency( |
| 157 | include_directories: include_directories(libpldmutils_headers), |
| 158 | link_with: libpldmutils) |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 159 | |
| 160 | deps = [ |
Patrick Williams | 6f4479c | 2021-04-16 21:39:44 -0500 | [diff] [blame] | 161 | libpldm_dep, |
Tom Joseph | 250c475 | 2020-04-15 10:32:45 +0530 | [diff] [blame] | 162 | libpldmutils, |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 163 | nlohmann_json, |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 164 | phosphor_dbus_interfaces, |
Riya Dixit | 49cfb13 | 2023-03-02 04:26:53 -0600 | [diff] [blame] | 165 | phosphor_logging_dep, |
Patrick Williams | d2ab1c2 | 2022-04-13 09:00:40 -0500 | [diff] [blame] | 166 | sdbusplus, |
| 167 | sdeventplus, |
| 168 | stdplus, |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 169 | ] |
| 170 | |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 171 | if get_option('libpldmresponder').enabled() |
| 172 | subdir('libpldmresponder') |
| 173 | deps += [ |
Manojkiran Eda | 998dc4e | 2022-07-28 08:18:03 +0530 | [diff] [blame] | 174 | libpldmresponder_dep |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 175 | ] |
| 176 | endif |
| 177 | |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 178 | executable( |
| 179 | 'pldmd', |
Deepak Kodihalli | 1521f6d | 2020-06-16 08:51:02 -0500 | [diff] [blame] | 180 | 'pldmd/pldmd.cpp', |
Deepak Kodihalli | 1521f6d | 2020-06-16 08:51:02 -0500 | [diff] [blame] | 181 | 'pldmd/dbus_impl_pdr.cpp', |
Tom Joseph | 75356c1 | 2021-06-20 03:52:40 -0700 | [diff] [blame] | 182 | 'fw-update/inventory_manager.cpp', |
Tom Joseph | 1630f39 | 2021-06-29 04:30:03 -0700 | [diff] [blame] | 183 | 'fw-update/package_parser.cpp', |
Tom Joseph | ef90b0d | 2021-08-17 07:12:49 -0700 | [diff] [blame] | 184 | 'fw-update/device_updater.cpp', |
Tom Joseph | 4d8d577 | 2021-08-17 07:35:05 -0700 | [diff] [blame] | 185 | 'fw-update/watch.cpp', |
| 186 | 'fw-update/update_manager.cpp', |
Tom Joseph | fb3bc06 | 2021-08-17 07:48:11 -0700 | [diff] [blame] | 187 | 'requester/mctp_endpoint_discovery.cpp', |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 188 | implicit_include_directories: false, |
| 189 | dependencies: deps, |
| 190 | install: true, |
| 191 | install_dir: get_option('bindir')) |
| 192 | |
Brad Bishop | adbb245 | 2021-08-19 16:33:53 -0400 | [diff] [blame] | 193 | if get_option('systemd').enabled() |
| 194 | systemd_system_unit_dir = dependency('systemd').get_variable( |
Patrick Williams | c894c0a | 2023-04-12 08:01:18 -0500 | [diff] [blame] | 195 | 'systemdsystemunitdir') |
Manojkiran Eda | fc81a43 | 2023-07-27 05:51:12 +0530 | [diff] [blame] | 196 | filesystem.copyfile( |
| 197 | 'pldmd/service_files/pldmd.service', |
| 198 | 'pldmd.service', |
Brad Bishop | adbb245 | 2021-08-19 16:33:53 -0400 | [diff] [blame] | 199 | install: true, |
Manojkiran Eda | fc81a43 | 2023-07-27 05:51:12 +0530 | [diff] [blame] | 200 | install_dir: systemd_system_unit_dir |
Brad Bishop | adbb245 | 2021-08-19 16:33:53 -0400 | [diff] [blame] | 201 | ) |
Deepak Kodihalli | 6935cf6 | 2020-06-15 23:38:27 -0500 | [diff] [blame] | 202 | |
Brad Bishop | adbb245 | 2021-08-19 16:33:53 -0400 | [diff] [blame] | 203 | if get_option('oem-ibm').enabled() |
| 204 | subdir('oem/ibm/service_files') |
| 205 | endif |
Manojkiran Eda | fec5d59 | 2021-01-21 12:27:34 +0530 | [diff] [blame] | 206 | endif |
| 207 | |
Deepak Kodihalli | f7f5da9 | 2020-06-17 05:56:10 -0500 | [diff] [blame] | 208 | subdir('pldmtool') |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 209 | |
Deepak Kodihalli | 6e51e37 | 2020-06-19 03:49:07 -0500 | [diff] [blame] | 210 | subdir('configurations') |
| 211 | |
Deepak Kodihalli | 9d494bb | 2019-11-05 01:28:43 -0600 | [diff] [blame] | 212 | if get_option('utilities').enabled() |
| 213 | subdir('utilities') |
| 214 | endif |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 215 | |
George Liu | 4c1a3fd | 2020-03-10 08:25:21 +0800 | [diff] [blame] | 216 | if get_option('softoff').enabled() |
| 217 | subdir('softoff') |
| 218 | endif |
| 219 | |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 220 | if get_option('tests').enabled() |
| 221 | subdir('common/test') |
Tom Joseph | 75356c1 | 2021-06-20 03:52:40 -0700 | [diff] [blame] | 222 | subdir('fw-update/test') |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 223 | subdir('host-bmc/test') |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 224 | subdir('requester/test') |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 225 | subdir('test') |
| 226 | endif |