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    //import ti.targets.arm.elf.ITarget;
    13    
    14    /*!
    15     *  ======== R4t_big_endian.xdc ========
    16     *  Cortex R4 big endian thumb2 target
    17     */
    18    metaonly module R4t_big_endian inherits ti.targets.arm.elf.IR4_big_endian {
    19        override readonly config string name        = "R4t_big_endian";
    20        override readonly config string suffix      = "er4te";
    21        override readonly config string rts         = "ti.targets.arm.rtsarm";
    22    
    23        override readonly config xdc.bld.ITarget.Model model = {
    24            endian: "big",
    25            codeModel: "thumb2"
    26        };
    27    
    28        override readonly config ti.targets.ITarget.Command cc = {
    29            cmd:  "cl470 -c",
    30            opts: "-mt --endian=big -mv7R4 --abi=eabi"
    31        };
    32    
    33        override readonly config ti.targets.ITarget.Command asm = {
    34            cmd:  "cl470 -c",
    35            opts: "-mt --endian=big -mv7R4 --abi=eabi"
    36        };
    37    
    38        /*!
    39         *  ======== linkLib ========
    40         *  Default TMS470 cgtools runtime library to link with executable
    41         *  (comes from $rootDir/lib)
    42         */
    43        config string linkLib = "rtsv7R4_T_be_eabi.lib";
    44    }
    45    /*
    46     *  @(#) ti.targets.arm.elf; 1, 0, 0,69; 7-29-2009 16:35:27; /db/atree/library/trees/xdctargets/xdctargets-b12x/src/
    47     */
    48