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     *  ======== A8Ft.xdc ========
    14     *  Cortex A8 thumb2 little endian with floating point support (NEON) (ELF)
    15     */
    16    metaonly module A8Ft inherits ti.targets.arm.elf.IA8 {
    17        override readonly config string name        = "A8Ft";
    18        override readonly config string suffix      = "ea8ft";
    19        override readonly config string rts         = "ti.targets.arm.rtsarm";
    20    
    21        override readonly config xdc.bld.ITarget.Model model = {
    22            endian: "little",
    23            codeModel: "thumb2",
    24            shortEnums: true
    25        };
    26    
    27        override readonly config xdc.bld.ITarget2.Command cc = {
    28            cmd:  "cl470 -c",
    29            opts: "-mt --neon --endian=little -mv7A8 --abi=eabi"
    30        };
    31    
    32        override readonly config xdc.bld.ITarget2.Command asm = {
    33            cmd:  "cl470 -c",
    34            opts: "-mt --neon --endian=little -mv7A8 --abi=eabi"
    35        };
    36    
    37        /*!
    38         *  ======== linkLib ========
    39         *  Default TMS470 cgtools runtime library to link with executable
    40         *  (comes from $rootDir/lib)
    41         */
    42        config string linkLib = "rtsv7A8_T_le_n_eabi.lib";
    43    }
    44    /*
    45     *  @(#) ti.targets.arm.elf; 1, 0, 0,148; 8-4-2010 16:21:18; /db/ztree/library/trees/xdctargets/xdctargets-c27x/src/
    46     */
    47