xref: /openbmc/pldm/meson.build (revision fe6f0d40)
1project('pldm', ['c', 'cpp'],
2        version: '0.1', meson_version: '>=0.57.0',
3        default_options: [
4          'warning_level=3',
5          'default_library=shared',
6          'werror=true',
7          'cpp_std=c++20',
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
24conf_data = configuration_data()
25if get_option('libpldmresponder').enabled()
26conf_data.set_quoted('BIOS_JSONS_DIR', '/usr/share/pldm/bios')
27conf_data.set_quoted('BIOS_TABLES_DIR', '/var/lib/pldm/bios')
28conf_data.set_quoted('PDR_JSONS_DIR', '/usr/share/pldm/pdr')
29conf_data.set_quoted('FRU_JSONS_DIR', '/usr/share/pldm/fru')
30conf_data.set_quoted('HOST_JSONS_DIR', '/usr/share/pldm/host')
31conf_data.set_quoted('EVENTS_JSONS_DIR', '/usr/share/pldm/events')
32add_project_arguments('-DLIBPLDMRESPONDER', language : ['c','cpp'])
33endif
34if get_option('softoff').enabled()
35  conf_data.set('SOFTOFF_TIMEOUT_SECONDS', get_option('softoff-timeout-seconds'))
36endif
37if get_option('oem-ibm').enabled()
38  conf_data.set_quoted('FILE_TABLE_JSON', '/usr/share/pldm/fileTable.json')
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')
41  conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
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')
44  conf_data.set_quoted('LID_STAGING_DIR', '/var/lib/phosphor-software-manager/hostfw/staging')
45  conf_data.set('DMA_MAXSIZE', get_option('oem-ibm-dma-maxsize'))
46  add_project_arguments('-DOEM_IBM', language : 'c')
47  add_project_arguments('-DOEM_IBM', language : 'cpp')
48endif
49conf_data.set('PLDM_VERBOSITY',get_option('verbosity'))
50conf_data.set('NUMBER_OF_REQUEST_RETRIES', get_option('number-of-request-retries'))
51conf_data.set('INSTANCE_ID_EXPIRATION_INTERVAL',get_option('instance-id-expiration-interval'))
52conf_data.set('RESPONSE_TIME_OUT',get_option('response-time-out'))
53configure_file(output: 'config.h',
54  configuration: conf_data
55)
56
57phosphor_dbus_interfaces = dependency(
58  'phosphor-dbus-interfaces',
59  fallback: ['phosphor-dbus-interfaces', 'phosphor_dbus_interfaces_dep'],
60)
61sdbusplus = dependency(
62  'sdbusplus',
63  fallback: ['sdbusplus', 'sdbusplus_dep'],
64)
65sdeventplus = dependency(
66  'sdeventplus',
67  fallback: ['sdeventplus', 'sdeventplus_dep'],
68)
69systemd = dependency('systemd')
70
71cpp = meson.get_compiler('cpp')
72
73if cpp.has_header('nlohmann/json.hpp')
74  nlohmann_json = declare_dependency()
75else
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  )
83endif
84
85if cpp.has_header('CLI/CLI.hpp')
86  CLI11_dep = declare_dependency()
87else
88  CLI11_dep = dependency(
89    'CLI11',
90    fallback: [ 'CLI11', 'CLI11_dep' ],
91  )
92endif
93
94if cpp.has_header_symbol('function2/function2.hpp', 'fu2::unique_function')
95  function2_dep = declare_dependency()
96else
97  subproject('function2')
98  function2_dep = declare_dependency(
99    include_directories: [
100      'subprojects/function2/include/function2'
101    ]
102  )
103endif
104
105if 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]
115else
116  dynamic_linker = []
117endif
118
119if 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
140endif
141
142subdir('libpldm')
143
144if get_option('libpldm-only').disabled()
145
146libpldmutils_headers = ['.']
147libpldmutils = library(
148  'pldmutils',
149  'common/utils.cpp',
150  version: meson.project_version(),
151  dependencies: [
152      libpldm_dep,
153      phosphor_dbus_interfaces,
154      nlohmann_json,
155      sdbusplus,
156  ],
157  install: true,
158  include_directories: include_directories(libpldmutils_headers),
159)
160
161libpldmutils = declare_dependency(
162  include_directories: include_directories(libpldmutils_headers),
163  link_with: libpldmutils)
164
165deps = [
166  function2_dep,
167  libpldm_dep,
168  libpldmutils,
169  nlohmann_json,
170  sdbusplus,
171  sdeventplus,
172  phosphor_dbus_interfaces,
173]
174
175if get_option('libpldmresponder').enabled()
176subdir('libpldmresponder')
177deps += [
178  libpldmresponder
179]
180endif
181
182executable(
183  'pldmd',
184  'pldmd/pldmd.cpp',
185  'pldmd/dbus_impl_requester.cpp',
186  'pldmd/instance_id.cpp',
187  'pldmd/dbus_impl_pdr.cpp',
188  implicit_include_directories: false,
189  dependencies: deps,
190  install: true,
191  install_dir: get_option('bindir'))
192
193systemd_system_unit_dir = systemd.get_variable(
194        pkgconfig: 'systemdsystemunitdir',
195        pkgconfig_define: ['prefix', get_option('prefix')])
196
197configure_file(
198  copy: true,
199  input: 'pldmd/service_files/pldmd.service',
200  install: true,
201  install_dir: systemd_system_unit_dir,
202  output: 'pldmd.service',
203)
204
205configure_file(
206  input: 'pldmd/verbosity/verbosity',
207  output: 'pldm_verbosity',
208  configuration: conf_data,
209  install: true,
210  install_dir: '/etc/default')
211
212if get_option('oem-ibm').enabled()
213  subdir('oem/ibm/service_files')
214endif
215
216subdir('pldmtool')
217
218subdir('configurations')
219
220if get_option('utilities').enabled()
221  subdir('utilities')
222endif
223
224if get_option('softoff').enabled()
225  subdir('softoff')
226endif
227
228if get_option('tests').enabled()
229  subdir('common/test')
230  subdir('host-bmc/test')
231  subdir('requester/test')
232  subdir('test')
233endif
234
235endif # pldm-only
236