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 | |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 24 | conf_data = configuration_data() |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 25 | if get_option('libpldmresponder').enabled() |
Deepak Kodihalli | 7523d5c | 2019-11-08 02:22:29 -0600 | [diff] [blame] | 26 | conf_data.set_quoted('BIOS_JSONS_DIR', '/usr/share/pldm/bios') |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 27 | conf_data.set_quoted('BIOS_TABLES_DIR', '/var/lib/pldm/bios') |
Deepak Kodihalli | 7523d5c | 2019-11-08 02:22:29 -0600 | [diff] [blame] | 28 | conf_data.set_quoted('PDR_JSONS_DIR', '/usr/share/pldm/pdr') |
Deepak Kodihalli | e60c582 | 2019-10-23 03:26:15 -0500 | [diff] [blame] | 29 | conf_data.set_quoted('FRU_JSONS_DIR', '/usr/share/pldm/fru') |
Manojkiran Eda | 03b01ca | 2021-06-29 08:55:09 +0530 | [diff] [blame] | 30 | conf_data.set_quoted('FRU_MASTER_JSON', '/usr/share/pldm/fru_master.json') |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 31 | conf_data.set_quoted('HOST_JSONS_DIR', '/usr/share/pldm/host') |
TOM JOSEPH | d4d97a5 | 2020-03-23 14:36:34 +0530 | [diff] [blame] | 32 | conf_data.set_quoted('EVENTS_JSONS_DIR', '/usr/share/pldm/events') |
Manojkiran Eda | 53f6731 | 2021-05-18 17:38:04 +0530 | [diff] [blame] | 33 | add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp']) |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 34 | endif |
George Liu | ab865f6 | 2020-03-10 09:12:52 +0800 | [diff] [blame] | 35 | if get_option('softoff').enabled() |
| 36 | conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds')) |
| 37 | endif |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 38 | if get_option('oem-ibm').enabled() |
Deepak Kodihalli | 7523d5c | 2019-11-08 02:22:29 -0600 | [diff] [blame] | 39 | conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json') |
Adriana Kobylak | 76f820c | 2020-07-16 11:02:03 -0500 | [diff] [blame] | 40 | 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 Kobylak | fa810d7 | 2020-10-16 16:27:28 -0500 | [diff] [blame] | 42 | 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] | 43 | 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 Misra | 6950850 | 2020-09-08 00:08:21 -0500 | [diff] [blame] | 45 | 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] | 46 | conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize')) |
Patrick Williams | b62c430 | 2021-04-17 07:13:59 -0500 | [diff] [blame] | 47 | add_project_arguments('-DOEM_IBM', language : 'c') |
| 48 | add_project_arguments('-DOEM_IBM', language : 'cpp') |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 49 | endif |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 50 | conf_data.set('PLDM_VERBOSITY',get_option('verbosity')) |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 51 | conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries')) |
| 52 | conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval')) |
| 53 | conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out')) |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 54 | configure_file(output: 'config.h', |
| 55 | configuration: conf_data |
| 56 | ) |
| 57 | |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 58 | phosphor_dbus_interfaces = dependency( |
| 59 | 'phosphor-dbus-interfaces', |
| 60 | fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'], |
| 61 | ) |
| 62 | sdbusplus = dependency( |
| 63 | 'sdbusplus', |
| 64 | fallback: ['sdbusplus', 'sdbusplus_dep'], |
| 65 | ) |
| 66 | sdeventplus = dependency( |
| 67 | 'sdeventplus', |
| 68 | fallback: ['sdeventplus', 'sdeventplus_dep'], |
| 69 | ) |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 70 | systemd = dependency('systemd') |
| 71 | |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 72 | cpp = meson.get_compiler('cpp') |
| 73 | |
| 74 | if cpp.has_header('nlohmann/json.hpp') |
| 75 | nlohmann_json = declare_dependency() |
| 76 | else |
| 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 | ) |
| 84 | endif |
| 85 | |
| 86 | if cpp.has_header('CLI/CLI.hpp') |
| 87 | CLI11_dep = declare_dependency() |
| 88 | else |
| 89 | CLI11_dep = dependency( |
| 90 | 'CLI11', |
| 91 | fallback: [ 'CLI11', 'CLI11_dep' ], |
| 92 | ) |
| 93 | endif |
| 94 | |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 95 | if cpp.has_header_symbol('function2/function2.hpp', 'fu2::unique_function') |
| 96 | function2_dep = declare_dependency() |
| 97 | else |
| 98 | subproject('function2') |
| 99 | function2_dep = declare_dependency( |
| 100 | include_directories: [ |
| 101 | 'subprojects/function2/include/function2' |
| 102 | ] |
| 103 | ) |
| 104 | endif |
| 105 | |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 106 | if 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] |
| 116 | else |
| 117 | dynamic_linker = [] |
| 118 | endif |
| 119 | |
| 120 | if 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 |
| 141 | endif |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 142 | |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 143 | subdir('libpldm') |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 144 | |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 145 | if get_option('libpldm-only').disabled() |
| 146 | |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 147 | libpldmutils_headers = ['.'] |
| 148 | libpldmutils = library( |
| 149 | 'pldmutils', |
Deepak Kodihalli | d130e1a | 2020-06-17 05:55:32 -0500 | [diff] [blame] | 150 | 'common/utils.cpp', |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 151 | version: meson.project_version(), |
| 152 | dependencies: [ |
Patrick Williams | 6f4479c | 2021-04-16 21:39:44 -0500 | [diff] [blame] | 153 | libpldm_dep, |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 154 | phosphor_dbus_interfaces, |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 155 | nlohmann_json, |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 156 | sdbusplus, |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 157 | ], |
| 158 | install: true, |
| 159 | include_directories: include_directories(libpldmutils_headers), |
| 160 | ) |
| 161 | |
| 162 | libpldmutils = declare_dependency( |
| 163 | include_directories: include_directories(libpldmutils_headers), |
| 164 | link_with: libpldmutils) |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 165 | |
| 166 | deps = [ |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 167 | function2_dep, |
Patrick Williams | 6f4479c | 2021-04-16 21:39:44 -0500 | [diff] [blame] | 168 | libpldm_dep, |
Tom Joseph | 250c475 | 2020-04-15 10:32:45 +0530 | [diff] [blame] | 169 | libpldmutils, |
Patrick Williams | 3b1dc01 | 2021-04-16 21:51:47 -0500 | [diff] [blame] | 170 | nlohmann_json, |
Manojkiran Eda | 001f788 | 2021-01-04 18:21:18 +0530 | [diff] [blame] | 171 | sdbusplus, |
| 172 | sdeventplus, |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 173 | phosphor_dbus_interfaces, |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 174 | ] |
| 175 | |
Tom Joseph | 02b4ee4 | 2021-05-02 22:44:36 -0700 | [diff] [blame] | 176 | if get_option('libpldmresponder').enabled() |
| 177 | subdir('libpldmresponder') |
| 178 | deps += [ |
| 179 | libpldmresponder |
| 180 | ] |
| 181 | endif |
| 182 | |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 183 | executable( |
| 184 | 'pldmd', |
Deepak Kodihalli | 1521f6d | 2020-06-16 08:51:02 -0500 | [diff] [blame] | 185 | 'pldmd/pldmd.cpp', |
| 186 | 'pldmd/dbus_impl_requester.cpp', |
| 187 | 'pldmd/instance_id.cpp', |
| 188 | 'pldmd/dbus_impl_pdr.cpp', |
Deepak Kodihalli | 3c275e1 | 2019-09-21 06:39:39 -0500 | [diff] [blame] | 189 | implicit_include_directories: false, |
| 190 | dependencies: deps, |
| 191 | install: true, |
| 192 | install_dir: get_option('bindir')) |
| 193 | |
Manojkiran Eda | a1d2760 | 2021-04-17 11:42:28 +0530 | [diff] [blame] | 194 | systemd_system_unit_dir = systemd.get_variable( |
| 195 | pkgconfig: 'systemdsystemunitdir', |
| 196 | pkgconfig_define: ['prefix', get_option('prefix')]) |
Manojkiran Eda | fec5d59 | 2021-01-21 12:27:34 +0530 | [diff] [blame] | 197 | |
Deepak Kodihalli | 6935cf6 | 2020-06-15 23:38:27 -0500 | [diff] [blame] | 198 | configure_file( |
| 199 | copy: true, |
Manojkiran Eda | fec5d59 | 2021-01-21 12:27:34 +0530 | [diff] [blame] | 200 | input: 'pldmd/service_files/pldmd.service', |
Deepak Kodihalli | 6935cf6 | 2020-06-15 23:38:27 -0500 | [diff] [blame] | 201 | install: true, |
| 202 | install_dir: systemd_system_unit_dir, |
| 203 | output: 'pldmd.service', |
| 204 | ) |
| 205 | |
Manojkiran Eda | ff80ebf | 2021-03-05 06:46:55 +0530 | [diff] [blame] | 206 | configure_file( |
| 207 | input: 'pldmd/verbosity/verbosity', |
| 208 | output: 'pldm_verbosity', |
| 209 | configuration: conf_data, |
| 210 | install: true, |
| 211 | install_dir: '/etc/default') |
| 212 | |
Manojkiran Eda | fec5d59 | 2021-01-21 12:27:34 +0530 | [diff] [blame] | 213 | if get_option('oem-ibm').enabled() |
| 214 | subdir('oem/ibm/service_files') |
| 215 | endif |
| 216 | |
Deepak Kodihalli | f7f5da9 | 2020-06-17 05:56:10 -0500 | [diff] [blame] | 217 | subdir('pldmtool') |
George Liu | ab437e5 | 2020-01-19 17:12:19 +0800 | [diff] [blame] | 218 | |
Deepak Kodihalli | 6e51e37 | 2020-06-19 03:49:07 -0500 | [diff] [blame] | 219 | subdir('configurations') |
| 220 | |
Deepak Kodihalli | 9d494bb | 2019-11-05 01:28:43 -0600 | [diff] [blame] | 221 | if get_option('utilities').enabled() |
| 222 | subdir('utilities') |
| 223 | endif |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 224 | |
George Liu | 4c1a3fd | 2020-03-10 08:25:21 +0800 | [diff] [blame] | 225 | if get_option('softoff').enabled() |
| 226 | subdir('softoff') |
| 227 | endif |
| 228 | |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 229 | if get_option('tests').enabled() |
| 230 | subdir('common/test') |
| 231 | subdir('host-bmc/test') |
Tom Joseph | 74f27c7 | 2021-05-16 07:58:53 -0700 | [diff] [blame] | 232 | subdir('requester/test') |
Tom Joseph | 5327988 | 2021-04-28 06:29:13 -0700 | [diff] [blame] | 233 | subdir('test') |
| 234 | endif |
| 235 | |
Lei YU | 31fc47e | 2020-02-27 11:41:45 +0800 | [diff] [blame] | 236 | endif # pldm-only |