André Hentschel : winegcc: Sync toolchain detection with winebuild.
Module: wine Branch: master Commit: b33fab40d36905bdb56efe08a35ba823fc4d79ee URL: http://source.winehq.org/git/wine.git/?a=commit;h=b33fab40d36905bdb56efe08a3... Author: André Hentschel <nerv(a)dawncrow.de> Date: Wed Dec 30 00:25:55 2015 +0100 winegcc: Sync toolchain detection with winebuild. Signed-off-by: André Hentschel <nerv(a)dawncrow.de> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- tools/winegcc/winegcc.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/winegcc/winegcc.c b/tools/winegcc/winegcc.c index 1326afe..1dffe74 100644 --- a/tools/winegcc/winegcc.c +++ b/tools/winegcc/winegcc.c @@ -160,7 +160,11 @@ static const struct { "x86_64", CPU_x86_64 }, { "powerpc", CPU_POWERPC }, { "arm", CPU_ARM }, - { "aarch64", CPU_ARM64 } + { "armv5", CPU_ARM }, + { "armv6", CPU_ARM }, + { "armv7", CPU_ARM }, + { "arm64", CPU_ARM64 }, + { "aarch64", CPU_ARM64 }, }; static const struct
participants (1)
-
Alexandre Julliard