Home | History | Annotate | Line # | Download | only in pru
pru.opt revision 1.1
      1  1.1  mrg ; Options for the TI PRU port of the compiler.
      2  1.1  mrg ; Copyright (C) 2018-2020 Free Software Foundation, Inc.
      3  1.1  mrg ; Contributed by Dimitar Dimitrov <dimitar (a] dinux.eu>
      4  1.1  mrg ;
      5  1.1  mrg ; This file is part of GCC.
      6  1.1  mrg ;
      7  1.1  mrg ; GCC is free software; you can redistribute it and/or modify
      8  1.1  mrg ; it under the terms of the GNU General Public License as published by
      9  1.1  mrg ; the Free Software Foundation; either version 3, or (at your option)
     10  1.1  mrg ; any later version.
     11  1.1  mrg ;
     12  1.1  mrg ; GCC is distributed in the hope that it will be useful,
     13  1.1  mrg ; but WITHOUT ANY WARRANTY; without even the implied warranty of
     14  1.1  mrg ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15  1.1  mrg ; GNU General Public License for more details.
     16  1.1  mrg ;
     17  1.1  mrg ; You should have received a copy of the GNU General Public License
     18  1.1  mrg ; along with GCC; see the file COPYING3.  If not see
     19  1.1  mrg ; <http://www.gnu.org/licenses/>.
     20  1.1  mrg 
     21  1.1  mrg HeaderInclude
     22  1.1  mrg config/pru/pru-opts.h
     23  1.1  mrg 
     24  1.1  mrg minrt
     25  1.1  mrg Target Report Mask(MINRT) RejectNegative
     26  1.1  mrg Use a minimum runtime (no static initializers or ctors) for memory-constrained
     27  1.1  mrg devices.
     28  1.1  mrg 
     29  1.1  mrg mmcu=
     30  1.1  mrg Target RejectNegative Joined
     31  1.1  mrg -mmcu=MCU	Select the target System-On-Chip variant that embeds this PRU.
     32  1.1  mrg 
     33  1.1  mrg mno-relax
     34  1.1  mrg Target Report RejectNegative
     35  1.1  mrg Make GCC pass the --no-relax command-line option to the linker instead of
     36  1.1  mrg the --relax option.
     37  1.1  mrg 
     38  1.1  mrg mloop
     39  1.1  mrg Target Mask(OPT_LOOP)
     40  1.1  mrg Allow (or do not allow) gcc to use the LOOP instruction.
     41  1.1  mrg 
     42  1.1  mrg mabi=
     43  1.1  mrg Target RejectNegative Report Joined Enum(pru_abi_t) Var(pru_current_abi) Init(PRU_ABI_GNU) Save
     44  1.1  mrg Select target ABI variant.
     45  1.1  mrg 
     46  1.1  mrg Enum
     47  1.1  mrg Name(pru_abi_t) Type(enum pru_abi)
     48  1.1  mrg ABI variant code generation (for use with -mabi= option):
     49  1.1  mrg 
     50  1.1  mrg EnumValue
     51  1.1  mrg Enum(pru_abi_t) String(gnu) Value(PRU_ABI_GNU)
     52  1.1  mrg 
     53  1.1  mrg EnumValue
     54  1.1  mrg Enum(pru_abi_t) String(ti) Value(PRU_ABI_TI)
     55