Changeset 81cdfbbe402856ffc652538f8fee714b95c144b8


Ignore:
Timestamp:
12/11/10 09:28:13 (3 years ago)
Author:
Matias De la Puente <mfpuente.ar@…>
Children:
b1cc02f74afd3aeddfd3d00af4bd0580e3a0c4cc
Parents:
0dd271e3c98526974d2a95e1a9fa5b1c77ab0d8c
git-committer:
Matias De la Puente <mfpuente.ar@…> (12/11/10 09:28:13)
Message:

Builders: Leave only the necessary parameters to build a profile

Other options can be added in 'compile options' and 'link options'

File:
1 edited

Legend:

Unmodified
Added
Removed
  • data/gcc.i4ucbuilder

    r234a777 r81cdfbb  
    1515source_type=.c 
    1616object_type=.o 
    17 build_command=arm-elf-gcc -mcpu=%device -O1 -c %source -o %object 
     17build_command=arm-elf-gcc -mcpu=%device -c %source -o %object 
    1818output_regex=(.+):(?<line>[0-9]+):([0-9]+):(.+) 
    1919clean_types=.o; 
     
    2222source_type=.S 
    2323object_type=.o 
    24 build_command=arm-elf-gcc -mcpu=%device -O1 -c %source -o %object 
     24build_command=arm-elf-gcc -mcpu=%device -c %source -o %object 
    2525output_regex=(.+):(?<line>[0-9]+):(.+) 
    2626clean_types=.o; 
     
    3737source_type=.c 
    3838object_type=.o 
    39 build_command=avr-gcc -mmcu=%device -O1 -c %source -o %object 
     39build_command=avr-gcc -mmcu=%device -c %source -o %object 
    4040output_regex=(.+):(?<line>[0-9]+):([0-9]+):(.+) 
    4141clean_types=.o; 
     
    4444source_type=.S 
    4545object_type=.o 
    46 build_command=avr-gcc -mmcu=%device -O1 -c %source -o %object 
     46build_command=avr-gcc -mmcu=%device -c %source -o %object 
    4747output_regex=(.+):(?<line>[0-9]+):(.+) 
    4848clean_types=.o; 
     
    5959source_type=.c 
    6060object_type=.o 
    61 build_command=msp430-gcc -mmcu=%device -O1 -c %source -o %object 
     61build_command=msp430-gcc -mmcu=%device -c %source -o %object 
    6262output_regex=(.+):(?<line>[0-9]+):(.+) 
    6363clean_types=.o; 
     
    6666source_type=.S 
    6767object_type=.o 
    68 build_command=msp430-gcc -mmcu=%device -O1 -c %source -o %object 
     68build_command=msp430-gcc -mmcu=%device -c %source -o %object 
    6969output_regex=(.+):(?<line>[0-9]+):(.+) 
    7070clean_types=.o; 
Note: See TracChangeset for help on using the changeset viewer.