Changes

1,070 bytes removed ,  17:13, 8 March 2010
Line 9: Line 9:  
== Setting Up ==
 
== Setting Up ==
   βˆ’
You first must have devkitPro. DevkitPro is what allows programmer's to compile their programs for other systems, such as the Wii, PSP, and DS. This should be pretty straight-forward for Windows users. Just [http://www.devkitpro.org/downloads/ download] the latest Windows installer, and go through the installer. When asked what to install, you must install devkitPPC. That allows you to compile for the PowerPC architecture, which the Wii uses. You also will need libOGC, which is the library that lets you program for the Wii. Windows users may skip to the horizontal line below.
+
You first must have devkitPPC. devkitPPC is what allows programmer's to compile their programs for other systems, such as the Wii, PSP, and DS. This should be pretty straight-forward for Windows users. Just [http://www.devkitpro.org/downloads/ download] the latest Windows installer, and go through the installer. When asked what to install, you must install devkitPPC. That allows you to compile for the PowerPC architecture, which the Wii uses. You also will need libogc, which is the library that lets you program for the Wii. Linux and Mac users should follow the instructions at http://wiki.devkitpro.org/index.php/Getting_Started/devkitPPC
βˆ’
 
  βˆ’
Linux and Mac users will need to [http://sourceforge.net/project/showfiles.php?group_id=114505 download] devkitPPC and libOGC. Select the appropriate version to download, and put them both in a directory (I would suggest making a devkitpro directory in your home folder and putting both in this folder). In Linux, you will want to edit your bash configuration file to define the DEVKITPRO and DEVKITPPC variables. The following code should do the trick for most linux users:
  βˆ’
 
  βˆ’
<source lang = "text">
  βˆ’
gedit ~/.bashrc
  βˆ’
</source>
  βˆ’
 
  βˆ’
Then input your password, and add the following to the top of the file:
  βˆ’
 
  βˆ’
<source lang = "text">
  βˆ’
export DEVKITPPC="<path to devkitpro directory>"
  βˆ’
eport DEVKITPPC="<path to devkitPPC directory>"
  βˆ’
</source>
  βˆ’
 
  βˆ’
You also may want to [http://sourceforge.net/project/showfiles.php?group_id=114505 download] the examples from devkitpro. Put these in your devkitpro directory in a folder named examples.
      
----
 
----
   βˆ’
If you haven't already done so, [http://code.google.com/p/libwiigui/downloads/list download] libwiigui. You can extract this anywhere, as this is where your source will be for your entire project. You also will need to [http://code.google.com/p/libwiigui/downloads/list download] the required devkitpro libraries. Extract these to your libogc folder (should be devkitPro/libogc) overwriting any existing files.
+
If you haven't already done so, [http://code.google.com/p/libwiigui/downloads/list download] libwiigui. You can extract this anywhere, as this is where your source will be for your entire project.
    
== Object Creation ==
 
== Object Creation ==