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     *  ======== M3_big_endian.xdc ========
    15     *  Cortex M3 big endian thumb2 target
    16     */
    17    metaonly module M3_big_endian inherits ti.targets.arm.elf.IM3_big_endian {
    18        override readonly config string name        = "M3_big_endian";
    19        override readonly config string suffix      = "em3e";
    20        override readonly config string rts         = "ti.targets.arm.rtsarm";
    21    
    22        override readonly config ti.targets.ITarget.Command cc = {
    23            cmd:  "cl470 -c",
    24            opts: "--endian=big -mv7M3 --abi=eabi"
    25        };
    26    
    27        override readonly config ti.targets.ITarget.Command asm = {
    28            cmd:  "cl470 -c",
    29            opts: "--endian=big -mv7M3 --abi=eabi"
    30        };
    31    
    32        /*!
    33         *  ======== linkLib ========
    34         *  Default TMS470 cgtools runtime library to link with executable
    35         *  (comes from $rootDir/lib)
    36         */
    37        config string linkLib = "rtsv7M3_T_be_eabi.lib";
    38    }
    39    /*
    40     *  @(#) ti.targets.arm.elf; 1, 0, 0,139; 6-9-2010 16:35:11; /db/ztree/library/trees/xdctargets/xdctargets-b37x/src/
    41     */
    42