From 197cbb1fca6b36b6a1195b8e159a1463ec533cda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krystian=20Bac=C5=82awski?= Date: Fri, 18 Aug 2017 14:18:32 +0200 Subject: [PATCH] Switch to binutils 2.14 by default. --- README.md | 2 +- toolchain-m68k | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 73b848a..9191b86 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Build process should produce following set of tools for **m68k-amigaos** target: * gcc 2.95.3 * g++ 2.95.3 * libstdc++ 2.10 - * binutils 2.9.1 (assembler, linker, etc.) + * binutils 2.14 (assembler, linker, etc.) * libnix 2.2 (standard ANSI/C library replacement for AmigaOS) * libm 5.4 (provides math library implementation for non-FPU Amigas) * AmigaOS headers & libraries & autodocs (for AmigaOS 3.9) diff --git a/toolchain-m68k b/toolchain-m68k index 9ea81f7..4a8223a 100755 --- a/toolchain-m68k +++ b/toolchain-m68k @@ -721,7 +721,7 @@ if __name__ == "__main__": default='build', help='perform action') parser.add_argument('args', metavar='ARGS', type=str, nargs='*', help='action arguments') - parser.add_argument('--binutils', choices=['2.9.1', '2.14'], default='2.9.1', + parser.add_argument('--binutils', choices=['2.9.1', '2.14'], default='2.14', help='desired binutils version') parser.add_argument('--gcc', choices=['2.95.3'], default='2.95.3', help='desired gcc version')