1    /* 
     2     *  Copyright (c) 2015 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     *  ======== R5F.xdc ========
    14     *  Cortex R5 little endian with floating point support (vfpv3d16) (ELF)
    15     */
    16    metaonly module R5F inherits ti.targets.arm.elf.IR5 {
    17        override readonly config string name        = "R5F";
    18        override readonly config string suffix      = "er5f";
    19        override readonly config string rts         = "ti.targets.arm.rtsarm";
    20    
    21        override readonly config xdc.bld.ITarget.Model model = {
    22            endian: "little",
    23            shortEnums: true
    24        };
    25    
    26        override readonly config xdc.bld.ITarget2.Command cc = {
    27            cmd:  "armcl -c",
    28            opts: "--float_support=vfpv3d16 --endian=little -mv7R5 --abi=eabi"
    29        };
    30    
    31        override readonly config xdc.bld.ITarget2.Command asm = {
    32            cmd:  "armcl -c",
    33            opts: "--float_support=vfpv3d16 --endian=little -mv7R5 --abi=eabi"
    34        };
    35    }
    36    /*
    37     *  @(#) ti.targets.arm.elf; 1, 0, 0,0; 2-10-2017 09:06:44; /db/ztree/library/trees/xdctargets/xdctargets-m11/src/ xlibrary
    38    
    39     */
    40