Skip to content

Commit 7b15379

Browse files
committed
[ot] meson.build: options: re-enable -lundef
Our project does satisfy `-lundef` ("Don't allow undefined symbols when linking") so I would prefer not to deviate from upstream QEMU. Signed-off-by: James Wainwright <james.wainwright@lowrisc.org>
1 parent 55c4816 commit 7b15379

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

meson.build

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
project('qemu', ['c', 'rust'], meson_version: '>=1.5.0',
22
default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11', 'b_colorout=auto',
3-
'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true',
4-
'b_lundef=false'],
3+
'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true'],
54
version: files('VERSION'))
65

76
meson.add_devenv({ 'MESON_BUILD_ROOT' : meson.project_build_root() })
@@ -3597,7 +3596,7 @@ trace_events_subdirs = [
35973596
'qom',
35983597
'monitor',
35993598
'util',
3600-
'gdbstub'
3599+
'gdbstub',
36013600
]
36023601
if have_linux_user
36033602
trace_events_subdirs += [ 'linux-user' ]

0 commit comments

Comments
 (0)