diff options
author | oltolm <oleg.tolmatcev@gmail.com> | 2025-06-13 00:15:22 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2025-06-16 13:16:27 -0400 |
commit | 9761ad5f65d23f080b5a3479e52196fbce2e1506 (patch) | |
tree | bf023c2913bdd1855f0f83d1e46a2350d24a5af9 /plugins | |
parent | a6f02277595136832c9e9bcaf447ab574f7b1128 (diff) | |
download | qemu-9761ad5f65d23f080b5a3479e52196fbce2e1506.zip qemu-9761ad5f65d23f080b5a3479e52196fbce2e1506.tar.gz qemu-9761ad5f65d23f080b5a3479e52196fbce2e1506.tar.bz2 |
meson: fix Windows build
The build fails on Windows. Replace calls to Unix programs like ´cat´,
´sed´ and ´true´ with calls to ´python´ and wrap calls to
´os.path.relpath´ in try-except because it can fail when the two paths
are on different drives. Make sure to convert the Windows paths to Unix
paths to prevent warnings in generated files.
Signed-off-by: oltolm <oleg.tolmatcev@gmail.com>
Message-id: 20250612221521.1109-2-oleg.tolmatcev@gmail.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/meson.build b/plugins/meson.build index b20edfb..62c991d 100644 --- a/plugins/meson.build +++ b/plugins/meson.build @@ -33,7 +33,7 @@ if host_os == 'windows' input: qemu_plugin_symbols, output: 'qemu_plugin_api.def', capture: true, - command: ['sed', '-e', '0,/^/s//EXPORTS/; s/[{};]//g', '@INPUT@']) + command: [python, '-c', 'import fileinput, re; print("EXPORTS", end=""); [print(re.sub(r"[{};]", "", line), end="") for line in fileinput.input()]', '@INPUT@']) # then use dlltool to assemble a delaylib. # The delaylib will have an "imaginary" name (qemu.exe), that is used by the |