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