mirror of
https://github.com/cahirwpz/amigaos-cross-toolchain
synced 2025-11-22 19:53:11 +00:00
Update Warp3D SDK to 4.2 and fix #35
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
Short: Driver system for 3D hardware on the Amiga
|
Short: Driver system for 3D hardware on the Amiga
|
||||||
Version: 4.0
|
Version: 4.2
|
||||||
Url: http://aminet.net/driver/video/Warp3DDev-4.0.lha
|
Url: http://aminet.net/dev/misc/Warp3DDev-4.2a.lha
|
||||||
|
|
||||||
Warp3D_Devel/Docs/Warp3D.doc
|
Warp3D_Devel/Docs/Warp3D.doc
|
||||||
Warp3D_Devel/Docs/Warp3D.guide
|
Warp3D_Devel/Docs/Warp3D.guide
|
||||||
@ -8,6 +8,6 @@ Warp3D_Devel/Docs/Warp3D_Devel.guide
|
|||||||
Warp3D_Devel/Include/clib/Warp3D_protos.h
|
Warp3D_Devel/Include/clib/Warp3D_protos.h
|
||||||
Warp3D_Devel/Include/fd/Warp3D.fd = Warp3D_lib.fd
|
Warp3D_Devel/Include/fd/Warp3D.fd = Warp3D_lib.fd
|
||||||
Warp3D_Devel/Include/Warp3D/Warp3D.h
|
Warp3D_Devel/Include/Warp3D/Warp3D.h
|
||||||
fd2sfd : Warp3D_Devel/Include/fd/Warp3D_lib.fd Warp3D_Devel/Include/clib/Warp3D_protos.h
|
fd2sfd : Warp3D_Devel/Include/fd/Warp3D.fd Warp3D_Devel/Include/clib/Warp3D_protos.h
|
||||||
sfdc : Warp3D_lib.sfd
|
sfdc : Warp3D.sfd
|
||||||
stubs : Warp3D_lib.sfd
|
stubs : Warp3D.sfd
|
||||||
|
|||||||
@ -477,7 +477,7 @@ def process_sdk(sdk, dirname, files):
|
|||||||
copy(sfd, path.join('{target}/os-lib/sfd', sfd))
|
copy(sfd, path.join('{target}/os-lib/sfd', sfd))
|
||||||
elif kind == 'sfdc':
|
elif kind == 'sfdc':
|
||||||
source = f[1]
|
source = f[1]
|
||||||
basename = re.sub(r'_lib.sfd$', r'', path.basename(source))
|
basename = re.sub(r'(_lib)?.sfd$', r'', path.basename(source))
|
||||||
|
|
||||||
proto = path.join('{target}/os-include/proto', basename + '.h')
|
proto = path.join('{target}/os-include/proto', basename + '.h')
|
||||||
inline = path.join('{target}/os-include/inline', basename + '.h')
|
inline = path.join('{target}/os-include/inline', basename + '.h')
|
||||||
@ -494,7 +494,7 @@ def process_sdk(sdk, dirname, files):
|
|||||||
'--output=' + lvo, source)
|
'--output=' + lvo, source)
|
||||||
elif kind == 'stubs':
|
elif kind == 'stubs':
|
||||||
filename = f[1]
|
filename = f[1]
|
||||||
c_file = re.sub(r'_lib\.sfd$', r'.c', path.basename(filename))
|
c_file = re.sub(r'(_lib)?\.sfd$', r'.c', path.basename(filename))
|
||||||
|
|
||||||
info('stubs: "%s" -> "%s"', filename, c_file)
|
info('stubs: "%s" -> "%s"', filename, c_file)
|
||||||
execute('sfdc', '--quiet', '--target=m68k-amigaos', '--mode=autoopen',
|
execute('sfdc', '--quiet', '--target=m68k-amigaos', '--mode=autoopen',
|
||||||
|
|||||||
Reference in New Issue
Block a user