View | Details | Raw Unified | Return to bug 191996
Collapse All | Expand All

(-)utils/llvm-build/llvmbuild/main.py (-1 / +10 lines)
Lines 699-705 Link Here
699
699
700
    # We handle a few special cases of target names here for historical
700
    # We handle a few special cases of target names here for historical
701
    # reasons, as these are the names configure currently comes up with.
701
    # reasons, as these are the names configure currently comes up with.
702
    native_target_name = { 'x86' : 'X86',
702
    native_target_name = { 'amd64' : 'X86',
703
                           'arm' : 'ARM',
704
                           'armeb' : 'ARM',
705
                           'armv6' : 'ARM',
706
                           'armv6hf' : 'ARM',
707
                           'i386' : 'X86',
708
                           'mips' : 'Mips',
709
                           'powerpc' : 'PowerPC',
710
                           'sparc64' : 'Sparc',
711
                           'x86' : 'X86',
703
                           'x86_64' : 'X86',
712
                           'x86_64' : 'X86',
704
                           'Unknown' : None }.get(opts.native_target,
713
                           'Unknown' : None }.get(opts.native_target,
705
                                                  opts.native_target)
714
                                                  opts.native_target)

Return to bug 191996