[PATCH] winegcc: Add a missing break.
Signed-off-by: Huw Davies <huw(a)codeweavers.com> --- Note, completely untested on ARM. tools/winegcc/winegcc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/winegcc/winegcc.c b/tools/winegcc/winegcc.c index 0ca553318e..fa4407f913 100644 --- a/tools/winegcc/winegcc.c +++ b/tools/winegcc/winegcc.c @@ -737,6 +737,7 @@ static void compile(struct options* opts, const char* lang) strarray_add(comp_args, "-D__stdcall=__attribute__((pcs(\"aapcs-vfp\")))"); strarray_add(comp_args, "-D__cdecl=__stdcall"); strarray_add(comp_args, "-D__fastcall=__stdcall"); + break; case CPU_POWERPC: strarray_add(comp_args, "-D__stdcall="); strarray_add(comp_args, "-D__cdecl="); -- 2.23.0
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=57136 Your paranoid android. === debian10 (build log) === error: patch failed: tools/winegcc/winegcc.c:737 Task: Patch failed to apply === debian10 (build log) === error: patch failed: tools/winegcc/winegcc.c:737 Task: Patch failed to apply
participants (2)
-
Huw Davies -
Marvin