Switch to binutils 2.14 by default.

This commit is contained in:
Krystian Bacławski 2017-08-18 14:18:32 +02:00
parent 524a261187
commit 197cbb1fca
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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')