Welcome, Guest. Please login or register.

Author Topic: Beta Release of MorphOS Software Development Kit 2  (Read 2106 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline PiruTopic starter

  • \' union select name,pwd--
  • Hero Member
  • *****
  • Join Date: Aug 2002
  • Posts: 6946
    • Show only replies by Piru
    • http://www.iki.fi/sintonen/
Beta Release of MorphOS Software Development Kit 2
« on: June 06, 2010, 01:10:41 PM »
The MorphOS development team would like to announce the immediate availability of the MorphOS Software Development Kit 2. This first release is officially in beta state and will be followed up by updates in the near future. Developers who would like to test the software development kit will need a computer running the recently finished MorphOS 2.5 and at least 300 MB of free disk space.

Notable features of the MorphOS SDK 2 are as follows:
  • MorphED with MUI-centric quickhelp (shows syntax of MUI methods, MUI special values for an attribute, etc)
  • GCC 2.95.3 compiler with AltiVec support and C++ enhancements
  • GCC 4.4.4 compiler
  • MUI, Reggae and System documentation in text and aguide formats
  • Example source code
  • Development utilities: logtool and Wipeout
  • Complete GeekGadgets environment
  • Easy to use installer

You can download the MorphOS SDK 2 in our files section
 

Offline Pyromania

  • Sent from my Quantum Computer
  • Hero Member
  • *****
  • Join Date: Aug 2002
  • Posts: 1829
  • Country: 00
  • Thanked: 6 times
    • Show only replies by Pyromania
    • http://www.discreetfx.com
Re: Beta Release of MorphOS Software Development Kit 2
« Reply #1 on: June 06, 2010, 08:51:36 PM »
Thsanx MorphOS Team, this will help with the development of the MorphOS version of Aladdin 4D 6.0.
 

Offline kolla

Re: Beta Release of MorphOS Software Development Kit 2
« Reply #2 on: June 06, 2010, 09:16:39 PM »
Will it ever go beyond beta? Heh, I suppose that could be a poll :)
B5D6A1D019D5D45BCC56F4782AC220D8B3E2A6CC
---
A3000/060CSPPC+CVPPC/128MB + 256MB BigRAM/Deneb USB
A4000/CS060/Mediator4000Di/Voodoo5/128MB
A1200/Blz1260/IndyAGA/192MB
A1200/Blz1260/64MB
A1200/Blz1230III/32MB
A1200/ACA1221
A600/V600v2/Subway USB
A600/Apollo630/32MB
A600/A6095
CD32/SX32/32MB/Plipbox
CD32/TF328
A500/V500v2
A500/MTec520
CDTV
MiSTer, MiST, FleaFPGAs and original Minimig
Peg1, SAM440 and Mac minis with MorphOS
 

Offline Thomas

Re: Beta Release of MorphOS Software Development Kit 2
« Reply #3 on: June 07, 2010, 11:31:43 AM »
Is it possible to access the SDK files if you are not sitting in front of a MorphOS machine? Can the sdk.pack file somehow be unpacked without the supplied installer tool?

Offline PiruTopic starter

  • \' union select name,pwd--
  • Hero Member
  • *****
  • Join Date: Aug 2002
  • Posts: 6946
    • Show only replies by Piru
    • http://www.iki.fi/sintonen/
Re: Beta Release of MorphOS Software Development Kit 2
« Reply #4 on: June 07, 2010, 01:29:17 PM »
Quote from: Thomas;563245
Is it possible to access the SDK files if you are not sitting in front of a MorphOS machine? Can the sdk.pack file somehow be unpacked without the supplied installer tool?

Certainly. It's a tar.xz file.

With recentish tar (and with xz-utils installed):
Code: [Select]

tar -Jxf sdk.pack

With old tar (but with xz-utils installed):
Code: [Select]

tar --use-compress-program=xz -x -f sdk.pack

Or if everything else fails, do it in two steps:
Code: [Select]

xz --decompress < sdk.pack | tar -xf -


If your system doesn't have xz-utils, you can always build it yourself from the source: http://tukaani.org/xz/
« Last Edit: June 07, 2010, 01:47:55 PM by Piru »
 

Offline Thomas

Re: Beta Release of MorphOS Software Development Kit 2
« Reply #5 on: June 07, 2010, 02:43:23 PM »
Great! Knowing what it is made it easy: 7-zip 9.14 can open it. Tried 4.65 before which didn't work.