diff options
author | Marc-André Lureau | 2019-08-17 12:55:32 +0200 |
---|---|---|
committer | Paolo Bonzini | 2020-08-21 12:30:17 +0200 |
commit | d3b184809608f3ea948b199d779ec02169ad7085 (patch) | |
tree | f8ee6b6137a708ba4e4af2e40d68a1192ba7bd8c /target/s390x/meson.build | |
parent | meson: convert io directory to Meson (diff) | |
download | qemu-d3b184809608f3ea948b199d779ec02169ad7085.tar.gz qemu-d3b184809608f3ea948b199d779ec02169ad7085.tar.xz qemu-d3b184809608f3ea948b199d779ec02169ad7085.zip |
meson: convert target/s390x/gen-features.h
Needed by linux-user/s390x/cpu_loop.c; this removes the only use of HOST_CC.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target/s390x/meson.build')
-rw-r--r-- | target/s390x/meson.build | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target/s390x/meson.build b/target/s390x/meson.build new file mode 100644 index 0000000000..ddf8d20a36 --- /dev/null +++ b/target/s390x/meson.build @@ -0,0 +1,9 @@ +gen_features = executable('gen-features', 'gen-features.c', native: true, + build_by_default: false) + +gen_features_h = custom_target('gen-features.h', + output: 'gen-features.h', + capture: true, + command: gen_features) + +specific_ss.add(gen_features_h) |