2
0
mirror of https://frontier.innolan.net/github/amigaos-cross-toolchain6.git synced 2024-10-19 10:29:55 +00:00

Add vda68k tool by Frank Wille.

This commit is contained in:
Krystian Bacławski
2016-10-02 21:16:01 +02:00
parent 31a6c508c9
commit 32615c85a7
2 changed files with 8 additions and 1 deletions

View File

@ -21,7 +21,9 @@ Build process should produce following set of tools for **m68k-amigaos** target:
* libm 5.4 (provides math library implementation for non-FPU Amigas)
* AmigaOS headers & libraries & autodocs (for AmigaOS 3.9)
* vbcc toolchain (most recent release) including vasm, vlink and C standard library
* IRA: a 68k disassembler/reassembler
* IRA: portable M68000/010/020/030/040 reassembler for AmigaOS hunk-format
executables, libraries, devices and raw binary files
* vda68k: portable M68k disassembler for 68000-68060, 68851, 68881, 68882
... and following set of tools for **ppc-amigaos** target:

View File

@ -33,6 +33,7 @@ URLS = \
'http://sun.hasenbraten.de/vlink/release/vlink.tar.gz',
'http://www.ibaug.de/vbcc/vbcc.tar.gz',
'http://aminet.net/dev/asm/ira.lha',
'http://sun.hasenbraten.de/~frank/projects/download/vdam68k.tar.gz',
('http://mail.pb-owl.de/~frank/vbcc/current/vbcc_target_m68k-amigaos.lha',
'vclib.lha')]
@ -95,6 +96,7 @@ def install_tools():
info('installing extra tools')
copy('{build}/ira/ira', '{target}/bin')
copy('{build}/vdam68k/vda68k', '{target}/bin')
@recipe('{libamiga}-install')
@ -462,6 +464,9 @@ def build():
patch('ira', work_dir='{build}')
make('ira')
unpack('vdam68k', top_dir='vda/M68k', work_dir='{build}')
make('vdam68k')
install_tools()