|
2 | 2 | Toolchain for C programming on the TI CE calculators (TI-84 Plus CE / TI-83 Premium CE)
|
3 | 3 |
|
4 | 4 | # Installation
|
5 |
| -1. Download the [latest release](https://github.com/CE-Programming/toolchain/releases/latest) |
6 |
| -2. Extract the .zip in a folder somewhere (you should see one called 'CEdev') |
7 |
| -3. Add an environment variable called `CEDEV`, pointing to the CEdev folder _(instructions on how to do that on: [Windows](http://www.computerhope.com/issues/ch000549.htm), [Mac](http://stackoverflow.com/a/7502061/378298), [Linux](http://unix.stackexchange.com/a/117470))_ |
8 |
| -4. Add the `bin` folder of the CEdev one to your system's PATH variable _(instructions on how to do that on: [Windows](http://www.computerhope.com/issues/ch000549.htm), [Mac](http://architectryan.com/2012/10/02/add-to-the-path-on-mac-os-x-mountain-lion/#.VqkncZMwiV5), [Linux](http://stackoverflow.com/a/14638025/378298))_ |
| 5 | +1. Extract the .zip file in the lateset release (you should see a folder inside called 'CEdev') |
| 6 | + |
| 7 | +**Note:** Place the CEdev folder somewhere close to your root directory, i.e. `C:\CEdev` and ensure **no spaces** in the path name for best results. |
9 | 8 |
|
10 |
| -Once that is complete, you are ready to begin using the toolchain. |
11 |
| -For more information on how to use it, please see the documentation page: https://ce-programming.github.io/documentation/ |
| 9 | +2. Add a user environment variable called `CEDEV`, pointing to the CEdev folder _(instructions on how to do that on: [Windows](http://www.computerhope.com/issues/ch000549.htm), [Mac](http://stackoverflow.com/a/7502061/378298), [Linux](http://unix.stackexchange.com/a/117470))_ |
| 10 | +3. Edit the system environment variable called `PATH` to append the `bin` folder in the CEdev folder (`CEdev/bin`) _(instructions on how to do that on: [Windows](http://www.computerhope.com/issues/ch000549.htm), [Mac](http://stackoverflow.com/a/7502061/378298), [Linux](http://unix.stackexchange.com/a/117470))_ |
| 11 | +4. If you are running under Linux or macOS, [wine](https://www.winehq.org/) is required to build. Usually using the absolute path to make.exe in the CEdev/bin directory works the best, i.e. 'wine ~/CEdev/make.exe' |
| 12 | + |
| 13 | +Included you will find the [Standard CE C Libraries](https://github.com/CE-Programming/libraries/releases/latest). These perform efficient and easy support for graphics, file I/O, and keypad input. You can find examples in `CEdev/examples/library_examples` |
| 14 | + |
| 15 | +For more information on how to use this toolchain, please see the documentation page: |
| 16 | +https://ce-programming.github.io/documentation/ |
0 commit comments