mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 07:20:10 +01:00
meson: require nm again on Unix systems
This was made optional in ff9bf223c2 ("meson: make nm binary optional")
for Windows, but proper windows has been added and `nm` is now only used
on Unix systems.
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviwed-by: Dylan Baker <dylan@pnwbakers>
This commit is contained in:
parent
4d5cde1fff
commit
66dd53584e
1 changed files with 2 additions and 2 deletions
|
|
@ -1685,8 +1685,8 @@ if host_machine.system() == 'windows'
|
||||||
with_symbols_check = prog_dumpbin.found() and with_tests
|
with_symbols_check = prog_dumpbin.found() and with_tests
|
||||||
symbols_check_args = ['--dumpbin', prog_dumpbin.path()]
|
symbols_check_args = ['--dumpbin', prog_dumpbin.path()]
|
||||||
else
|
else
|
||||||
prog_nm = find_program('nm', required : false)
|
prog_nm = find_program('nm')
|
||||||
with_symbols_check = prog_nm.found() and with_tests
|
with_symbols_check = with_tests
|
||||||
symbols_check_args = ['--nm', prog_nm.path()]
|
symbols_check_args = ['--nm', prog_nm.path()]
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue