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    /*!
    14     *  ======== R4_big_endian.xdc ========
    15     *  Cortex R4 big endian thumb2 
    16     */
    17    metaonly module R4_big_endian inherits ti.targets.arm.IR4_big_endian {
    18        override readonly config string name        = "R4_big_endian";
    19        override readonly config string suffix      = "r4e";
    20        override readonly config string rts         = "ti.targets.arm.rtsarm";
    21    
    22        override readonly config xdc.bld.ITarget.Model model = {
    23            endian: "big",
    24        };
    25    
    26        override readonly config xdc.bld.ITarget2.Command cc = {
    27            cmd:  "cl470 -c",
    28            opts: "--endian=big -mv7R4 --abi=ti_arm9_abi"
    29        };
    30    
    31        override readonly config xdc.bld.ITarget2.Command asm = {
    32            cmd:  "cl470 -c",
    33            opts: "--endian=big -mv7R4 --abi=ti_arm9_abi"
    34        };
    35    
    36        /*!
    37         *  ======== linkLib ========
    38         *  Default TMS470 cgtools runtime library to link with executable
    39         *  (comes from $rootDir/lib)
    40         */
    41        config string linkLib = "rtsv7R4_A_be_tiarm9.lib";
    42    }
    43    /*
    44     *  @(#) ti.targets.arm; 2, 0, 1, 0,395; 8-23-2012 20:55:49; /db/ztree/library/trees/xdctargets/xdctargets-f27x/src/ xlibrary
    45    
    46     */
    47