diff options
author | Yonggang Luo <luoyonggang@gmail.com> | 2022-04-22 01:09:19 +0800 |
---|---|---|
committer | Marge Bot <emma+marge@anholt.net> | 2022-06-16 19:59:58 +0000 |
commit | 1173c0f33ac22955705192e489fb82759c152656 (patch) | |
tree | d42b72d0a547c4422096fc8af396ade6c1286988 /src/mapi/es2api | |
parent | 686e20afcd32cb80b96984c8eb4428e777fbce97 (diff) |
meson: Using get_argument_syntax as the `--compiler_id` option for gen_vs_module_defs.py
Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17065>
Diffstat (limited to 'src/mapi/es2api')
-rw-r--r-- | src/mapi/es2api/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/es2api/meson.build b/src/mapi/es2api/meson.build index 65a4803ff1d..d8f54eb64f4 100644 --- a/src/mapi/es2api/meson.build +++ b/src/mapi/es2api/meson.build @@ -38,7 +38,7 @@ gles2_def = custom_target( output : 'gles2.def', command : [prog_python, gen_vs_module_defs_py, '--in_file', '@INPUT@', '--out_file', '@OUTPUT@', - '--compiler_id', cc.get_id(), '--cpu_family', host_machine.cpu_family()] + '--compiler_id', cc.get_argument_syntax(), '--cpu_family', host_machine.cpu_family()] ) libgles2 = shared_library( |