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