GCC Compiler Installation Instructions

This page is to aid in the installation of the TI-990 GCC Compiler. These instructions are preliminary; so, if you have additional problems or comments, please contact me.

To build the compiler from the source distribution

  1. You will need to install the TI 990 cross assembler and linker. Download the compiler source and the libc library.

    asm990-1.4.8
    lnk990-1.3.2
    gcc-3.4.6
    ti990-libc-0.1.3

  2. Create a binary directory in which the compiler will be built.

    $ cd /your_source_dir
    $ mkdir gcc-bin

  3. Configure the compiler.

    $ cd gcc-bin
    $ ../gcc-3.4.6/configure --enable-lanuages=c --with-ld=/usr/local/bin/lnk990 --with-as=/usr/local/bin/asm990 --target=ti990-ti-dx10

  4. Now make the compiler.

    $ make

  5. Install the compiler:

    $ mkdir -p /usr/local/lib/gcc/ti990-ti-dx10/3.4.6
    $ cd /your_source_dir/gcc-bin/gcc
    $ cp cc1 collect2 cpp gcov gcov-dump specs \
    /usr/local/lib/gcc/ti990-ti-dx10/3.4.6/
    $ cp xgcc /usr/local/bin/gcc-ti990

  6. Install the libc libraries and headers:

    $ cd /your_source_dir/ti990-libc
    $ make
    $ make install


This page is maintained by David Pitts. Please email with comments and corrections.
Last modified 2008/06/04.