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