diff options
author | Paolo Bonzini | 2020-02-04 12:20:10 +0100 |
---|---|---|
committer | Paolo Bonzini | 2020-08-21 12:18:24 +0200 |
commit | 243af0225ab37c642d73e4002b233af728119f72 (patch) | |
tree | 49f5015d7ef96c3a4a1b5861927f11dd3c07f4f8 /target | |
parent | pc-bios/s390-ccw: do not use rules.mak (diff) | |
download | qemu-243af0225ab37c642d73e4002b233af728119f72.tar.gz qemu-243af0225ab37c642d73e4002b233af728119f72.tar.xz qemu-243af0225ab37c642d73e4002b233af728119f72.zip |
trace: switch position of headers to what Meson requires
Meson doesn't enjoy the same flexibility we have with Make in choosing
the include path. In particular the tracing headers are using
$(build_root)/$(<D).
In order to keep the include directives unchanged,
the simplest solution is to generate headers with patterns like
"trace/trace-audio.h" and place forwarding headers in the source tree
such that for example "audio/trace.h" includes "trace/trace-audio.h".
This patch is too ugly to be applied to the Makefiles now. It's only
a way to separate the changes to the tracing header files from the
Meson rewrite of the tracing logic.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/arm/trace.h | 1 | ||||
-rw-r--r-- | target/hppa/trace.h | 1 | ||||
-rw-r--r-- | target/i386/trace.h | 1 | ||||
-rw-r--r-- | target/mips/trace.h | 1 | ||||
-rw-r--r-- | target/ppc/trace.h | 1 | ||||
-rw-r--r-- | target/riscv/trace.h | 1 | ||||
-rw-r--r-- | target/s390x/trace.h | 1 | ||||
-rw-r--r-- | target/sparc/trace.h | 1 |
8 files changed, 8 insertions, 0 deletions
diff --git a/target/arm/trace.h b/target/arm/trace.h new file mode 100644 index 0000000000..60372d8e26 --- /dev/null +++ b/target/arm/trace.h @@ -0,0 +1 @@ +#include "trace/trace-target_arm.h" diff --git a/target/hppa/trace.h b/target/hppa/trace.h new file mode 100644 index 0000000000..810cc09692 --- /dev/null +++ b/target/hppa/trace.h @@ -0,0 +1 @@ +#include "trace/trace-target_hppa.h" diff --git a/target/i386/trace.h b/target/i386/trace.h new file mode 100644 index 0000000000..781e8ec55c --- /dev/null +++ b/target/i386/trace.h @@ -0,0 +1 @@ +#include "trace/trace-target_i386.h" diff --git a/target/mips/trace.h b/target/mips/trace.h new file mode 100644 index 0000000000..f25b88ca6f --- /dev/null +++ b/target/mips/trace.h @@ -0,0 +1 @@ +#include "trace/trace-target_mips.h" diff --git a/target/ppc/trace.h b/target/ppc/trace.h new file mode 100644 index 0000000000..a9e8962828 --- /dev/null +++ b/target/ppc/trace.h @@ -0,0 +1 @@ +#include "trace/trace-target_ppc.h" diff --git a/target/riscv/trace.h b/target/riscv/trace.h new file mode 100644 index 0000000000..03a89fcd9b --- /dev/null +++ b/target/riscv/trace.h @@ -0,0 +1 @@ +#include "trace/trace-target_riscv.h" diff --git a/target/s390x/trace.h b/target/s390x/trace.h new file mode 100644 index 0000000000..d7d59d4aba --- /dev/null +++ b/target/s390x/trace.h @@ -0,0 +1 @@ +#include "trace/trace-target_s390x.h" diff --git a/target/sparc/trace.h b/target/sparc/trace.h new file mode 100644 index 0000000000..3b2f5a8e29 --- /dev/null +++ b/target/sparc/trace.h @@ -0,0 +1 @@ +#include "trace/trace-target_sparc.h" |