aboutsummaryrefslogtreecommitdiff
path: root/linux-user/qemu.h
diff options
context:
space:
mode:
authorChristophe Lyon <christophe.lyon@st.com>2018-04-30 10:03:41 +0200
committerLaurent Vivier <laurent@vivier.eu>2018-05-03 18:25:29 +0200
commita99856cd7f30b8c64cfaf97791dc5d462dabad6e (patch)
treede72a1b32d34d62f5471713010fc2a98532b8771 /linux-user/qemu.h
parent59255887e6cafeff747250d2613003a41d1d9dff (diff)
downloadqemu-a99856cd7f30b8c64cfaf97791dc5d462dabad6e.zip
qemu-a99856cd7f30b8c64cfaf97791dc5d462dabad6e.tar.gz
qemu-a99856cd7f30b8c64cfaf97791dc5d462dabad6e.tar.bz2
Remove CONFIG_USE_FDPIC.
We want to avoid code disabled by default, because it ends up less tested. This patch removes all instances of #ifdef CONFIG_USE_FDPIC, most of which can be safely kept. For the ones that should be conditionally executed, we define elf_is_fdpic(). Without this patch, defining CONFIG_USE_FDPIC would prevent QEMU from building precisely because elf_is_fdpic is not defined. Signed-off-by: Christophe Lyon <christophe.lyon@st.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20180430080404.7323-2-christophe.lyon@st.com> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/qemu.h')
-rw-r--r--linux-user/qemu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h
index 192a0d2..da3b517 100644
--- a/linux-user/qemu.h
+++ b/linux-user/qemu.h
@@ -51,13 +51,13 @@ struct image_info {
abi_ulong file_string;
uint32_t elf_flags;
int personality;
-#ifdef CONFIG_USE_FDPIC
+
+ /* The fields below are used in FDPIC mode. */
abi_ulong loadmap_addr;
uint16_t nsegs;
void *loadsegs;
abi_ulong pt_dynamic_addr;
struct image_info *other_info;
-#endif
};
#ifdef TARGET_I386