xref: /openbmc/pldm/meson.build (revision fcda4d03)
1project('pldm', ['c', 'cpp'],
2        version: '0.1', meson_version: '>=1.1.1',
3        default_options: [
4          'warning_level=3',
5          'default_library=shared',
6          'werror=true',
7          'cpp_std=c++23',
8          'buildtype=debugoptimized'
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.
15add_project_arguments('-Wno-psabi', language: 'cpp')
16
17
18# Disable FORTIFY_SOURCE when compiling with no optimization
19if(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')
22endif
23
24package_datadir = join_paths(get_option('prefix'), get_option('datadir'), meson.project_name())
25package_localstatedir = join_paths(get_option('prefix'), get_option('localstatedir'), meson.project_name())
26
27conf_data = configuration_data()
28if get_option('libpldmresponder').enabled()
29conf_data.set_quoted('BIOS_JSONS_DIR', join_paths(package_datadir, 'bios'))
30conf_data.set_quoted('BIOS_TABLES_DIR', join_paths(package_localstatedir, 'bios'))
31conf_data.set_quoted('PDR_JSONS_DIR', join_paths(package_datadir, 'pdr'))
32conf_data.set_quoted('FRU_JSONS_DIR', join_paths(package_datadir, 'fru'))
33conf_data.set_quoted('FRU_MASTER_JSON', join_paths(package_datadir, 'fru_master.json'))
34conf_data.set_quoted('HOST_JSONS_DIR', join_paths(package_datadir, 'host'))
35conf_data.set_quoted('EVENTS_JSONS_DIR', join_paths(package_datadir, 'events'))
36conf_data.set('HEARTBEAT_TIMEOUT', get_option('heartbeat-timeout-seconds'))
37conf_data.set('TERMINUS_ID', get_option('terminus-id'))
38conf_data.set('TERMINUS_HANDLE',get_option('terminus-handle'))
39conf_data.set('DBUS_TIMEOUT', get_option('dbus-timeout-value'))
40add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp'])
41endif
42if get_option('softoff').enabled()
43  conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
44endif
45if get_option('oem-ibm').enabled()
46  conf_data.set_quoted('FILE_TABLE_JSON', join_paths(package_datadir, 'fileTable.json'))
47  conf_data.set_quoted('LID_RUNNING_DIR', '/var/lib/phosphor-software-manager/hostfw/running')
48  conf_data.set_quoted('LID_ALTERNATE_DIR', '/var/lib/phosphor-software-manager/hostfw/alternate')
49  conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
50  conf_data.set_quoted('LID_RUNNING_PATCH_DIR', '/usr/local/share/hostfw/running')
51  conf_data.set_quoted('LID_ALTERNATE_PATCH_DIR', '/usr/local/share/hostfw/alternate')
52  conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
53  add_project_arguments('-DOEM_IBM', language : 'c')
54  add_project_arguments('-DOEM_IBM', language : 'cpp')
55endif
56conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries'))
57conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval'))
58conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out'))
59conf_data.set('FLIGHT_RECORDER_MAX_ENTRIES',get_option('flightrecorder-max-entries'))
60conf_data.set_quoted('HOST_EID_PATH', join_paths(package_datadir, 'host_eid'))
61conf_data.set('MAXIMUM_TRANSFER_SIZE', get_option('maximum-transfer-size'))
62config = configure_file(output: 'config.h',
63  configuration: conf_data
64)
65
66add_project_arguments('-include', '@0@'.format(config), language: 'cpp')
67
68cpp = meson.get_compiler('cpp')
69filesystem = import('fs')
70
71phosphor_dbus_interfaces = dependency('phosphor-dbus-interfaces')
72sdbusplus = dependency('sdbusplus')
73sdeventplus = dependency('sdeventplus')
74stdplus = dependency('stdplus')
75phosphor_logging_dep = dependency('phosphor-logging')
76
77if cpp.has_header('nlohmann/json.hpp')
78  nlohmann_json = declare_dependency()
79else
80  nlohmann_json = dependency('nlohmann_json')
81endif
82
83if cpp.has_header('CLI/CLI.hpp')
84  CLI11_dep = declare_dependency()
85else
86  CLI11_dep = dependency('CLI11')
87endif
88
89if get_option('oe-sdk').enabled()
90  # Setup OE SYSROOT
91  OECORE_TARGET_SYSROOT = run_command('sh', '-c', 'echo $OECORE_TARGET_SYSROOT').stdout().strip()
92  if OECORE_TARGET_SYSROOT == ''
93      error('Unable to get $OECORE_TARGET_SYSROOT, check your environment.')
94  endif
95  message('OE_SYSROOT: ' + OECORE_TARGET_SYSROOT)
96  rpath = ':'.join([OECORE_TARGET_SYSROOT + '/lib', OECORE_TARGET_SYSROOT + '/usr/lib'])
97  ld_so = run_command('sh', '-c', 'find ' + OECORE_TARGET_SYSROOT + '/lib/ld-*.so | sort -r -n | head -n1').stdout().strip()
98  dynamic_linker = ['-Wl,-dynamic-linker,' + ld_so]
99else
100  dynamic_linker = []
101endif
102
103if get_option('tests').enabled()
104    gtest = dependency('gtest', main: true, disabler: true, required: false)
105    gmock = dependency('gmock', disabler: true, required: false)
106    if not gtest.found() or not gmock.found()
107        gtest_proj = import('cmake').subproject('googletest', required: false)
108        if gtest_proj.found()
109            gtest = declare_dependency(
110                dependencies: [
111                    dependency('threads'),
112                    gtest_proj.dependency('gtest'),
113                    gtest_proj.dependency('gtest_main'),
114                ]
115            )
116            gmock = gtest_proj.dependency('gmock')
117        else
118            assert(
119                not get_option('tests').enabled(),
120                'Googletest is required if tests are enabled'
121            )
122        endif
123    endif
124endif
125
126libpldm_dep = dependency('libpldm', fallback:['libpldm','libpldm_dep'])
127
128
129libpldmutils_headers = ['.']
130libpldmutils = library(
131  'pldmutils',
132  'common/utils.cpp',
133  version: meson.project_version(),
134  dependencies: [
135      libpldm_dep,
136      phosphor_dbus_interfaces,
137      phosphor_logging_dep,
138      nlohmann_json,
139      sdbusplus,
140  ],
141  install: true,
142  include_directories: include_directories(libpldmutils_headers),
143)
144
145libpldmutils = declare_dependency(
146  include_directories: include_directories(libpldmutils_headers),
147  link_with: libpldmutils)
148
149deps = [
150  libpldm_dep,
151  libpldmutils,
152  nlohmann_json,
153  phosphor_dbus_interfaces,
154  phosphor_logging_dep,
155  sdbusplus,
156  sdeventplus,
157  stdplus,
158]
159
160if get_option('libpldmresponder').enabled()
161subdir('libpldmresponder')
162deps += [
163  libpldmresponder_dep
164]
165endif
166
167executable(
168  'pldmd',
169  'pldmd/pldmd.cpp',
170  'pldmd/dbus_impl_pdr.cpp',
171  'fw-update/inventory_manager.cpp',
172  'fw-update/package_parser.cpp',
173  'fw-update/device_updater.cpp',
174  'fw-update/watch.cpp',
175  'fw-update/update_manager.cpp',
176  'requester/mctp_endpoint_discovery.cpp',
177  implicit_include_directories: false,
178  dependencies: deps,
179  install: true,
180  install_dir: get_option('bindir'))
181
182if get_option('systemd').enabled()
183  systemd_system_unit_dir = dependency('systemd').get_variable(
184          'systemdsystemunitdir')
185  filesystem.copyfile(
186    'pldmd/service_files/pldmd.service',
187    'pldmd.service',
188    install: true,
189    install_dir: systemd_system_unit_dir
190  )
191
192  if get_option('oem-ibm').enabled()
193    subdir('oem/ibm/service_files')
194  endif
195endif
196
197subdir('pldmtool')
198
199subdir('configurations')
200
201if get_option('utilities').enabled()
202  subdir('utilities')
203endif
204
205if get_option('softoff').enabled()
206  subdir('softoff')
207endif
208
209if get_option('tests').enabled()
210  subdir('common/test')
211  subdir('fw-update/test')
212  subdir('host-bmc/test')
213  subdir('requester/test')
214  subdir('test')
215endif
216