From 06e96005a62dd8bc62dbd842c37b00380ad9d23f Mon Sep 17 00:00:00 2001 From: Dominique Martinet Date: Wed, 27 Feb 2019 13:24:46 +0900 Subject: [PATCH] mcexec: restore --enable-vdso/disable-vdso for x86 Fujitsu added this ifdef together with ifndef __arch64__ and thus disabled the option for both archs in practice; it probably does not hurt to restore... I'm not sure I see the point of disabling the option at mcexec level though, but who am I to care. Change-Id: I0d4bffb6ed325edac8ae577773e19c0fff6ca2ed Fujitsu: POSTK_DEBUG_ARCH_DEP_53 --- executer/user/mcexec.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/executer/user/mcexec.c b/executer/user/mcexec.c index f28316c2..aa0866b3 100644 --- a/executer/user/mcexec.c +++ b/executer/user/mcexec.c @@ -1744,7 +1744,6 @@ unsigned long atobytes(char *string) } static struct option mcexec_options[] = { -#ifdef POSTK_DEBUG_ARCH_DEP_53 #ifndef __aarch64__ { .name = "disable-vdso", @@ -1759,7 +1758,6 @@ static struct option mcexec_options[] = { .val = 1, }, #endif /*__aarch64__*/ -#endif /*POSTK_DEBUG_ARCH_DEP_53*/ { .name = "profile", .has_arg = no_argument,