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


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    ra4125fb1 r4e9aaf5  
    173173        common['OBJCOPY'] = "%sobjcopy" % prefix
    174174        common['OBJDUMP'] = "%sobjdump" % prefix
    175         common['STRIP'] = "%sstrip" % prefix
    176175       
    177176        if (not path is None):
    178                 for key in ["AS", "LD", "AR", "OBJCOPY", "OBJDUMP", "STRIP"]:
     177                for key in ["AS", "LD", "AR", "OBJCOPY", "OBJDUMP"]:
    179178                        common[key] = "%s/%s" % (path, common[key])
    180179       
     
    184183        check_app([common['OBJCOPY'], "--version"], "GNU Objcopy utility", details)
    185184        check_app([common['OBJDUMP'], "--version"], "GNU Objdump utility", details)
    186         check_app([common['STRIP'], "--version"], "GNU strip", details)
    187185
    188186def probe_compiler(common, sizes):
Note: See TracChangeset for help on using the changeset viewer.