1    /* 
     2     *  Copyright (c) 2008 Texas Instruments and others.
     3     *  All rights reserved. This program and the accompanying materials
     4     *  are made available under the terms of the Eclipse Public License v1.0
     5     *  which accompanies this distribution, and is available at
     6     *  http://www.eclipse.org/legal/epl-v10.html
     7     * 
     8     *  Contributors:
     9     *      Texas Instruments - initial implementation
    10     * 
    11     * */
    12    /*!
    13     *  ======== R4.xdc ========
    14     *  Cortex R4 little endian thumb2 target
    15     */
    16    metaonly module R4 inherits ti.targets.arm.IR4 {
    17        override readonly config string name        = "R4";
    18        override readonly config string suffix      = "r4";
    19        override readonly config string rts         = "ti.targets.arm.rtsarm";
    20    
    21        override readonly config xdc.bld.ITarget.Model model = {
    22            endian: "little",
    23        };
    24    
    25        override readonly config ti.targets.ITarget.Command cc = {
    26            cmd:  "cl470 -c",
    27            opts: "--endian=little -mv7R4 --abi=ti_arm9_abi"
    28        };
    29    
    30        override readonly config ti.targets.ITarget.Command asm = {
    31            cmd:  "cl470 -c",
    32            opts: "--endian=little -mv7R4 --abi=ti_arm9_abi"
    33        };
    34    
    35        /*!
    36         *  ======== linkLib ========
    37         *  Default TMS470 cgtools runtime library to link with executable
    38         *  (comes from $rootDir/lib)
    39         */
    40        config string linkLib = "rtsv7R4_A_le_tiarm9.lib";
    41    }
    42    /*
    43     *  @(#) ti.targets.arm; 2, 0, 1, 0,185; 11-25-2009 10:23:12; /db/atree/library/trees/xdctargets/xdctargets-b28x/src/
    44     */
    45