Step 1: Copying the SDKs onto your host machine.
Create a folder on your hard drive to copy all of the SDKs that you will be using. The usual place is SDKS off of your boot volume, but you can place them anywhere you wish.
Once the folder is created, you need to copy and unstuff these basic SDKS into their respective folders. The links below will download the current stable versions of the respective folder.
Step 2: Accessing the SDKs from the build environment.
Access paths for Codewarrior 8.3 or 10.0.
In the menu bar, select Edit : Preferences... : General : Source Trees...
Create the name of "SDKS" and set the path to the folder where the SDKS are.
The typical combination is Name = SDKS and the Path = /SDKs.
For each project, in Settings : Target Settings Panels: Target: Access Paths
{SDKs}macburger
{SDKs}macopengl
{SDKs}macgamesprockets
Step 3: Include the proper library for your target.
Include only one of these libaries for the build target.
Libraries for Codewarrior 10.0 / PowerPC.
- burgerc10macppcdbg.lib for no optimizations and debug information (Classic only).
- burgerc10macppcdbf.lib for full optimizations and debug information (Classic only).
- burgerc10macppcrel.lib for full optimizations and no debug information (Classic only).
- burgerc10carppcdbg.lib for no optimizations and debug information (Carbon for OS9 and OSX).
- burgerc10carppcdbf.lib for full optimizations and debug information (Carbon for OS9 and OSX).
- burgerc10carppcrel.lib for full optimizations and no debug information (Carbon for OS9 and OSX).
- burgerc10osxdbg.lib for no optimizations and debug information (OSX Mach-O).
- burgerc10osxdbf.lib for full optimizations and debug information (OSX Mach-O).
- burgerc10osxrel.lib for full optimizations and no debug information (OSX Mach-O).
Libraries for Codewarrior 8.3 / 68k classic only.
- burgercw868kdbg.lib for no optimizations and debug information.
- burgercw868kdbf.lib for full optimizations and debug information.
- burgercw868krel.lib for full optimizations and no debug information.
- burgercw868kdbgfar.lib for no optimizations and debug information (Far data).
- burgercw868kdbffar.lib for full optimizations and debug information (Far data).
- burgercw868krelfar.lib for full optimizations and no debug information (Far data).
- burgercw868kcfmdbg.lib for no optimizations and debug information (Code fragment).
- burgercw868kcfmdbf.lib for full optimizations and debug information (Code fragment).
- burgercw868kcfmrel.lib for full optimizations and no debug information (Code fragment).
- burgercw868kcfmdbgfar.lib for no optimizations and debug information (Code fragment, Far data).
- burgercw868kcfmdbffar.lib for full optimizations and debug information (Code fragment, Far data).
- burgercw868kcfmrelfar.lib for full optimizations and no debug information (Code fragment, Far data).
Go back to the main page.