Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 1 | project('pldm', ['c', 'cpp'], |
Deepak Kodihalli | b0d15f1 | 2021-04-16 12:18:10 +0530 | [diff] [blame] | 2 | version: '0.1', meson_version: '>=0.57.0', |
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', |
Deepak Kodihalli | b0d15f1 | 2021-04-16 12:18:10 +0530 | [diff] [blame] | 7 | 'cpp_std=c++20', |
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() |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 28 | if get_option('libpldmresponder').enabled() |
Brad Bishop | 06052cc | 2021-08-16 15:17:16 -0400 | [diff] [blame] | 29 | conf_data.set_quoted('BIOS_JSONS_DIR', join_paths(package_datadir, 'bios')) |
| 30 | conf_data.set_quoted('BIOS_TABLES_DIR', join_paths(package_localstatedir, 'bios')) |
| 31 | conf_data.set_quoted('PDR_JSONS_DIR', join_paths(package_datadir, 'pdr')) |
| 32 | conf_data.set_quoted('FRU_JSONS_DIR', join_paths(package_datadir, 'fru')) |
| 33 | conf_data.set_quoted('FRU_MASTER_JSON', join_paths(package_datadir, 'fru_master.json')) |
| 34 | conf_data.set_quoted('HOST_JSONS_DIR', join_paths(package_datadir, 'host')) |
| 35 | conf_data.set_quoted('EVENTS_JSONS_DIR', join_paths(package_datadir, 'events')) |
Sagar Srinivas | a6a8ccd | 2021-04-01 07:58:33 -0500 | [diff] [blame] | 36 | conf_data.set('HEARTBEAT_TIMEOUT', get_option('heartbeat-timeout-seconds')) |
Manojkiran Eda | cc5f158 | 2021-09-29 17:03:06 +0530 | [diff] [blame] | 37 | conf_data.set('TERMINUS_ID', get_option('terminus-id')) |
| 38 | conf_data.set('TERMINUS_HANDLE',get_option('terminus-handle')) |
Manojkiran Eda | 53f6731 | 2021-05-18 17:38:04 +0530 | [diff] [blame] | 39 | add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp']) |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 40 | endif |
George Liu | ab865f6 | 2020-03-10 09:12:52 +0800 | [diff] [blame] | 41 | if get_option('softoff').enabled() |
| 42 | conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds')) |
| 43 | endif |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 44 | if get_option('oem-ibm').enabled() |
Brad Bishop | 06052cc | 2021-08-16 15:17:16 -0400 | [diff] [blame] | 45 | 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] | 46 | conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running') |
| 47 | 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] | 48 | 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] | 49 | conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running') |
| 50 | conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate') |
Sampa Misra | 6950850 | 2020-09-08 00:08:21 -0500 | [diff] [blame] | 51 | conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging') |
Deepak Kodihalli | 4c164b0 | 2020-03-07 03:23:31 -0600 | [diff] [blame] | 52 | conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize')) |
Patrick Williams | b62c430 | 2021-04-17 07:13:59 -0500 | [diff] [blame] | 53 | add_project_arguments('-DOEM_IBM', language : 'c') |
| 54 | add_project_arguments('-DOEM_IBM', language : 'cpp') |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 55 | endif |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 56 | conf_data.set('PLDM_VERBOSITY',get_option('verbosity')) |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 57 | conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries')) |
| 58 | conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval')) |
| 59 | conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out')) |
Brad Bishop | 06052cc | 2021-08-16 15:17:16 -0400 | [diff] [blame] | 60 | if get_option('libpldm-only').disabled() |
| 61 | conf_data.set_quoted('HOST_EID_PATH', join_paths(package_datadir, 'host_eid')) |
| 62 | endif |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 63 | configure_file(output: 'config.h', |
| 64 | configuration: conf_data |
| 65 | ) |
| 66 | |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 67 | phosphor_dbus_interfaces = dependency( |
| 68 | 'phosphor-dbus-interfaces', |
| 69 | fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'], |
| 70 | ) |
| 71 | sdbusplus = dependency( |
| 72 | 'sdbusplus', |
| 73 | fallback: ['sdbusplus', 'sdbusplus_dep'], |
| 74 | ) |
| 75 | sdeventplus = dependency( |
| 76 | 'sdeventplus', |
| 77 | fallback: ['sdeventplus', 'sdeventplus_dep'], |
| 78 | ) |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 79 | |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 80 | cpp = meson.get_compiler('cpp') |
| 81 | |
| 82 | if cpp.has_header('nlohmann/json.hpp') |
| 83 | nlohmann_json = declare_dependency() |
| 84 | else |
| 85 | subproject('nlohmann-json') |
| 86 | nlohmann_json = declare_dependency( |
| 87 | include_directories: [ |
| 88 | 'subprojects/nlohmann-json/single_include', |
| 89 | 'subprojects/nlohmann-json/single_include/nlohmann', |
| 90 | ] |
| 91 | ) |
| 92 | endif |
| 93 | |
| 94 | if cpp.has_header('CLI/CLI.hpp') |
| 95 | CLI11_dep = declare_dependency() |
| 96 | else |
| 97 | CLI11_dep = dependency( |
| 98 | 'CLI11', |
| 99 | fallback: [ 'CLI11', 'CLI11_dep' ], |
| 100 | ) |
| 101 | endif |
| 102 | |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 103 | if cpp.has_header_symbol('function2/function2.hpp', 'fu2::unique_function') |
| 104 | function2_dep = declare_dependency() |
| 105 | else |
| 106 | subproject('function2') |
| 107 | function2_dep = declare_dependency( |
| 108 | include_directories: [ |
| 109 | 'subprojects/function2/include/function2' |
| 110 | ] |
| 111 | ) |
| 112 | endif |
| 113 | |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 114 | if get_option('oe-sdk').enabled() |
| 115 | # Setup OE SYSROOT |
| 116 | OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip() |
| 117 | if OECORE_TARGET_SYSROOT == '' |
| 118 | error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.') |
| 119 | endif |
| 120 | message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT) |
| 121 | rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib']) |
| 122 | ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip() |
| 123 | dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so] |
| 124 | else |
| 125 | dynamic_linker = [] |
| 126 | endif |
| 127 | |
| 128 | if get_option('tests').enabled() |
| 129 | gtest = dependency('gtest', main: true, disabler: true, required: false) |
| 130 | gmock = dependency('gmock', disabler: true, required: false) |
| 131 | if not gtest.found() or not gmock.found() |
| 132 | gtest_proj = import('cmake').subproject('googletest', required: false) |
| 133 | if gtest_proj.found() |
| 134 | gtest = declare_dependency( |
| 135 | dependencies: [ |
| 136 | dependency('threads'), |
| 137 | gtest_proj.dependency('gtest'), |
| 138 | gtest_proj.dependency('gtest_main'), |
| 139 | ] |
| 140 | ) |
| 141 | gmock = gtest_proj.dependency('gmock') |
| 142 | else |
| 143 | assert( |
| 144 | not get_option('tests').enabled(), |
| 145 | 'Googletest is required if tests are enabled' |
| 146 | ) |
| 147 | endif |
| 148 | endif |
| 149 | endif |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 150 | |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 151 | subdir('libpldm') |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 152 | |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 153 | if get_option('libpldm-only').disabled() |
| 154 | |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 155 | libpldmutils_headers = ['.'] |
| 156 | libpldmutils = library( |
| 157 | 'pldmutils', |
Deepak Kodihalli | d130e1a | 2020-06-17 05:55:32 -0500 | [diff] [blame] | 158 | 'common/utils.cpp', |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 159 | version: meson.project_version(), |
| 160 | dependencies: [ |
Patrick Williams | 6f4479c | 2021-04-16 21:39:44 -0500 | [diff] [blame] | 161 | libpldm_dep, |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 162 | phosphor_dbus_interfaces, |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 163 | nlohmann_json, |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 164 | sdbusplus, |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 165 | ], |
| 166 | install: true, |
| 167 | include_directories: include_directories(libpldmutils_headers), |
| 168 | ) |
| 169 | |
| 170 | libpldmutils = declare_dependency( |
| 171 | include_directories: include_directories(libpldmutils_headers), |
| 172 | link_with: libpldmutils) |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 173 | |
| 174 | deps = [ |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 175 | function2_dep, |
Patrick Williams | 6f4479c | 2021-04-16 21:39:44 -0500 | [diff] [blame] | 176 | libpldm_dep, |
Tom Joseph | 250c475 | 2020-04-15 10:32:45 +0530 | [diff] [blame] | 177 | libpldmutils, |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 178 | nlohmann_json, |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 179 | sdbusplus, |
| 180 | sdeventplus, |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 181 | phosphor_dbus_interfaces, |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 182 | ] |
| 183 | |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 184 | if get_option('libpldmresponder').enabled() |
| 185 | subdir('libpldmresponder') |
| 186 | deps += [ |
| 187 | libpldmresponder |
| 188 | ] |
| 189 | endif |
| 190 | |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 191 | executable( |
| 192 | 'pldmd', |
Deepak Kodihalli | 1521f6d | 2020-06-16 08:51:02 -0500 | [diff] [blame] | 193 | 'pldmd/pldmd.cpp', |
| 194 | 'pldmd/dbus_impl_requester.cpp', |
| 195 | 'pldmd/instance_id.cpp', |
| 196 | 'pldmd/dbus_impl_pdr.cpp', |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 197 | implicit_include_directories: false, |
| 198 | dependencies: deps, |
| 199 | install: true, |
| 200 | install_dir: get_option('bindir')) |
| 201 | |
Brad Bishop | adbb245 | 2021-08-19 16:33:53 -0400 | [diff] [blame] | 202 | if get_option('systemd').enabled() |
| 203 | systemd_system_unit_dir = dependency('systemd').get_variable( |
| 204 | pkgconfig: 'systemdsystemunitdir') |
Manojkiran Eda | fec5d59 | 2021-01-21 12:27:34 +0530 | [diff] [blame] | 205 | |
Brad Bishop | adbb245 | 2021-08-19 16:33:53 -0400 | [diff] [blame] | 206 | configure_file( |
| 207 | copy: true, |
| 208 | input: 'pldmd/service_files/pldmd.service', |
| 209 | install: true, |
| 210 | install_dir: systemd_system_unit_dir, |
| 211 | output: 'pldmd.service', |
| 212 | ) |
Deepak Kodihalli | 6935cf6 | 2020-06-15 23:38:27 -0500 | [diff] [blame] | 213 | |
Brad Bishop | adbb245 | 2021-08-19 16:33:53 -0400 | [diff] [blame] | 214 | configure_file( |
| 215 | input: 'pldmd/verbosity/verbosity', |
| 216 | output: 'pldm_verbosity', |
| 217 | configuration: conf_data, |
| 218 | install: true, |
| 219 | install_dir: join_paths(get_option('sysconfdir'), 'default')) |
Manojkiran Eda | ff80ebf | 2021-03-05 06:46:55 +0530 | [diff] [blame] | 220 | |
Brad Bishop | adbb245 | 2021-08-19 16:33:53 -0400 | [diff] [blame] | 221 | if get_option('oem-ibm').enabled() |
| 222 | subdir('oem/ibm/service_files') |
| 223 | endif |
Manojkiran Eda | fec5d59 | 2021-01-21 12:27:34 +0530 | [diff] [blame] | 224 | endif |
| 225 | |
Deepak Kodihalli | f7f5da9 | 2020-06-17 05:56:10 -0500 | [diff] [blame] | 226 | subdir('pldmtool') |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 227 | |
Deepak Kodihalli | 6e51e37 | 2020-06-19 03:49:07 -0500 | [diff] [blame] | 228 | subdir('configurations') |
| 229 | |
Deepak Kodihalli | 9d494bb | 2019-11-05 01:28:43 -0600 | [diff] [blame] | 230 | if get_option('utilities').enabled() |
| 231 | subdir('utilities') |
| 232 | endif |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 233 | |
George Liu | 4c1a3fd | 2020-03-10 08:25:21 +0800 | [diff] [blame] | 234 | if get_option('softoff').enabled() |
| 235 | subdir('softoff') |
| 236 | endif |
| 237 | |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 238 | if get_option('tests').enabled() |
| 239 | subdir('common/test') |
| 240 | subdir('host-bmc/test') |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 241 | subdir('requester/test') |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 242 | subdir('test') |
| 243 | endif |
| 244 | |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 245 | endif # pldm-only |