@B fix toolchain-m68k

This commit is contained in:
bebbo
2016-11-30 00:01:17 +01:00
parent 8027fb2365
commit d6033c23b7
2 changed files with 15 additions and 4 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>amigaos-cross-toolchain</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>
+4 -4
View File
@@ -344,8 +344,8 @@ def build():
make('fd2sfd')
make('fd2sfd', 'install')
update_autotools('{submodules}/sfdc')
unpack('sfdc')
patch('sfdc')
configure('sfdc', '--prefix={target}', copy_source=True)
make('sfdc')
make('sfdc', 'install')
@@ -366,7 +366,7 @@ def build():
CXX = ' '.join([CXX, ARCH, '-std=gnu++11'])
"""
Older gcc compilers (i.e. 2.95.3 and 3.4.6) and binutils have to be tricked
Older gcc compilers (i.e. 2.95.3, 3.4.6 and 6.2.0) and binutils have to be tricked
into thinking that they're being compiled on Linux IA-32 machine. Theirs
config.guess script knows nothing about x86-64 or darwin.
"""
@@ -662,9 +662,9 @@ 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'], default='2.9.1',
parser.add_argument('--binutils', choices=['2.9.1', '2.14'], default='2.9.1',
help='desired binutils version')
parser.add_argument('--gcc', choices=['2.95.3'], default='2.95.3',
parser.add_argument('--gcc', choices=['2.95.3', '3.4.6', '6.2.0'], default='2.95.3',
help='desired gcc version')
parser.add_argument('--prefix', type=str, default=None,
help='installation directory')