In memory of Ben “bushing” Byer, who passed away on Monday, February 8th, 2016.

Difference between revisions of "DevkitPPC"

From WiiBrew
Jump to navigation Jump to search
(Update version number. Correct site links. Remove incorrect/incomplete/broken unofficial installation pages/guides in favor of the official one. Remove manual portlib installation instructions.)
 
(13 intermediate revisions by 9 users not shown)
Line 1: Line 1:
This is a warning to the owners of this site. My name is Shigeru Miyamoto and I am disappoint. You are breaking the DCMA laws. DCMA laws protect our freedoms far into the furture. There is over 9000 pages here and I want every single one of them gone by next week. This is not a threat but a promise. Every day after that week is up, I will sue you for $100,000 a day.
+
{{Lowercase title‎}}
 +
{{Infobox development tools
 +
| title      = devkitPPC
 +
| image      = [[File:Devkitlogo.png|128px|center]]
 +
| type        = library
 +
| maintainer  = WinterMute
 +
| version    = r41-2
 +
| licence    = Various
 +
| download    = https://devkitpro.org/wiki/Getting_Started
 +
| website    = https://devkitpro.org/
 +
| discussion  = https://forums.devkitpro.org/viewforum.php?f=3
 +
| source      = https://github.com/devkitPro
 +
}}
  
Thank you for using Nintendo. We must ensure our freedoms through use of the DCMA. This not the analog millennium one passed in 1000 A.D., but the digital one.
+
'''devkitPPC''' is a port of the GNU Compiler Collection (GCC) and includes a C (gcc) and C++ compiler (g++), a debugger (gdb) and associated utilities, with the architecture "powerpc-eabi". It also includes standard C libraries based on [http://sourceware.org/newlib newlib], which is specifically designed for embedded systems. Compilers and libraries are also included for the MN10200, the Matsushita (Panasonic) chip used in the Wii DVD controller. It is designed to be used in conjunction with [[libogc]], a collection of Wii-specific low-level libraries.
  
==CEASE==
+
Instructions for setting up the system are available at the [https://devkitpro.org/wiki/Getting_Started devkitPro website].
AND DESIST
+
 
 +
devkitPPC also comes with example source code documents that can be used to base one's project off of. These include examples in audio, graphics, and adding a GUI to a homebrew app.
 +
 
 +
For Windows users it comes with the [http://www.mingw.org/wiki/MSYS MSYS] environment, which is a minimal set of GNU tools such as a shell.
 +
 
 +
=== Ported libraries ===
 +
 
 +
The following libraries are available for download from devkitPro pacman, precompiled for use with devkitPPC.
 +
 
 +
* Expat - XML parser library
 +
* FreeType - TTF/Type1 font support
 +
* libjpeg - JPEG support library
 +
* libpng - PNG support library
 +
* [[Mini-XML]] - XML library
 +
* libtremor - An integer-only fully Vorbis compliant software decoder library
 +
* zlib - ZIP compression/decompression library
 +
 
 +
=== Tools ===
 +
 
 +
The following tools are included as well:
 +
 
 +
* [[doltool]] - a tool for converting to and from [[Dol|.dol]] executable files and examining their contents
 +
* [[gcdspsuite]] - an assembler for the gamecube DSP chip written by duddie.
 +
* [[wiiload]] - a utility for uploading code to the wii written by [[User:dhewg|Dhewg]].
 +
* [[gxtexconv]] - a utility for texture conversion written by Shagkur.
 +
* [[Gcube]] - a gamecube only emulator for desktop
 +
 
 +
== See also ==
 +
 
 +
* [[libogc]]
 +
* [[Developer Tips]]
 +
* [[Development Tools]]
 +
* [[Debugging]]
 +
 
 +
[[Category:Libraries]]
 +
[[Category:Development]]

Latest revision as of 19:35, 30 September 2022

devkitPPC
Devkitlogo.png
General
Maintainer(s)WinterMute
TypeLibrary
Versionr41-2
LicenceVarious
Links
Download
Website
Discussion
Source

devkitPPC is a port of the GNU Compiler Collection (GCC) and includes a C (gcc) and C++ compiler (g++), a debugger (gdb) and associated utilities, with the architecture "powerpc-eabi". It also includes standard C libraries based on newlib, which is specifically designed for embedded systems. Compilers and libraries are also included for the MN10200, the Matsushita (Panasonic) chip used in the Wii DVD controller. It is designed to be used in conjunction with libogc, a collection of Wii-specific low-level libraries.

Instructions for setting up the system are available at the devkitPro website.

devkitPPC also comes with example source code documents that can be used to base one's project off of. These include examples in audio, graphics, and adding a GUI to a homebrew app.

For Windows users it comes with the MSYS environment, which is a minimal set of GNU tools such as a shell.

Ported libraries

The following libraries are available for download from devkitPro pacman, precompiled for use with devkitPPC.

  • Expat - XML parser library
  • FreeType - TTF/Type1 font support
  • libjpeg - JPEG support library
  • libpng - PNG support library
  • Mini-XML - XML library
  • libtremor - An integer-only fully Vorbis compliant software decoder library
  • zlib - ZIP compression/decompression library

Tools

The following tools are included as well:

  • doltool - a tool for converting to and from .dol executable files and examining their contents
  • gcdspsuite - an assembler for the gamecube DSP chip written by duddie.
  • wiiload - a utility for uploading code to the wii written by Dhewg.
  • gxtexconv - a utility for texture conversion written by Shagkur.
  • Gcube - a gamecube only emulator for desktop

See also