Changes in tools/autotool.py [4e9aaf5:a4125fb1] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    r4e9aaf5 ra4125fb1  
    173173        common['OBJCOPY'] = "%sobjcopy" % prefix
    174174        common['OBJDUMP'] = "%sobjdump" % prefix
     175        common['STRIP'] = "%sstrip" % prefix
    175176       
    176177        if (not path is None):
    177                 for key in ["AS", "LD", "AR", "OBJCOPY", "OBJDUMP"]:
     178                for key in ["AS", "LD", "AR", "OBJCOPY", "OBJDUMP", "STRIP"]:
    178179                        common[key] = "%s/%s" % (path, common[key])
    179180       
     
    183184        check_app([common['OBJCOPY'], "--version"], "GNU Objcopy utility", details)
    184185        check_app([common['OBJDUMP'], "--version"], "GNU Objdump utility", details)
     186        check_app([common['STRIP'], "--version"], "GNU strip", details)
    185187
    186188def probe_compiler(common, sizes):
Note: See TracChangeset for help on using the changeset viewer.