From 1f8ef36f752871485e6e462dc1cfaa8ac5058011 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 29 May 2021 15:23:24 -0400 Subject: sim: v850: add pointer casts for execv on Windows The execv prototypes on Windows via mingw64 include extra const markings on the argv/envp pointers than what POSIX specifies. Cast them to void* as a hack to get it working on all platforms. --- sim/v850/ChangeLog | 4 ++++ sim/v850/simops.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'sim/v850') diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog index 02e6bbd..29237d8 100644 --- a/sim/v850/ChangeLog +++ b/sim/v850/ChangeLog @@ -1,3 +1,7 @@ +2021-05-29 Mike Frysinger + + * simops.c (OP_10007E0): Add (void*) casts to argv & envp. + 2021-05-17 Mike Frysinger * sim-main.h (SIM_HAVE_COMMON_SIM_STATE): Delete. diff --git a/sim/v850/simops.c b/sim/v850/simops.c index 62a2bbc..f0e2745 100644 --- a/sim/v850/simops.c +++ b/sim/v850/simops.c @@ -1640,7 +1640,7 @@ OP_10007E0 (void) char *path = fetch_str (simulator, PARM1); char **argv = fetch_argv (simulator, PARM2); char **envp = fetch_argv (simulator, PARM3); - RETVAL = execve (path, argv, envp); + RETVAL = execve (path, (void *)argv, (void *)envp); free (path); freeargv (argv); freeargv (envp); @@ -1656,7 +1656,7 @@ OP_10007E0 (void) { char *path = fetch_str (simulator, PARM1); char **argv = fetch_argv (simulator, PARM2); - RETVAL = execv (path, argv); + RETVAL = execv (path, (void *)argv); free (path); freeargv (argv); RETERR = errno; -- cgit v1.1