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